我的Typeahead.js / Bloodhound( 0.11.1 )没有按预期工作。在提供的json结果列表中,只有一些显示为建议。
例如,如果我在字段中输入los
,那么只显示4个可选项时,我只会获得Lostorf
而没有其他内容。
这是我的代码:
HTML
<div id="remote">
<input class="typeahead" type="text">
</div>
JS
var searchablePlaces = new Bloodhound({
datumTokenizer : Bloodhound.tokenizers.obj.whitespace("term"),
queryTokenizer : Bloodhound.tokenizers.whitespace,
remote : {
url : 'http://www.example.com/autocomplete/%QUERY/',
wildcard : '%QUERY',
filter : function(response) { return response.data.results; }
},
limit : 10
});
searchablePlaces.initialize();
$('#remote .typeahead').typeahead(
{
hint : true,
highlight : true,
minLength : 2
},
{
name : 'searchable-places',
displayKey : "term",
source : searchablePlaces.ttAdapter()
})
的Json
{
"data": {
"query": "los",
"count": 4,
"results": {
"1": {
"term": "Losanna"
},
"2": {
"term": "Losone"
},
"3": {
"term": "Lostallo"
},
"4": {
"term": "Lostorf"
}
}
}
}
你看错了吗?谢谢!
答案 0 :(得分:12)
这是为了确认问题是由这个类型错误引起的:https://github.com/twitter/typeahead.js/issues/1218
正如joekur在问题报告中所建议的,我解决了这个问题:
rendered += suggestions.length;
that._append(query, suggestions.slice(0, that.limit - rendered));
有了这个:
suggestions = suggestions.slice(0, that.limit - rendered);
rendered += suggestions.length;
that._append(query, suggestions);
我将自己的问题标记为重复:TypeAhead.js and Bloodhound showing an odd number of results这是同样的问题,由于措辞不同,我以前找不到它
HTH。