エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html accepts_nested... http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html accepts_nested_attributes_for の :allow_destroy の説明で class Member < ActiveRecord::Base has_many :posts accepts_nested_attributes_for :posts, :allow_destroy => true end params = {'member' => { 'name' => 'joe', 'posts_attributes' => { '2' => { '_delete' => '1' } }}} member.attributes = params['member'] member.posts.det