【发布时间】:2009-08-25 02:01:13
【问题描述】:
“协会?”当我创建belongs_to关联时Rails docs say应该存在的查询方法实际上并没有被创建:
class Author < ActiveRecord::Base
has_many :posts
end
class Post < ActiveRecord::Base
belongs_to :author
end
>> p = Post.create(:author => Author.create) >> p.作者? NoMethodError:未定义的方法“作者?”对于#<0x2555d28>0x2555d28>
标签: ruby-on-rails associations