我遇到了jQuery自動完成問題。我正在使用下面的函數,以獲得inputACCO_KEY
的結果。 問題是,我沒有看到結果 - 但顯然有東西從函數返回,因爲我在div下面看到了自動完成表單 - 但始終是空的。有時它會更長,有時會更短(取決於返回的結果數量),但它總是空的。如果我從該空表中選擇一些內容,則輸入中顯示的結果也是空的。Jquery自動完成返回結果,但結果沒有顯示任何內容
功能:
$("#inputACCO_KEY").autocomplete({
source: function (request, response) {
$.ajax({
method: 'post',
url: "/wsSearchCAMERC/GetCAACCOSearchAll/",
data: {
prefixText: $("#inputACCO_KEY").val(),
count: 30
},
dataType: 'json',
success: function (data) {
response($(data).map(function (item, i) {
return {
label: item.First,
value: item.Second
};
})
);
},
error: function (data) {
alert('error');
}
});
},
minLength: 3,
select: function (event, ui) {
log("Selected: " + ui.item.value + " aka " + ui.item.id);
}
});
});
結果是類型:
["{"First":"BOŠTJA S.P.","Second":"160001670"}",
"{"First":"GOLF KLUB","Second":"110001615"}", "{"First":"IRENA","Second":"150001322"}"]