Rails5にてユーザー編集画面で画像の更新をしようとすると以下の問題があります。
- 画像を変更せずに更新をすると、タイトルのエラーが表示
- しかし、画像を選択し更新すると問題なくDBに反映される
errormessage
userscontroller
1class UsersController < ApplicationController 2 3 def show 4 @user = User.find(params[:id]) 5 end 6 7 def edit 8 @user = User.find(params[:id]) 9 end 10 11 def update 12 user_date = User.find(params[:id]) 13 if user_date.id == current_user.id 14 user_date.update(user_params) 15 end 16 end 17 18 private 19 def user_params 20 params.require(:user).permit(:nickname, :email, :password, :password_confirmation, :message, :image ) 21 end 22end
edithtmlerb
1<%= form_for(@user) do |f| %> 2 <% if @user.image? %> 3 <%= image_tag @user.image.thumb.url %> 4 <% else %> 5 <%= image_tag "/assets/default.jpg", :size => '200x200' %> 6 <% end %> 7 <button type="button" class="btn btn-outline-secondary rounded-pill"> 8 <%= f.file_field :image, accept: 'image/jpeg,image/gif,image/png' %> 9 </button> 10 <%= f.submit '更新する', class: 'btn btn-primary' %> 11<% end %>
modelsuser
1class User < ApplicationRecord 2 3 mount_uploader :image, ImageUploader 4 # has_one_attached :image 5 6 # Include default devise modules. Others available are: 7 # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable 8 devise :database_authenticatable, :registerable, 9 :recoverable, :rememberable, :validatable 10 11 has_many :companies 12 13end 14
dbschema
1create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| 2 t.string "email", default: "", null: false 3 t.string "nickname" 4 t.string "image" 5 t.text "message" 6 t.string "encrypted_password", default: "", null: false 7 t.string "reset_password_token" 8 t.datetime "reset_password_sent_at" 9 t.datetime "remember_created_at" 10 t.datetime "created_at", null: false 11 t.datetime "updated_at", null: false 12 t.index ["email"], name: "index_users_on_email", unique: true 13 t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
試したこと
.require(:user)を消して更新をしてみる
- 画像を選択せずに更新をかけるともともとあった画像を表示してくれる
- 画像を別の物を選択し更新をかけると反映されない
ご教授いただければ幸いです。 よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/24 22:24