0
因此,我使用Bootstraps typeahead API來創建實時搜索。Bootstrap typehead頭部預取功能
源參數很好,因爲它允許使用AJAX調用從服務器獲取數據。不過,我希望能夠在頁面加載時「預取」源,並且只在「預取」數據中沒有匹配的情況下執行ajax調用。
我怎麼能使這成爲可能?我的阿賈克斯呼叫在這裏:
$("#topsearchbar").typeahead({
items: 8,
source: function (query, process) {
$.get("/topsearchbar", {"data":query}, function(data) {
process(data);
});
}
});
其實你應該檢查這個https://github.com/twitter/typeahead.js#prefetch –
這是不完全我想要的是,我實際上想要預取數據,但要用ajax請求來完成。我解決了它,看我的答案,如果你有興趣:) –
Ps。在這種情況下感謝提示使用對象 –