请帮助我使用 Bootstrap typeahead 解决此错误。
这是我用来调用源代码的 php 代码。
function getUser() {
$sth = mysql_query("SELECT id,contact FROM cinfo ORDER BY id ASC");
$rows = array();
while ($r = mysql_fetch_assoc($sth)) {
$rows[] = $r;
}
print json_encode($rows);
}
这是我的 javascript 文件
更新 2 JS
$('.user').typeahead({
source : function(typeahead, query) {
return $.post('/ticket/getUser', {
query : query,
}, function(data) {
return typeahead.process(data);
})
},
property : 'contact'
});
我得到以下错误现在产生https://gist.github.com/1866577#gistcomment-263183
我正在使用以下引导预输入脚本https://gist.github.com/1866577
谢谢你。