2

我在 Rails 3.2 中使用 strong_parameters gem 已经有一段时间了。到目前为止,一切都很好。

在最近将 strong_parameters 更新到 v0.2.0 之后,我不再可以更新嵌套对象。

这是请求参数

{
  "resource"=>{
    "name"=>"1362483207-11-offer",
    "slug"=>"1362483207-11-offer",
    "code"=>"136248320711",
    "category_id"=>"4",
    "price"=>"100",
    "short_description"=>"",
    "description"=>"",
    "offer_card_types_attributes"=>{
      "0"=>{"id"=>"11", "card_type_id"=>"1"},
      "1"=>{"card_type_id"=>"0"},
      "2"=>{"card_type_id"=>"0"},
      "3"=>{"card_type_id"=>"0"}
    },
    "show_banner"=>"1",
    "autoclaim"=>"1",
    "published"=>"0",
    "number_of_codes_to_generate"=>"",
    "images_attributes"=>{
      "0"=>{"retained_image"=>"", "_destroy"=>"true", "id"=>"1"},
      "on-1362560061857"=>{
        "image"=>#<ActionDispatch::Http::UploadedFile:0x0000080ef654f8 ... >
      }
    },

    "partner_id"=>"2",
    "all_checkout_places"=>"0",
    "offer_checkout_places_attributes"=>{
      "0"=>{"checkout_place_id"=>"0"},
      "1"=>{"id"=>"11", "checkout_place_id"=>"7"},
      "2"=>{"checkout_place_id"=>"0"},
      "3"=>{"checkout_place_id"=>"0"},
      "4"=>{"checkout_place_id"=>"0"}
    }
  },
  "id"=>"11"
}

我已经尝试过 params this 和 params that。我根本不更新嵌套对象。请帮忙

起初我认为这params.require(:resource).permti(..., :images => [])应该可以解决问题,但是失败了,然后我尝试了其他各种选择。他们都失败了。

我怎样才能允许所有这些嵌套对象。

4

1 回答 1

0

你检查过日志吗?嵌套属性的键是images_attributes,而不是images。这就是您需要传递的permit()方法以使其工作。

于 2013-03-26T12:15:41.270 回答