User model has_many :works def find puts “hello world” end
Work model belongs_to :user
Work model 的对象 test 如何调用 User model 中的方法???
我在代码中试了 test.user.find 不可以
http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#method-i-belongs_to
http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html#method-i-has_many
belongs_to collection 时 collection 是没有 find 方法的
has_many collection 时是有 find 方法
@miclle 不好意思 方法举例错误!方法改为 bar
@miclle 谢谢了 我找到了!
test.user.class.find