rails 4 个嵌套属性不会创建 has_many 模型

rails 4 nested attributes won't create has_many model

我是 rails 的新手,为此花费了太多时间。非常感谢您的帮助!

我似乎无法让 fields_for and/or accepts_nested_attributes_for 为我的嵌套属性工作。 我有一个 has_many 合同的 smash_client 和一个试图创建带有参数的 smash_client 的表单,同时它还试图在合同对象上设置一个参数。合同belongs_tosmash_client。 我尝试了很多不同的解决方案并阅读了文档,但我仍然遗漏了一些东西。我在 smash_clients_controller.rb

的参数哈希中得到了这个
..., "smash_client"=>{"name"=>"fasdf", "user"=>"adam"}, "smash_client_id"=>{"instance_type"=>"spot"},...

来自

= form_for @smash_client do |f|
  .field
    = f.label :name
    = f.text_field :name
  .field
    = fields_for :smash_client_id do |c|
      %p
        = c.radio_button :instance_type, 'spot'
        = c.label :instance_type, 'spot'
        = c.radio_button :instance_type, 'on_demand'
        = c.label :instance_type, 'on demand'

  .actions
    = f.submit 'Save'

class SmashClient < ActiveRecord::Base
  has_many :contracts, dependent: :destroy
  accepts_nested_attributes_for :contracts, allow_destroy: true, 
    reject_if: proc { |attributes| attributes[:instance_type].blank? }
...  
  def new
    @smash_client = SmashClient.new
    3.times { @smash_client.contracts.build }
  end
...
  def smash_client_params
    @smash_client_params = params.require(:smash_client).
      permit( :user, :name, contracts_attributes: [:instance_type] )
  end
end

class Contract < ActiveRecord::Base
  belongs_to :smash_client
  after_create :determine_instance_type_and_start
  before_destroy :stop_instances
...
end

我认为如果我对它进行硬编码,嵌套参数会起作用,因为如果我尝试这样的事情,在控制台中,我不会收到错误,而且我会得到一个新的 SmashClient 和 Contract。

smash_client_params = {name: 'something', user: 'blah', contracts_attributes: [{instance_type: 'spot'}]}
SmashClient.create( smash_client_params )

我尝试在 fields_for 部分使用 :contracts、@smash_client.contracts 和其他一些东西。还尝试使用 select 和 collection_select 但我似乎无法确定表格。 很抱歉 post。希望我得到了所有有用的信息,没有任何额外的问题。 我真的很感激一些指导或答案。 提前致谢。

代替:fields_for:smash_client_id做|c|

写成:fields_for :contracts do |c|

参考: 1. http://apidock.com/rails/ActionView/Helpers/FormHelper/fields_for

  1. http://railscasts.com/episodes/196-nested-model-form-part-1

  2. Rails 4 Nested Attributes Unpermitted Parameters ---- controller中写代码参考这个,查看正确方法

终于找到了。 :instance_type 必须在 Contract 模型中列入白名单。再次感谢,卡利亚尼。感谢您的帮助。以下是对上述代码的更改:

.field
  = fields_for :contracts do |c|
    = c.label :instance_type, 'spot instance'
    = c.radio_button :instance_type, 'spot', checked: true
    = c.label :instance_type, 'on demand instance'
    = c.radio_button :instance_type, 'on_demand'

def contract_params
  params.require(:contract).
    permit(:id, :name, :instance_id, :smash_client_id, :instance_type)
end