有谁知道为什么当我输入的第一个字符为 0(零)时我的自动完成功能不起作用?出于调试目的,我将我的 AC 设置为只告诉我是否找到了一行,而且似乎对于我输入的任何字符作为第一个字符,它都会告诉我,除了 0。我必须在 0 之后输入第二个字符它开始工作并开始工作。就好像minLength
属性是2
第一个字符为 0 时。有没有人遇到或听说过这个并知道如何解决它?这是我的代码:
//AutoComplete code in question
$(function() {
var itemcode_ac = {
source: "/webservices/whs_bincodeAC.php",
select: function(event, ui) {
$('#txtBin').val(ui.item.value);
getWhsInfo();
},
minLength: 1
}
$('#txtBin').autocomplete(itemcode_ac);
});
whs_bincodeAC.php:
<?php
if(isset($_GET["term"]) && !empty($_GET["term"])) {
include_once $_SERVER['DOCUMENT_ROOT'].'/path/to/dbConnect.php';
$term = mysql_real_escape_string(trim($_GET["term"]));
//wildcard appended here for parameterized query (MySqli)
$term .= "%";
$query = "SELECT DISTINCT BinCode, ItemCode, ItemName, WhsCode, DataAsOfDate FROM whse_tbl
WHERE BinCode LIKE '$term' or ItemCode LIKE '$term' ORDER BY BinCode LIMIT 0, 10";
$res = mysql_query($query);
//This is the debug code I described above
/*if($row = mysql_fetch_assoc($res))
echo json_encode(array(array('value' => "is row")));
else
echo json_encode(array(array('value' => "no row")));
return;*/
$matches = array();
while($row = mysql_fetch_assoc($res))
{
$matches[] = array('value' => $row["BinCode"], 'label' => $row["BinCode"].' - '.$row["ItemCode"],
'name' => $row["ItemName"], 'whscode' => $row["WhsCode"], 'asOfDate' => $row["DataAsOfDate"]);
}
echo json_encode($matches);
}
?>
注意:我的老板现在让我使用 MySql 而不是 MySqli 扩展。