1
我想爲我的電子郵件字段使用typeahead,因此當管理員搜索電子郵件地址時,選項會顯示給他們。很基本。我的源代碼是從一個從BEA收集其數據的MySQL加載的。bootstrap typeahead顯示沒有結果
所以我有一個輸入標籤:
<input type="text" name="userEmail" id="email" value="" class="form-control" />
在我的文檔準備功能,我有:
$('#email').typeahead({
ajax: {
triggerLength: 3,
url: '/user/findBootstrap'
},
display: 'email'
});
當我鍵入:「全球生物多樣性展望」我的PHP BE返回一個JSON與此類似:
[{"id":"94","email":"[email protected]"},{"id":"142","email":"[email protected]"},{"id":"193","email":"[email protected]"}]
我確認我在控制檯上通過lookintg接收數據。 Typeahead不會顯示任何選項,我輸入的內容。該lib正在加載罰款(狀態200),我得到沒有JS錯誤