イベントを投稿できるアプリを作っているのですが、アクティブストレージに画像が保存されません。saveメソッドの後にparamsを確認するとimagesがpermitted: false>とエラーが起きていました。ストロングパラメーターにはカラムを記載していたのですがなぜか保存できません。
events_controller
ruby
1class EventsController < ApplicationController 2 def index 3 @events = Event.all 4 end 5 6 def new 7 @event = EventsTag.new 8 end 9 10 def create 11 @event = EventsTag.new(event_params) 12 if @event.valid? 13 14 @event.save 15 16 redirect_to root_path 17 else 18 render :new 19 end 20 end 21 22 def search 23 return nil if params[:keyword] == "" 24 tag = Tag.where(['tagname LIKE ?', "%#{params[:keyword]}%"] ) 25 render json:{ keyword: tag } 26 end 27 28 def show 29 @event = Event.find(params[:id]) 30 end 31 32 def edit 33 @event = Event.find(params[:id]) 34 unless @event.user_id == current_user.id 35 redirect_to action: :index 36 end 37 end 38 39 def update 40 @event = Event.find(params[:id]) 41 if @event.update(event_params) 42 redirect_to event_path 43 else 44 render :show 45 end 46 end 47 48 def destroy 49 @event = Event.find(params[:id]) 50 if @event.destroy 51 redirect_to root_path 52 end 53 end 54 55 private 56 57 def event_params 58 params.require(:events_tag).permit(:name, :explanation, :facility_id, :scale_id, :category_id, :volunteer, :tagname, images: []).merge(user_id: current_user.id) 59 end 60end 61 62```_form.html 63```ruby 64<div class="field"> 65 <label class="label">画像</label> 66 <%= f.file_field :images, name: 'event[images][]', id: 'event_image', class:"select-box-image" %> 67 <div id="image-list"></div> 68 </div>
あなたの回答
tips
プレビュー