raiis5.2です。
親子関係のモデル、商品(Item)と画像(Image)があります。
商品の編集画面にて、子である画像(Image)の削除処理を作ってるところです。
画面上で削除されたら、対応するチェックボックス(hidden)をscriptでチェックし送る予定です。
ひとまずscript部分は置いといて、削除自体が正常に動くか確認しようと思いました。
そこでscript側は、固定で1番目の画像(checkbox)をチェックにしました。
jquery
1let hiddenCheck = $('destroy-img-id-1'); 2hiddenCheck.prop('checked', true)
この状態で更新すると削除が反映されませんでした。
ログを見るとパラメータは渡っていますが、パラメータがこれで正しいのか分かりません。
親子関係の更新は初めてでよく分かりません。
先輩方教えて下さい。宜しくお願い致します。
ItemモデルとImageモデル
ruby
1class Item < ApplicationRecord 2 has_many :images, dependent: :destroy 3 accepts_nested_attributes_for :images, allow_destroy: true 4end 5 6class Image < ApplicationRecord 7 mount_uploader :src, ImageUploader 8 belongs_to :item, optional: true 9 validates :src, presence: true 10end 11
ruby
1class ItemsController < LoginController 2 3 4 def edit 5 @item = Item.find(params[:id]) 6 end 7 8 def update 9 @item = Item.find(params[:id]) 10 if @item.update_attributes(item_params) 11 flash[:success] = "更新しました" 12 redirect_to my_items_path(current_user) 13 else 14 render 'edit' 15 end 16 end 17 18 19 20 21 22 private 23 24 def item_params 25 params.require(:item).permit(:title, :description, 26 :user_id, :prefecture_id, 27 :category_id, :sub_category_id, 28 images_attributes: [:src, :_destroy, :id]) 29 end 30 31 32 33end 34
ビュー
ruby
1 2 <% @item.images.each_with_index do |img, i| %> 3 <%= image.check_box :_destroy, class: 'hidden-destroy', id: "destroy-img-id-#{img.id}" %> 4
出力されるHTML
html
1 2<ul id="previews" class="list-inline"> 3 <input name="item[image][_destroy]" type="hidden" value="0" /><input value="1" class="hidden-destroy" id="destroy-img-id-4" type="checkbox" name="item[image][_destroy]" />
ログで確認したパラメータ
配列のindex、id(Imageモデルのid)の順に並んでました
"image"=>{"_destroy"=>"0", "0"=>"1", "1"=>"2", "2"=>"3", "3"=>"6"},
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。