http://jqueryui.com/autocomplete/#remote-jsonpを使用しようとしています
私はコードを取り、それを適応させようとしました。元のコードでは機能し (町を取得できます)、自分のデータに適応すると機能しません (何もリストされず、何も表示されません)。PHPファイルからjsonデータを取得します。これが私のコードです:
jquery:
function log( message ) {
$( "<div>" ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
}
$( "#city" ).autocomplete({
source: function( request, response ) {
console.log(request.term);
$.ajax({
type: "POST",
url: "/chercheabo",
dataType: "jsonp",
data: {
achercher: request.term
},
success: function( data ) {
response( $.map( data.myData, function( item ) {
return {
label: item.pseuDO + (item.pseuDO ? ", " + item.userID : "") + ", " + item.pseuDO,
value: item.pseuDO
}
}));
}
});
},
minLength: 2,
select: function( event, ui ) {
log( ui.item ?
"Selected: " + ui.item.label :
"Nothing selected, input was " + this.value);
},
open: function() {
$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
},
close: function() {
$( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
}
});
私のHTML:
<div class="ui-widget">
<label for="city">Your city: </label>
<input id="city" />
Powered by <a href="http://geonames.org">geonames.org</a>
</div>
<div class="ui-widget" style="margin-top: 2em; font-family: Arial;">
Result:
<div id="log" style="height: 200px; width: 300px; overflow: auto;" class="ui-widget-content"></div>
</div>
私のjsonコードの戻り値:
{"myData":[{"userID":"11","pseuDO":"toto"},{"userID":"20","pseuDO":"blogo"}]}
私のコードに何か問題がありますか?...ありがとう
更新:質問のコメントからphpファイルを追加する
$options = array();
$result = mysqli_query($link,"select userid, pseudo from utili where pseudo like '%".strtolower($_POST[achercher])."%'");
while($uti = $result->fetch_object())
{
$options['myData'][] = array( 'userID' => $uti->userid, 'pseuDO' => $uti->pseudo );
}
echo json_encode($options);
[編集]: jsonp を json に変更すると、機能します!