jQuery autocomplete返回一些空值

时间:2013-06-13 18:38:42

标签: javascript jquery mysql database

我正在使用jQuery自动完成功能和PHP源文件连接到MySQL并获取信息以在输入字段上显示为自动完成。这是我的代码:

索引/输入

<script>

 $(function() {
     $("#search").autocomplete({
    source: 'http://localhost/testes/autocomplete.php',
    minLength: 3
 });
});

</script>

<input type="text" id="search"/>

自动填充PHP

$req = "SELECT DISTINCT name FROM faculty WHERE name LIKE '%".$_REQUEST['term']."%'"; 
$query = mysql_query($req);

while($row = mysql_fetch_array($query)){
    $results[] = array('label' => $row['name']);
}

echo json_encode($results);

问题是,它返回好的值和其他空值。但是,在最后一种情况下,值不应为null,因为它们位于数据库中。

例如,在数据库中我有条目: ISCTE - InstitutoUniversitário INDEG-ISCTE商学院

按'iscte'搜索自动完成功能会给出第二个,但第一个显示为空。

谢谢你的时间, 问候, 雨果

1 个答案:

答案 0 :(得分:1)

那是因为编码。使用此:

...
while($row = mysql_fetch_array($query)){
    $results[] = array('label' => utf8_encode($row['name']));
}
...

你的数据库应该设置为UTF8,但顺便说一下,这就解决了。