大量搜索建议您可以使用 send() 的第二个参数将值写入属性,但在 Rails 4 中,您会被告知参数数量错误:
> prj = Project.where(:id => 123).first
> fieldname = "project_start_date"
> prj.send(fieldname, Date.today)
ArgumentError : wrong number of arguments (1 for 0)
这种方法被认为是同义词
> prj.write_attribute(fieldname, Date.today)
但是那个错误
NoMethodError : private method `write_attribute'
这很奇怪,因为文档说这是实例公共方法的一部分。
ActiveRecord 文档建议使用类更新方法:
# Updates one record
Person.update(15, user_name: 'Samuel', group: 'expert')
# Updates multiple records
people = { 1 => { "first_name" => "David" }, 2 => { "first_name" => "Jeremy" } }
Person.update(people.keys, people.values)
So what's a Rails 4 guy supposed to do?
在我的情况下,这将转化为:
Project.update(123, project_start_date: '2013/09/04') #not using variables for testing sake
这给我带来了很好的效果:
ActiveRecord::StatementInvalid: PG::SyntaxError: ERROR: zero-length delimited identifier at or near """"
LINE 1: ...dual".* FROM "project" WHERE "project"."" = $1 LI...
那么除了写出实际的 SQL 语句之外,Rails 4 用户应该使用什么?