我正在使用带有 mongoid 数据存储的 rails 和 algolia gem。
我正在向 algolia 发送数据以获取模型 Question
。 Algolia 系统中的文档示例之一是
objectID: 5691e056410213a381000000
text: "what is #cool about your name Mr. John? #name #cool"
asked_to: ["565571704102139759000000", "i7683yiq7r8998778346q686", "kjgusa67g87y8e7qtwe87qwe898989"]
asked_by: "564a9b804102132465000000"
created_at: "2016-01-10T04:38:46.201Z"
card_url: "http://localhost:3000/cards/5691e056410213a381000000"
answerers: []
has_answer: false
requestor_count: 0
status: "active"
popularity_point: 0
created_at_i: 1452400726
_tags: ["cool", "name"]
我想找到所有满足这两个条件的文件:
1)
text
包含 your name
2) asked_to
包含 i7683yiq7r8998778346q686
我正在使用 Twitter 的
typeahead
javascript 库。我的 UI 实现 algolia 搜索的 javascript 如下:<input class="typeahead ui-widget form-control input-md search-box tt-input" id="typeahead-algolia" placeholder="Search questions" spellcheck="false" type="text" autocomplete="off" dir="auto" style="position: relative; vertical-align: top;">
$(document).on('ready page:load', function () {
var client = algoliasearch("APPLICATION_ID", "SEARCH_KEY");
var index = client.initIndex('Question');
$('#typeahead-algolia').typeahead(
{
hint: false,
highlight: true,
minLength: 1
},
{
source: index.ttAdapter({hitsPerPage: 10}),
displayKey: 'text'
}
).on('keyup', this, function (event) {
if (event.keyCode == 13) {
$('#typeahead-algolia').typeahead('close');
window.location.href = "/?keyword="+encodeURIComponent($('#typeahead-algolia').val());
}
});
$('.typeahead').bind('typeahead:select', function(ev, suggestion) {
window.location.href = suggestion.card_url;
});
});
所以我的问题是:
此代码完美运行。但是如何在上面的javascript中为
asked_to contains i7683yiq7r8998778346q686
添加条件来过滤结果。 最佳答案
您可以在查询中的 asked_to
属性上使用构面过滤器。
您首先需要将属性 asked_to
声明为索引设置中的分面属性,然后通过 asked_to:i7683yiq7r8998778346q686
查询参数将 facetFilters
作为分面过滤器传递到您的查询中。
更改索引设置后,您可以更改源以添加 facetFilters
参数:
$('#typeahead-algolia').typeahead(
{
hint: false,
highlight: true,
minLength: 1
},
{
source: index.ttAdapter({hitsPerPage: 10, facetFilters: "asked_to:i7683yiq7r8998778346q686"}),
displayKey: 'text'
}
).on('keyup', this, function (event) {
if (event.keyCode == 13) {
$('#typeahead-algolia').typeahead('close');
window.location.href = "/?keyword="+encodeURIComponent($('#typeahead-algolia').val());
}
});
关于ruby-on-rails-4 - Algolia - 使用条件搜索以查看字符串数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34712539/