我需要获取所选订单的配置文件(打印订单)。
我的profiles
表有一user_id
列,我的prints
表也有一user_id
列。
和Profile
模型Print
模型belongs_to :user
。
打印型号:
class Print < ActiveRecord::Base
attr_accessible :comment, :document
belongs_to :user
end
和,轮廓模型:
class Profile < ActiveRecord::Base
attr_accessible :address, :name, :phone
belongs_to :user
has_many :prints
end
如何根据用户从配置文件中获取打印数据?