运行 rake 任务时不显示批量分配警告

发布于 2024-12-25 22:46:08 字数 452 浏览 0 评论 0原文

我有一个包含如下几行的种子文件:

action_type = ActionType.find_or_create_by_name(:name => "register")

现在,当我执行 rake db:seed 时,尽管命令完成时没有提及任何警告,但数据库中没有创建任何记录。

仅当在 Rails 控制台中执行上述行时,它才会抱怨“警告:无法批量分配受保护的属性:名称”消息。

知道如何让 rake db:seed 显示这种类型的警告吗?

顺便说一句,只需将名称添加到 attr_accessible 列表中即可解决问题:

class ActionType < Base
  attr_accessible :name

  validates :name, :presence => true
end

I have a seed file with a couple of lines like the following:

action_type = ActionType.find_or_create_by_name(:name => "register")

Now, when I execute rake db:seed, although the command finishes without mentioning any warnings, no record is created in the database.

It was only when executing the above line in the rails console, that it complained with a "WARNING: Can't mass-assign protected attributes: name" message.

Any idea how I can make rake db:seed show this type of warning?

BTW just adding the name to the attr_accessible list solves the issue:

class ActionType < Base
  attr_accessible :name

  validates :name, :presence => true
end

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文