0

在我的应用中,用户有一个位置,位置属于用户。

用户.rb

has_one :location
accepts_nested_attributes_for :location

attr_accessible ... :location_attributes

位置.rb

belongs_to :user

attr_accessible :country, :state, :city, :address, :zipcode, :user_id

users_controller(用户是自动创建的,所以没有“新”视图)

def edit
  @user = current_user
  @user.build_location
end

用户/edit.html.haml

= form_for @user do |f|

... 

  = f.fields_for :location do |location|
    %p  
      = location.label :country
      = location.text_field :country

    %p  
      = location.label :state
      = location.text_field :state

    %p  
      = location.label :city
      = location.text_field :city

    %p  
      = location.label :address
      = location.text_field :address

    %p
      = location.label :zipcode
      = location.text_field :zipcode  
  = f.submit

我得到的错误是“无法批量分配受保护的属性:国家、州、城市、地址、邮政编码。”

我之前遇到过“无法批量分配受保护的属性:location_attribute”类型的错误,但这不是问题所在。

这是我的(删节)参数:

{"utf8"=>"✓", "_method"=>"put", "authenticity_token"=>"RTpnMsKuByhnGgs9xrX3d0nzKzcaqIcpS75tsujPX2s=", "user"=>{"name"=>"myname", ... "location_attributes"=>{"country"=>"USA", "state"=>"whatever", "city"=>"", "address"=>"", "zipcode"=>""}}, "commit"=>"Update account", "action"=>"update", "controller"=>"users", "id"=>"219"}

知道这里发生了什么吗?我已经搜索了一个 WHILE,但似乎找不到任何有这个问题的人(其他人都有 后者的批量分配一个)。

4

1 回答 1

0

这实际上最终成为了控制器中更新操作的问题,该操作使用了一个管理标志——

if user.update_attributes(params[:user], as: :admin)

- 出于应用程序特定的原因。奇怪的是,如果我拿走那面旗帜,它工作得很好。所以我必须想办法解决这个问题——如果位置也在更新,则不进行管理员更新。以防万一有人遇到类似的事情。

于 2013-07-20T01:40:43.907 回答