4
我正在嘗試使用typeahead來顯示Google建議。Typeahead顯示結果爲undefined
AJAX調用工作正常,正常返回的數據:
之前執行恢復處理(數據); 數據包含以「w」開頭的字符串數組。
數據= 「沃爾瑪」, 「天氣」, 「富國銀行」, 「worldstarhiphop」, 「沃爾格林」, 「維基百科」, 「白頁」, 「世界盃」, 「WebMD的」, 「天氣雷達」]
但是,顯示的建議顯示「未定義」,而不是真正的單詞。 有什麼想法我在這裏失蹤?謝謝。
<input type="text" class="typeahead" placeholder="Search">
$('.typeahead').typeahead({
hint: true,
highlight: true,
minLength: 1
},
{
source: function (query, process) {
$.getJSON("Home/Suggest", { query: query }, function (data) {
return process(data);
});
}
});
謝謝。鍵入文檔中也有舊版本。 – user257980 2015-11-22 12:52:08
我得到了同樣的錯誤,我正在關注[this](http://twitter.github.io/typeahead.js/examples/#the-basics)示例。我的來源是substringMatcher(狀態)和狀態是一個數組。 – user4584963 2015-12-28 03:10:35
https://gist.github.com/jharding/9458744#file-the-basics-html修復了破解的初始示例http://twitter.github.io/typeahead.js/examples/ – 2016-11-22 14:21:41