JSON を返す API を開発していますが、API 呼び出しには「term」と「country」という 2 つのパラメーターがあります。
http://127.0.0.1:8000/internalapi/cidades/?country=PT&term=Barreir
この呼び出しを変更して、追加の API パラメータ「country」をサポートするにはどうすればよいですか?
<script>
$(function() {
function log( message ) {
$( "<div>" ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
}
$( "#city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://127.0.0.1:8000/internalapi/cidades/",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function( data ) {
response( $.map( data.geonames, function( item ) {
return {
label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
value: item.name
}
}));
}
});
},
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" );
}
});
});
</script>
手がかりはありますか?
よろしくお願いします、
更新 1:
国を選択するための HTML:
<div class="fieldWrapper">
<label for="id_country">País:</label>
<select id="id_country" name="country">
<option selected="selected" value="">(Nothing)</option>
<option value="PT">Portugal</option>
<option value="ES">Espanha</option>
</select>
</div>