Module::DelegationErrorの解決方法
Module::DelegationError in Rooms#show
Showing /app/app/views/rooms/show.html.erb where line #12 raised:
signed_id delegated to attachment, but attachment is nil というエラー
画像がnilの場合でスキップする方法として、調べたところ、バリデーションのallow_nilオプションが使用されていないとありますがどのようにすれば良いのでしょうか?
model
1class Room < ApplicationRecord 2 belongs_to :user 3 validates :image, length: { minimum: 2 }, allow_nil: true 4 has_one_attached :image 5 validates_presence_of :user_id, :text 6 validates :genre, :room_name, :text, presence: { message: "入力してください" }
html
1 <% if @myroom.image.nil? %> 2 <%= image_tag 'mypage.png', class: 'image' %> 3<% else %> 4 <div class="room-imgbox" style="background-image: url(<%= rails_blob_path(@myroom.image) %>) "> 5<% end %>
controller
1class RoomsController < ApplicationController 2 3 def index 4 @rooms = current_user.rooms.order("id DESC") 5 end 6 7 8 def show 9 @myroom = Room.find(params[:id]) 10 end 11 12 def new 13 @room = Room.new 14 @rooms = current_user.rooms 15 end 16 17 def create_rooms 18 end 19 20 def create 21 Room.create(create_params) 22 redirect_to action: :create_rooms 23 24 end 25 26def create_rooms 27end 28 29 30 private 31 def create_params 32 params.require(:room).permit(:text, :image, :room_name, :genre).merge(user_id: current_user.id) 33 end 34end
あなたの回答
tips
プレビュー