railsでブログアプリを作成中にエラーが出てしまい、色々と調べたのですが解決方法が分かりません。
ファイル選択した画像をアップロードしたいのですがエラーが発生してしまいます。
エラー内容は下記のhtmlファイルの
= f.file_field :image, class: 'hidden'
部分で
undefined local variable or method `f' for #<#Class:0x00007ff56219a2d0:0x00007ff562692490>
というNameErrorです。
html
1.content__title 2 新規記事の作成 3 = form_with model: @post, class: :form, local: true do |form| 4 = form.text_field :title, placeholder: :タイトル, class: :form__title 5 = form.text_area :body, placeholder: :ブログ本文, class: :form__text 6 = f.file_field :image, class: 'hidden' 7 = form.submit '投稿する', class: :form__btn 8
PostsController
1class PostsController < ApplicationController 2 3 def index 4 @posts = Post.all 5 end 6 7 def new 8 @post = Post.new 9 end 10 11 def create 12 Post.create(post_params) 13 redirect_to root_path 14 end 15 16 def show 17 @post = Post.find(params[:id]) 18 end 19 20 def edit 21 @post = Post.find(params[:id]) 22 end 23 24 def update 25 post = Post.find(params[:id]) 26 post.update(post_params) 27 end 28 29 def destroy 30 post = Post.find(params[:id]) 31 post.destroy 32 redirect_to root_path 33 end 34 35 36 37 private 38 def post_params 39 params.require(:post).permit(:title, :body, :image).merge(user_id: current_user.id) 40 end 41end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/16 11:21