オートコンプリートデータソースをphpファイルに変更し、以下のコードを試しました。しかし、それは機能しません、誰かがそれを修正する方法を提案できますか?
ありがとう
$('#search').autocomplete({
source: function( request, response ) {
$.ajax({
url: "/property_bldg.php",
dataType: "jsonp",
data: {
query: request.term
},
success: function( data ) {
response( $.map( data.suggestions, function( item ) {
return {
label: item.text,
value: item.text
}
}));
}
});
},
minLength: 1
})
戻る
{query:'A',par1:'',suggestions:['AUSTIN RD','ARCH','ARGYLE ST','AMOY GDN','ARIA','AQUAMARINE','ACADEMIC TERR','APEX','ALLWAY GDN','AP LEI CHAU DRIVE'],data:[]}
更新しました:
$('#autocomplete_propSearch').autocomplete({
source: function( request, response ) {
$.ajax({
url: "/property_bldg.php",
dataType: "json",
data: {
query: request.term
},
complete: function (xhr, status) {
if (status === 'error' || !xhr.responseText) {
alert('Error')
}
else {
response( $.map( xhr.responseText.suggestions, function( item ) {
return {
label: item,
value: item
}
}));
}
}
});
},
minLength: 1
})