我一直很难理解整个概念以及它在 Rails 中的工作原理,我认为它为您完成了工作,因为我习惯于手动构建关联。我目前有一个计费系统,我正在尝试创建一个订单部分,显然我的订单必须有很多产品,所以我已将数据库规范化为第 3 范式,以便订单和产品通过另一个链接名为ordered products 的表,该表包含订单ID 和产品ID,以及订购的产品数量。我已经根据我对 has_Many 的了解创建了模型:通过 Code School 教程在 Rails 中进行,但是我已经完全复制了他们的模型,但是我的模型和他们的模型之间肯定存在某种差异。
订购型号:
class Order < ActiveRecord::Base
attr_accessible :ClientID, :OrderTotal
has_many :orderedproducts
has_many :products, through: :orderedproducts, :source => :product
end
订购产品型号:
class Orderedproduct < ActiveRecord::Base
attr_accessible :OrderID, :ProductID, :QuantityOrdered
belongs_to :order
belongs_to :product
end
产品型号:
class Product < ActiveRecord::Base
#This line makes these elements accessible outside of the class.
attr_accessible :ProductName, :ProductPrice, :ProductQuantity, :ProductSupplier
has_many :orderedproducts
has_many :orders, through: :orderedproducts, :source => :order
#These attributes ensure that the data entered for each element is valid and present.
validates_presence_of :ProductName
validates_presence_of :ProductPrice
validates_numericality_of :ProductPrice
validates_presence_of :ProductQuantity
validates_numericality_of :ProductQuantity
validates_presence_of :ProductSupplier
end
我添加了 source 属性,因为我在控制台中遇到错误,建议我应该将 source 属性添加到 has_many :through 行。这是我尝试将产品添加到订单时在控制台中收到的错误:
irb(main):017:0> order.products = Product.find(4)
Product Load (0.3ms) SELECT `products`.* FROM `products` WHERE `products`.`id` = 4 LIMIT 1
ActiveRecord::HasManyThroughSourceAssociationNotFoundError: Could not find the source association(s) :ProductID in model Orderedproduct. Try 'has_many :products, :through => :orderedproducts, :source => <name>'. Is it one of :order or :product?
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/reflection.rb:509:in `check_validity!'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations/association.rb:26:in `initialize'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations/collection_association.rb:24:in `initialize'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations/has_many_through_association.rb:10:in `initialize'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations.rb:160:in `new'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations.rb:160:in `association'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/activerecord-3.2.13/lib/active_record/associations/builder/association.rb:51:in `block in define_writers'
from (irb):17
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/railties-3.2.13/lib/rails/commands/console.rb:47:in `start'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/railties-3.2.13/lib/rails/commands/console.rb:8:in `start'
from /usr/local/rvm/gems/ruby-2.0.0-p0/gems/railties-3.2.13/lib/rails/commands.rb:41:in `<top (required)>'
from script/rails:6:in `require'
from script/rails:6:in `<main>'