为什么产品搜索栏不起作用? Rails 4

时间:2015-11-26 01:20:37

标签: ruby-on-rails ruby-on-rails-4 search product searchbar

我有一个简单的搜索栏,可以按名称查找产品,并按字母顺序排列结果。

- - - - > products_controller.rb

  def index
    scope = Product
    if params[:search]
      scope = scope.search(params[:search])
    end
    if params[:ordering] && ordering = ORDERS[params[:ordering].to_i]
      scope = scope.order(ordering)
    end
    @products = Product.includes(:current_price).all.stock.order('id DESC')
    @product_detail = ProductDetail.new
  end

- - - - > product.rb

class Product < ActiveRecord::Base
    has_many :product_details
    has_many :prices
    has_one :current_price, -> {
    where('prices.id = (SELECT MAX(id) FROM prices p2 WHERE product_id = prices.product_id)') 
  }, class_name: 'Price'

  accepts_nested_attributes_for :prices 
  accepts_nested_attributes_for :product_details

  # It returns the products whose names contain one or more words that form the query
  def self.search(query)
    where(["name LIKE ?", "%#{query}%"])
  end

  # Returns a count with the available products on stock
  def self.stock()
    select('products.*, SUM(case when product_statuses.available=true then 1 else 0 end) as count')
    .joins('LEFT JOIN `product_details` `product_details` ON `product_details`.`product_id` = `products`.`id`')
    .joins('LEFT JOIN `product_statuses` ON `product_statuses`.`id` = `product_details`.`status`')
    .group('products.id')
  end

end

我不知道,我的客户控制器和模型的代码非常相似,可以使用电话簿,而且工作正常。

唯一不同的是&#34; stock&#34;计算库存中可用的单位数量,以及它的工作情况。

我真的需要搜索栏的帮助:(我已经查看了所有代码并且看起来不错。

感谢所有人

1 个答案:

答案 0 :(得分:2)

为什么您的@product变量未使用您已定义的scope。我认为它应该是@products = scope.includes(:current_price).all.stock.order('products.id DESC')

添加products.id DESC而不是id DESC,因为该语句可能与ActiveRecord不明确。此外,您还必须附加产品。到你的orderng params。