Rails 3.1 中的作用域质量分配和 Accepts_nested_attributes_for 不起作用?

发布于 2024-11-15 00:51:37 字数 1005 浏览 2 评论 0原文

使用 Rails 3.1 RC4。

我的用户模型具有以下内容:

  has_many :emails, :dependent => :destroy
  accepts_nested_attributes_for :emails

我的电子邮件模型具有以下内容:

  belongs_to :user
  attr_accessible :email, :email_confirmation, :as => :admin

在 Rails 控制台中:

User.first.update_attributes!({:artist_name => 'foo', :emails_attributes => {0 => {:email => '[email protected]', :email_confirmation => '[email protected]'}}}, :as => :admin)

我得到:

WARNING: Can't mass-assign protected attributes: email, email_confirmation

在我的电子邮件模型中,如果我删除 :as => :管理员。一切正常...

我应该为 accepts_nested_attributes_for 分配某种范围吗?有人知道如何解决这个问题吗?

Using Rails 3.1 RC4.

My User model has the following:

  has_many :emails, :dependent => :destroy
  accepts_nested_attributes_for :emails

My Email model has the following:

  belongs_to :user
  attr_accessible :email, :email_confirmation, :as => :admin

In Rails console:

User.first.update_attributes!({:artist_name => 'foo', :emails_attributes => {0 => {:email => '[email protected]', :email_confirmation => '[email protected]'}}}, :as => :admin)

I get:

WARNING: Can't mass-assign protected attributes: email, email_confirmation

In my Email model, if I remove :as => :admin. Everything works...

Should I be assigning some kind of scope to accepts_nested_attributes_for? Anyone know how this can be fixed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黯然#的苍凉 2024-11-22 00:51:37

此处突出显示了问题和解决方案。

总之,必须传递一个选项哈希。

Issue and solution has been highlighted here.

In summary, an options hash must be passed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文