1

新手rails问题来了。

我有这样的课:

class Thing < ActiveRecord::Base
    attr_accessible :name
    attr_accessor :name
    validates_uniqueness_of :name, :case_sensitive => false
end

我已经完成了迁移,表格看起来还不错。然后我启动rails console并尝试以下操作:

t = Thing.new(:name => "test")
=> #<Thing id: nil, name: nil, description: nil, created_at: nil, updated_at: nil> 

已经在这里它说名字是零,为什么?继续,我试试这个:

t.name
 => "test"

现在 name 似乎已经设置好了?如果我尝试保存:

t.save!
Thing Exists (8.0ms)  SELECT 1 AS one FROM "things" WHERE LOWER("things"."name") = LOWER('test') LIMIT 1
SQL (16.0ms)  INSERT INTO "things" ("created_at", "description", "name", "updated_at") VALUES ('2012-10-28 16:10:12.701000', NULL, NULL, '2012-10-28 16:10:12.701000')
=> true 

为什么我指定的名称没有保存?我想要的是能够在调用 new 时将属性指定为哈希,然后保存实例。

4

1 回答 1

5

您应该删除attr_accessor :name,这为创建 getter 和 setter name,但它们已经由 ActiveRecord 创建

于 2012-10-28T16:19:10.960 回答