我正在使用bootstrap3 typeahead,但是当我的API返回大量结果(大约40个)时我遇到了一些情况,但是打字只是弹出8个结果。
我试图用
来解决这个问题limit: 30
但它不起作用。
如何更改它以显示超过8个结果?
BTW,我的先行者是
$('#postcode').typeahead({
source: function (query, process) {
var ajaxResponse;
$.ajax({
url: "my_url",
type: "GET",
cache: false,
success : function (response) {
process(response.addresses);
}
});
},
limit: 30,
minLength: 2,
displayText: function(item) {
return item.full_description;
},
updater: function(item) {
// some func here
return item;
}
});
答案 0 :(得分:1)
不是"限制"你正在寻找,而不是"项目"。改变它,它会起作用。
您可以提供特定数量的项目,也可以指定" all"。