#現状
現在、オリジナルアプリ作成中で、投稿機能と多対多の関係でタグ機能を実装中です。投稿機能とタグ機能は、formオブジェクトで実装しています。投稿編集フォーム(_form.html.erb)から、投稿タイトル、内容、画像(active storage)、タグを入力させ、送信し、更新させようとしています。しかし、実際にブラウザから更新ボタンを押すと、ActionController::ParameterMissingが出てしまいます。
#エラー内容とparams
ActionController::ParameterMissing in BoardsController#update
param is missing or the value is empty: boards_tag
def board_params params.require(:boards_tag).permit(:title,:text,:image,:name).merge(user_id: current_user.id, tag_id: tag_id) ⇦ ここでエラーが呼び出される end
params
Parameters:
{"_method"=>"patch",
"authenticity_token"=>"t97IYG3YB7yjX9vpWbciTYOyvoz703VQ7nn+OvP3zVhRCTO0BoQUWZTHGh3ucqU7KZ+STb8hQkJuIkB072R7NQ==",
"board"=>
{"title"=>"test",
"text"=>"aa",
"name"=>"aaa",
"image"=>
<ActionDispatch::Http::UploadedFile:0x00007fc34e57e360
@content_type="image/jpeg",
@headers="Content-Disposition: form-data; name="board[image]"; filename="james-harrison-vpOeXr5wmR4-unsplash.jpg"\r\n" + "Content-Type: image/jpeg\r\n",
@original_filename="james-harrison-vpOeXr5wmR4-unsplash.jpg",
@tempfile=#File:/var/folders/x2/z7kp1bw579d_9f8399ncppqm0000gn/T/RackMultipart20210428-53629-1j0wl6r.jpg>},
"commit"=>"保存する",
"id"=>"10"}
エラー画像
https://gyazo.com/22882d4fcbd1988bcc2af446ddaae60a
#ソースコード
routes.rb Rails.application.routes.draw do devise_for :users root to: "boards#index" resources :users, only: [:show, :edit, :update, :destroy] resources :boards do resources :comments, only: :create end end
boards_tag.rb (Formオブジェクト) class BoardsTag include ActiveModel::Model attr_accessor :image,:title,:text,:name,:user_id with_options presence: true do validates :image validates :title validates :text validates :name end def save board = Board.create(image: image, title: title, text: text, user_id: user_id ) tag = Tag.where(name: name).first_or_initialize tag.save BoardTagRelation.create(board_id: board.id, tag_id: tag.id) end end
boards_controller.rb def index @boards = Board.includes(:user).all.order(created_at: :desc) end def new @board = BoardsTag.new end def create @board = BoardsTag.new(board_params) if @board.valid? @board.save return redirect_to root_path else render "new" end end def edit @board = Board.find(params[:id]) end def update if @board.update(board_params) redirect_to root_path else render :edit end end def board_params params.require(:boards_tag).permit(:title,:text,:image,:name).merge(user_id: current_user.id) ⇦ ここでエラーが呼び出される end
_form.html.erb (投稿編集フォーム) <%= form_with model: @board, local: true do |f|%> <%= render 'shared/error_messages', model: f.object %> <div class="field"> <%= f.label :title, "タイトルを書く" ,class: :form_message%><br /> <%= f.text_field :title, class: :form__title %> </div> <div class="field"> <%= f.label :text, "本文を書く" ,class: :form_message%><br /> <%= f.text_area :text, class: :form__text %> </div> <div class="field", id='tag-field'> <%= f.label :name, "タグ" ,class: :form_message %><br /> <%= f.text_field :name, class:"input-tag" %> </div> <div class="field"> <%= f.label :image, "画像表示",class: :form_message %><br /> <%= f.file_field :image %> </div> <div class="actions"> <%= f.submit "保存する", class: :form__btn %> </div> <% end %>
#補足情報
edit.html.erbの中に、部分テンプレートとして編集フォームの_form.html.erbが入っています。
何か必要な情報があれば言っていただけたらと思います。
ご教授のほどよろしくお願いいたします、
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/01 09:40