Ruby on Railsでgem 'carriewave'を使い、ユーザープロフィールの画像を変更する機能を追加しました。
ビュー
<div class="container"> <h3 class="text-center text-secondary mb-4">ユーザー情報</h3> <div class="offset-sm-3 col-sm-6"> <div class="offset-sm-3 col-sm-6 text-center"> <h4 class="mb-3"><%= @user.name %></h4> <%= form_for(@user) do |f| %> <% if @user.image? %> <%= image_tag @user.image.thumb.url, class: "round-img" %> <% else %> <%= image_tag "/assets/default.jpg", class: "round-img" %> <% end %> </div> </div> <div class="offset-sm-4 col-sm-4 offset-sm-4 text-center"> <% if @user == current_user %> <button type="button" class="btn btn-outline-secondary rounded-pill mt-3"> <%= f.file_field :image, accept: 'image/jpg,image/gif,image/png' %> </button> <%= f.submit "プロフィール画像変更", class: 'btn btn-outline-dark mt-1 form-control' %> <%= link_to "登録情報編集", edit_user_registration_path, class: "btn btn-secondary mt-3 form-control" %> <%= link_to "退会", user_destroy_path, method: :delete, data: { confirm: "本当に退会しますか?" }, class: "btn btn-danger mt-3 form-control" %> <% end %> <br> <% end %> </div> <hr> </div> <div class="photos-parent text-center"> <h5><i class="fas fa-paw"></i> <%= @user.name %>の投稿画像</h5> <% @post.each do |post| %> <%= link_to(post_path(post)) do %> <div class="photos-children"> <%= image_tag post.photos.first.image.url(:medium) %> </div> <% end %> <% end %> </div> <div class="paginate-parent"> <div class="paginate-children mt-3"> <%= paginate @post %> </div> </div>
プロフィール画像変更のボタンを押すと下記のエラーが出てしまいます。
エラーが出ている箇所は、ユーザーが投稿した画像を一覧表示しているコードです。
まったく関連がない部分でエラーが出てしまい解決できずに立ち往生しています。
ご教示頂ければ幸いです。
該当コード
ルーティング
Rails.application.routes.draw do devise_for :users, controllers: { registrations: 'registrations', omniauth_callbacks: 'users/omniauth_callbacks' } root to: 'tops#index' get 'tops/show', to: 'tops#show' get '/users/:id', to: 'users#show', as: :user patch '/users/:id', to: 'users#update' delete '/users/:id', to: 'users#destroy', as: :user_destroy resources :posts, only: %i(new create show destroy) do resources :photos, only: %i(create) resources :likes, only: %i(create destroy) end # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html end
コントローラー
class UsersController < ApplicationController def show @user = User.find_by(id: params[:id]) @post = @user.posts.order(id: "DESC").page(params[:page]).per(9) end def edit @user = User.find(params[:id]) end def update @user = User.find(params[:id]) if current_user == @user if @user.update(user_params) flash[:success] = 'プロフィール画像を変更しました' render :show else flash.now[:danger] = 'プロフィール画像の変更に失敗しました' render :show end else redirect_to user_path end end def destroy @user = User.find_by(id: params[:id]) @posts = Post.find_by(user_id: params[:id]) flash[:notice] = "ユーザーを削除しました" if @posts.nil? @user.destroy redirect_to root_path else @posts.destroy @user.destroy redirect_to root_path end end private def user_params params.require(:user).permit(:image) end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/29 15:53
2019/09/29 15:56
2019/09/29 16:37