勉強始めて2週間の初心者です。
ruby on rails であるホームページのプロフィールページを作成しています。
user_controller.rbで
def show @user = User.find(params[:id]) @post_images = @user.post_images.page(params[:page]).reverse_order end
routes.rbで
resources :users, only: [:show, :edit, :update]
show.html.erbで
<h1>User info</h1> <div class="profile-container"> <h3 class="profile-name"><%= @user.name %></h3> <%= attachment_image_tag @user, :profile_image, :fill, 100, 100, format: 'jpeg', class: "img-circle pull-left profile-img", fallback: "no_image.jpg" %> <% if @user.id == current_user.id %> <p><%= link_to "EDIT, edit_user_path(user), class: "pull-right" %></p> <% end %> </div>
としたのですが
このようなエラーが出てしまいました。
いろいろ調べたのですが解決方法がわからず、何か教えていただけるとありがたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/31 06:04