Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アバター、バイオ、ウェブサイトなどのユーザーのすべての情報を含むユーザーページがあるため、Railsプロジェクトのifステートメントを作成したい.他のものと同じように、デフォルトの画像を表示します。
これは完全に基本的な条件です。
<% if @user.avatar.present? %> <%= image_tag(@user.avatar.url) %> <% else %> <%= image_tag('path/to/default.png') %> <% end %>