我有一个从中获取价值的城市名称字段(即随机格式化),例如“NEW YORK”、“new york”或“new-york”或“ny”。
有了该字段的值,我需要以这种格式向用户显示名称中包含该值的城市列表:
NY – 纽约市 – 10001
MN – New York Mills – 56567
效率和性能很重要。我可以使用 JavaScript 或 PHP 来检索这些数据。
到目前为止,我已经尝试使用 Freebase API。这是我使用的示例查询:http: //tinyurl.com/3ogpf7k
这是我正在使用的 JavaScript 代码:
// App.q contains city name field's value
var query = {
extended : 1,
query : [{
search : App.q,
type : '/location/citytown',
id : null,
name : null,
postal_codes : [],
"/location/location/containedby" : [{
"type" : "/location/us_state",
"name": null,
// two letters abbreviation of state
"/common/topic/alias" : []
}]
}]
},
url = 'http://www.freebase.com/api/service/mqlread?callback=?&query=' +
encodeURIComponent(JSON.stringify(query));
$.getJSON(url, function( data ) {
var cities, i, len, name, aliases, j, abbr, postal_code, HTML = [];
for ( i = 0, len = data.result.length; i < len; i += 1 ) {
// cities with names matching user's input
if ( data.result[ i ].name.toLowerCase().indexOf( App.q ) === -1 ) continue;
// cities that have postal_codes data available
if ( data.result[ i ].postal_codes.length === 0 ) continue;
name = data.result[ i ].name;
aliases = data.result[ i ]["/location/location/containedby"][0]["/common/topic/alias"];
postal_code = data.result[ i ].postal_codes[0];
// find two-letters alias
for ( j = aliases.length - 1; j >= 0; j -= 1 ) {
if ( aliases[j].length === 2 && aliases[j] === aliases[j].toUpperCase() ) {
abbr = aliases[j];
}
}
HTML.push( D.renderHTML( liTemplate, {
name : name,
abbr : abbr,
postal_code : postal_code
}) );
}
console.log( HTML.join('') );
});
但是,查询“纽约”似乎甚至不会返回“纽约市”。
是否有更好的 API 可以满足我的需求?我对 Freebase API 做错了吗?
UPD。另一个有用的 API 允许做同样的事情(但它仍然不能满足我的需求——结果太多而且无法通过它们进行分页):
文档:http ://www.geonames.org/export/web- services.html
示例:http ://api.geonames.org/postalCodeSearch?placename=los%20angeles&username=demo&maxRows=500
谢谢!