0

我收到以下错误

我用几个字段创建了一个新的脚手架投标

当我尝试访问 localhost:3000/bids/new

我收到以下错误

ActiveRecord::DangerousAttributeError in BidsController#new

save is defined by ActiveRecord

在服务器端我看到这个结果:

Started GET "/bids/new" for 127.0.0.1 at 2013-09-07 12:52:43 +0530
Processing by BidsController#new as HTML
Refinery::Role Load (0.4ms)  SELECT "refinery_roles".* FROM "refinery_roles" WHERE "refinery_roles"."title" = 'Refinery' LIMIT 1
Refinery::User Load (0.3ms)  SELECT "refinery_users".* FROM "refinery_users" INNER JOIN "refinery_roles_users" ON "refinery_users"."id" = "refinery_roles_users"."user_id" WHERE "refinery_roles_users"."role_id" = 1
Completed 500 Internal Server Error in 779ms

ActiveRecord::DangerousAttributeError (save is defined by ActiveRecord):
  app/controllers/bids_controller.rb:27:in `new'
  app/controllers/bids_controller.rb:27:in `new'

我遗漏了什么或者refinerycms 安装在/是压倒一切的功能?

请帮我

4

2 回答 2

1

看来,您已经定义了一些保留的 ActiveRecord 的属性,如果您这样做了,那么您要么必须更改这些属性,要么尝试其他方法。只需在您的 gemfile 中添加一个 gem,gem 就会自动处理名称冲突。

gem 'safe_attributes'

希望它会有所帮助。谢谢。

于 2013-09-07T07:58:54.927 回答
1

我已经解决了我的问题,

问题不在于炼油厂 cms

我创建了一个名为 save:boolean 的字段

我将其更改为 save_x:boolean 现在它工作正常

于 2013-09-07T08:00:21.190 回答