複数画像投稿の画像を追加しないupdate(refile使用)
Ruby on Railsにて複数枚の画像を投稿できるSNSを作成したのですが、
editページにて画像は追加せず、タイトルやタグなどを変更した際に
「undefined method `[]' for nil:NilClass」のようにエラーが出てしまい
画像を追加されていない状態で画像を追加する処理を行いエラーが出ていることは理解できるのですが
if文などで分岐させる方法が見当たらないので教えていただけると幸いです。
発生している問題・エラーメッセージ
NoMethodError in PostsController#update undefined method `[]' for nil:NilClass
該当のソースコード
posts_controller.rb
def create @post = Post.new(title: params[:post][:title], article: params[:post][:article], tag_list: params[:post][:tag_list]) @post.user_id = current_user.id if @post.save @post.add_images(params[:images_attributes][:"0"][:image]) redirect_to post_path(@post), notice: '投稿が作成されました!' else flash[:alert] = 'タイトル,コメントを入力してください' redirect_to posts_path end end def update @post = Post.find(params[:id]) if @post.update(title: params[:post][:title], article: params[:post][:article], tag_list: params[:post][:tag_list]) @post.add_images(params[:images_attributes][:"0"][:image]) flash[:update] = "変更しました" redirect_to post_path(@post.id) else @postfind = Post.find(params[:id]) flash.now[:alert] = '変更に失敗しました' render :edit end end private def post_params params.require(:post).permit(:title, :article, :tag_list, {post_images_images: []}) end
post.rb
def add_images(params) params.each do |image| new_image = Image.new(image: image) new_image.post_id = self.id new_image.user_id = self.user_id return false unless new_image.save! end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/29 08:51