0

我正在使用 ransack 谓词构建查询,这意味着我需要大量条件来用于 SQL 方式的 WHERE 子句。这是我作为ransancksearch方法的条件哈希:

这是控制台输出params[:q]

{"price_gteq"=>"0", "rooms_gteq"=>"1", "baths_gteq"=>"1", "has_photos_true"=>"0", "zone_id"=>"1", "deal_type_eq"=>"1", "s"=>{"0"=>{"name"=>"price", "dir"=>"asc"}}, "price_lteq"=>"2500000", "rooms_lteq"=>"2", "baths_lteq"=>"7", "sector_id_in"=>nil}

这是它生成的 SQL 查询:

Property.search(params[:q]).result.to_sql

这使:

SELECT "properties".* FROM "properties" LEFT OUTER JOIN "sectors" ON "sectors"."id" = "properties"."sector_id" WHERE (("properties"."price" >= 0.0 AND "properties"."price" <= 2500000.0)) ORDER BY "properties"."price" ASC

如何在where子句中包含所有字段?

如您所见,只有:price字段保留在where子句中。我也需要:baths并且:rooms也被包括在该where条款中。

我该如何解决?

4

1 回答 1

0

幸运的是,我已经解决了自己的问题,发生的事情是我使用 UNRANSACKABLE_ATTRS 数组为我的模型从排序中排除上述字段(Ransack 提供的默认排序方法),但我不知道这会影响搜索好。无论如何,我删除了 UNRANSACKABLE_ATTRS 数组,搜索中的每个条件都开始按预期工作。:)

于 2012-12-04T15:28:16.823 回答