這應該很簡單,但我不能得到它的工作。檢索使用太陽黑子的所有文件給布爾範圍
我想檢索所有已發佈的產品。
下面的代碼工作,並且只公佈產品被返回:
@products = Product.search do
with(:published, true)
with(:facet_tag).all_of(facets) unless facets.nil?
fulltext q do
end
facet :facet_tag
paginate :page => 1, :per_page => 8
end
當我刪除全文部分它完全不返回任何結果。
我想下面的代碼返回所有發佈的產品,但代碼根本沒有返回任何結果。 @ products.results變成零。
@products = Product.search do
with(:published, true)
with(:facet_tag).all_of(facets) unless facets.nil?
facet :facet_tag
paginate :page => 1, :per_page => 8
end
我應該如何從太陽黑子獲得所有已發佈的產品?