我有一个jQuery自动填充字段,当用户开始在字段中输入城市名称时,该字段会查找城市名称和相应的ZIP(美国邮政编码)。
MySQL数据库包含大约44,000行美国邮政编码。选择所有城市名称和邮政编码时,查询本身会快速运行(0.0002秒)。
“预缓存”所有结果会有什么好处(SELECT place_name
,postal_code
FROM postal_codes
WHERE country_code
='US')这样用户可以更快地加载自动完成功能吗?
编辑:整个JSON列表为600KB,在浏览器中加载2-3秒(根据谷歌Chrome控制台)
当前代码:
<script type="text/javascript">
$(function() {
$('#from_country').change(function(){
var val = this.value;
$("#from_zip").autocomplete({
source: "json-list-live-production.php?country=" + val,
minLength: 4,
});
}).change()
$('#del_country').change(function(){
var val = this.value;
$("#del_zip").autocomplete({
source: "json-list-live-production.php?country=" + val,
minLength: 4,
});
}).change()
});
</script>
<input type="text" class="input_text" name="from_zip" id="from_zip" />
<input type="text" name="del_zip" id="del_zip" />
答案 0 :(得分:0)
使用GeoNames.org webservice + jQuery Autocomplete查找邮政编码是最快的方法。
$( "#from_zip" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/postalCodeSearchJSON",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 50,
placename_startsWith: request.term,
country: "US"
},
success: function( data ) {
response( $.map( data.postalCodes, function( item ) {
return {
label: item.placeName + (item.adminCode1 ? ", " + item.adminCode1 : "") + " (" + item.postalCode + ")",
value: item.postalCode
}
}));
}
});
},
minLength: 2,
messages: {
noResults: null,
results: function() {}
},
});