0

我有以下型号:

用户.rb

has_many :places
has_many :orders
has_one :cart

has_many :order_transactions

产品.rb

class Product

has_many :purchases
has_many :line_items
has_many :orders, :through => :order_products

lineitem.rb

class LineItem

belongs_to :product
belongs_to :cart
belongs_to: order

订单.rb

class Order

belongs_to :user
belongs_to :product
has_many :purchases
has_many :line_items, :dependent => :destroy
has_many :orders, :through => :order_products

大家好,我在检索列出产品的用户时遇到了问题。由于我目前正在开发的网站允许用户列出待售产品,我想如何将收入记入相应的用户?我知道我必须首先检索列出产品的用户。

但是,根据我现在拥有的关联,我无法从订单控制器执行此操作。

感谢那里的任何帮助。谢谢。

4

1 回答 1

1

您尚未在模型中指定用户和产品之间的关系。

User.rb - add:
has_many :products

Product.rb -aa:
belongs_to :user

您还需要确保 user_id 在产品表中,并且 product_id 在用户表中。

于 2013-11-26T06:29:04.287 回答