Ошибка начальной загрузки

помогите мне решить эту ошибку с помощью 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

Я использую следующий скрипт типа bootstrap https://gist.github.com/1866577

Спасибо.

Related of "Ошибка начальной загрузки"