我有 2 个模型,即user和userprofile。用户和用户配置文件之间存在一对一的关系。
class Userprofile < ActiveRecord::Base
attr_accessible :fname, :lname, :iswoman, :age, :urlphoto, :user_id
belongs_to: user
end
class User < ActiveRecord::Base
attr_accessible :name, :provider, :uid
has_one: userprofile
end
我想知道我是否需要两个类来设置连接,或者只需要belongs_to或has_one就足够了?其他方法也是如此,例如has-many。