辅助方法与批量分配安全性发生冲突

发布于 2024-11-26 10:51:07 字数 492 浏览 2 评论 0原文

我通常会写这样的内容:

class Person < ActiveRecord::Base
  attr_accessible :first_name, :last_name

  def name
    "#{ first_name } #{ last_name }"
  end

  def name=(str)
    first, last = str.split(' ', 2)
    write_attribute :first_name, first
    write_attribute :last_name, last
  end
end

这允许您执行 Person.new(:name => "Adam Lassek") 而不是在控制器中将其拆分。

在 Rails 3.1.0.rc4-5 中,这给我带来了警告:无法批量分配受保护的属性:名称错误。

这曾经有效。发生了什么变化?

I typically write something like this:

class Person < ActiveRecord::Base
  attr_accessible :first_name, :last_name

  def name
    "#{ first_name } #{ last_name }"
  end

  def name=(str)
    first, last = str.split(' ', 2)
    write_attribute :first_name, first
    write_attribute :last_name, last
  end
end

Which allows you to do Person.new(:name => "Adam Lassek") instead of splitting it up in the controller.

In Rails 3.1.0.rc4-5, this gives me the WARNING: Can't mass-assign protected attributes: name error.

This used to work. What changed?

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

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

发布评论

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

评论(1

深居我梦 2024-12-03 10:51:07

将名称添加到 attr_accessible

add name to the attr_accessible

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