任何人都可以给我一个例子来获取下面这个提供json数据的网址的数据 当使用firefox rest client测试时,这工作正常 我不知道如何从php或jquery中使用这个web服务
url: "http://ws.geonames.org/searchJSON",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
}
答案 0 :(得分:0)
你可以这样:
$.get('http://ws.geonames.org/searchJSON', {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
}, function(data) {
alert(data.totalResultsCount);
});
Here一个带有工作示例的jsfiddle