ruby-on-rails – Rails 3如何在没有_attributes指定的情况下允许传递嵌套属性

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails 3如何在没有_attributes指定的情况下允许传递嵌套属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当使用accepts_nested_attributes_for时,我不想传递“child_attributes”,而是想传递“child”.我很确定如果我在控制器中放置了很多逻辑来创建记录和子项,我可以完成这个.但是,为了保持我的控制器清洁和逻辑应该是这个模型,在这种情况下,我想知道如何在执行POST或PUT时切换rails 3以使用此语法.
{
  "name": "test","child_attributes": [
    {
      "id": 1,"name": "test_child_update"
    },{
      "name": "test_child_create"
    }
}

{
  "name": "test","child": [
    {
      "id": 1,{
      "name": "test_child_create"
    }
}

解决方法

显然,这是不可能做到的.
原文链接:/ruby/270207.html

猜你在找的Ruby相关文章