提问人:Nageshwar Dahare 提问时间:5/28/2023 更新时间:5/28/2023 访问量:38
如何在 Searchkick 中搜索特定字段的空白数据?
how can i search blank data for specific field in searchkick?
问:
class Sample
field :title, type: String
field :brand, type: String
end
i tried
sample.search('*', {
where: {
title: {blank: ""}
},
page: 1, per_page: 50,
order: { _score: :desc, created_at: :desc },
match: :word_middle, misspellings: false })
我需要通过 searchkick 检查示例模型中的空标题
我搜索了多个 elasticsearck github 文档
我参考了这份文档 https://github.com/ankane/searchkick#querying 但没有得到任何解决方案
答: 暂无答案
评论