ruby-on-rails - 尝试保存时 WHERE 条件无效

标签 ruby-on-rails ruby save where-clause

我正在开发一个使用多对多关系的 Rails 应用程序,它需要连接表上的额外属性(除了两个相关实体的 ID)。

模型中,一个Product可以属于多个Order,一个Order可以有多个Product。 因此,我创建了一个将产品分配给给定订单的操作,称为 add_product_order,发送表单时处理表单的 Controller 方法是 finish_add_product_order:

def finish_add_product_order
  @order = Order.find(params[:id])
  @product = Product.find(params[:order][:products])

  if @op = OrdersProduct.find_by_order_id_and_product_id(@order.id, @product.id)
    @op.quantity = params['quantity'][0]
  else
    @op = OrdersProduct.new(:order => @order, :product => @product, :quantity => params['quantity'][0])
  end

  respond_to do |format|
    if @op.save
      format.html { redirect_to @order, notice: 'Order was successfully updated.' }
      format.json { head :no_content }
    else
      format.html { render action: "add_product_order", notice: 'No se ha podido grabar.' }
      format.json { render json: @order.errors, status: :unprocessable_entity }
    end
  end
end

orders_products 表(用于存储相关的 id 和数量)具有以下索引:

add_index :orders_products, [:order_id, :product_id], :unique => true

如果产品尚未在订单中(即正在调用 OrdersProduct.new),则上述操作 (finish_add_product_order) 工作正常。 但这是我在它已经存在并且我尝试保存它时遇到的错误:

SQLite3::SQLException: no such column: orders_products.: UPDATE "orders_products" SET "quantity" = 4 WHERE "orders_products"."" IS NULL

请求参数如下,以防万一:

{"utf8"=>"✓",
 "_method"=>"put",
 "authenticity_token"=>"TwPMk73MhCM2IeMfmf2g/fdm3+ahpyaxs1InULC/8ig=",
 "order"=>{"products"=>"4"},
 "quantity"=>["4"],
 "commit"=>"Update Order",
 "id"=>"2"}

我认为 WHERE 子句应该包括订单和产品 ID,以便识别受影响的行,但我不知道为什么不包括列名,也不知道为什么它以“IS NULL”结尾。

有什么建议吗?谢谢

编辑

这是涉及的三个类的代码:

class Order < ActiveRecord::Base
  belongs_to :user

  has_many :gardens, :dependent => :destroy

  has_many :products, :through => :orders_products
  has_many :orders_products

  attr_accessible :address, :delivery_date, :paid, :user, :orders_products_attributes

  # hid some irrelevant methods
end



class Product < ActiveRecord::Base
  has_many :gardens, :through => :gardens_products
  has_many :gardens_products

  has_many :orders, :through => :orders_products
  has_many :orders_products

  attr_accessible :cost, :description, :stock, :title, :x_size, :y_size, :pivot_x_position, :pivot_y_position, :is_gallery_product

  validates_presence_of :cost, :stock, :title, :x_size, :y_size, :pivot_x_position, :pivot_y_position
  validates_numericality_of :cost, :stock, :x_size, :y_size, :pivot_x_position, :pivot_y_position, :only_integer => true, :message => "Solo puede ser un numero entero"
  validates_inclusion_of :cost, :in => 0..1000000, :message => "Solo puede estar entre 0 y 1 000 000"
  validates_inclusion_of :stock, :in => 0..10000000, :message => "Solo puede estar entre 0 y 10 000 000"
  validates_inclusion_of :x_size, :y_size, :in => 1..200, :message => "Solo puede estar entre 0 y 200"
  # Poner el rango variable en los pivotes (dentro del rango del tamano)
  validates_inclusion_of :pivot_x_position, :in => 1..200, :message => "El pivote debe estar dentro de las dimensiones del producto"
  validates_inclusion_of :pivot_y_position, :in => 1..200, :message => "El pivote debe estar dentro de las dimensiones del producto"
  validates :title, :length => { :minimum => 5},
                            :presence => { :message => "Debe tener un titulo de largo mayor que 5 caracteres" }
end


class OrdersProduct < ActiveRecord::Base
  belongs_to :order, :dependent => :destroy
  belongs_to :product

  attr_accessible :order, :product, :quantity

  validates_numericality_of :quantity,
                            :only_integer => true,
                            :message => "solo puede ser un numero entero"
  validates_inclusion_of :quantity,
                            :in => 1..1000,
                            :message => "solo puede estar entre 1 y 1 000"
end

再次感谢

最佳答案

将此查找调用“find_by_order_id_and_product_id”替换为“where”调用,并通过调用获取返回的Relation 对象的第一个对象。 首先

  if @op = OrdersProduct.where(:order_id => @order.id, :product_id => @product.id).first
    @op.quantity = params['quantity'][0]
  else
    @op = OrdersProduct.new(:order => @order, :product => @product, :quantity => params['quantity'][0])
  end

如果有帮助,请告诉我。

关于ruby-on-rails - 尝试保存时 WHERE 条件无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12766689/

相关文章:

python - 如何每天运行一次 python 脚本来创建网络目录的备份副本?

ruby-on-rails - 如何使用 Yard for Rails View 生成文档?

ruby - 为什么使用元素时测试通过?检查元素是否存在的方法?

ruby-on-rails - 将特定格式的请求路由到 Rails 中的不同 Controller

ruby - 正则表达式匹配文本周围的字符

ruby - ruby docker 图像中的过期 ca 证书(2.6.8-bullseye)

javascript - 将第一页中的所有 cookie 保存在硬盘上的文本文件中

java - 如何将页面调用的内容保存到jsp/java中的文件中?

ruby-on-rails - Rails API Carrierwave 无法上传从 API 客户端发送的文件

ruby-on-rails - rails : Why does where(id: objects) work?