Google Places API



我正在尝试使用jQuery调用Google Places api,但由于跨域安全问题,它似乎失败了。我试图使这个请求的JSONP请求,它运行,但服务器返回直接JSON,所以解析失败的jQuery。有人找到解决办法了吗?

var requestUrl = "https://maps.googleapis.com/maps/api/place/search/json?location=" +
                   location.coords.latitude + "," + location.coords.longitude + "&radius=100&types=restaurant&sensor=false&key=<<api key here>>";
// Called with
$.getJSON(requestUrl + "&callback=?", onLocateRestaurants);
// or
$.ajax({
    url: requestUrl,
    type: 'GET',
    dataType: 'jsonp',
    crossDomain: true,
    callback: 'test',
    contentType: 'application/json',
    success: onLocateRestaurants2,
    error: defaultErrorHandler
});

@Jeremy:我可以为你发布结案答案。

Places API不支持JSON-P。请参阅以下问题(由Ken Browning链接)了解更多细节:

使用jQuery查询Google Places API

相关内容

  • 没有找到相关文章

最新更新