我有一个用户模型
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation, :remember_me, :first_name, :last_name, :shipping_address_id; :billing_address_id
end
和地址模型
class Address < ActiveRecord::Base
attr_accessible :country_id, :city, :plz, :street, :streetnr, :first_name, :last_name
end
我想通过活动记录关联做什么:每个用户都有一个 billing_address 和一个 shipping_address。我可以创建一个关系,以便我可以访问这些类似 user.billing_address 吗?