我正在使用这个:
$.ajax({
url: 'http://api.geonames.org/searchJSON?username=presis',
dataType: "jsonp",
data: {
name: city,
countryName: country,
maxRows: 1
},
jsonp: "jsonp",
success: function(data) {
$.map(data.geonames, function(item) {
return {
value: item,
};
});
}
});
我无法让它发挥作用。问题是什么? 在我的chrome控制台中,我在searchJSON对象中得到“Uncaught SyntaxError:Unexpected token:”。