我正在使用https://github.com/bassjobsen/Bootstrap-3-Typeahead
我的代码:
<input type="text" class="typeahead" autocomplete="off">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$('.typeahead').typeahead({
autoSelect: true,
minLength: 2,
delay: 400,
source: function (query, process) {
$.ajax({
url: '/search/searchCities',
data: {q: query},
dataType: 'json'
})
.done(function(response) {
console.log(response.data);
return process(response.data);
});
}
});
});
</script>
我的后端代码返回一个像
这样的json对象{status: "OK", data: ["Moscow", "New York", "Odessa"]}
通过php代码
<?= echo json_encode(["status" => "OK", "data" => ["Moscow", "New York", "Odessa"]]) ?>
在输入中输入2个或更多字母后,浏览器控制台出现错误
GET http://localhost/search/searchCities?q=mo 200 OK
TypeError: a is undefined
...rep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==...
jquery.min.js (row 2, col 3476)
["Moscow"]
我看到&#34;莫斯科&#34;选项,我可以选择它,如果我没有在控制台中得到错误,一切都会好的。 请告诉我我的错误。
我尝试使用jquery.js(不是min-version)。错误是
TypeError: elems is undefined
length = elems.length,
jquery.js (row 459, col 4)
我猜数据类型有问题,但我自己找不到。
答案 0 :(得分:3)
事实证明bootstrap3-typeahead.min.js中存在错误 如果我使用bootstrap3-typeahead.js - 浏览器控制台中没有错误。