我已经使用远程数据源实现了typeahead.js和bloodhound,它大部分都按预期工作。但是,我已将typeahead上的minLength设置为2,虽然我可以在2个字符(和3)之后看到ajax请求触发,但是typeahead仅提供4个字符或更多字符后的建议。我的配置中是否缺少某些东西(我正在使用typeahead.bundle.min.js)。
var local_authorities = new Bloodhound({
datumTokenizer: function (datum) {
return Bloodhound.tokenizers.whitespace(datum.value);
},
queryTokenizer: Bloodhound.tokenizers.whitespace,
identify : function(datum) {
//console.log(datum);
return datum.value;
},
remote: {
url: "/addresses/autocomplete_local_authorities/%QUERY",
wildcard: '%QUERY',
filter: function (data) {
// Map the remote source JSON array to a JavaScript object array
return $.map(data.local_authorities, function (local_authority) {
return {
id: local_authority.id,
value: local_authority.name
};
});
}
}
});
$('.typeahead.local-authority').typeahead({
hint: true,
highlight: true,
minLength: 2,
}, {
limit: 8,
source: local_authorities,
displayKey: 'value',
})
.on('typeahead:selected', function (e, item) {
$('[name="local_authority_ids"').val(item.id);
});
感谢。
答案 0 :(得分:5)
有些调试显示这是由函数async(suggestions)
引起的(第1719-1727行):
function async(suggestions) {
suggestions = suggestions || [];
if (!canceled && rendered < that.limit) {
that.cancel = $.noop;
rendered += suggestions.length;
that._append(query, suggestions.slice(0, that.limit - rendered));
that.async && that.trigger("asyncReceived", query);
}
}
该错误是由于在调用rendered
之前将suggestions.length
设置为append
引起的,因此当Bloodhound收到5个或更多查询结果时,suggestions.slice(0, that.limit - rendered)
始终为空,标准limit
为5。
仅当远程端点返回少于limit
个对象时才会添加建议,这种情况在您的情况下会发生4个字母或更多。
由于我不是Typeahead和Bloodhound的开发人员,我不想(并且有时间)弄清楚为什么它已经像这样实现以及如何解决这个问题,然而,一个快速的解决方法是增加{{ 1}}。
必须在第二个配置对象中设置,例如limit
编辑:使用typeahead / bloodhound v.1.11.1