我使用angular来调用google map api服务。但是即使用callback=JSON_CALLBACK
包裹它后我还没有被捕获
SyntaxError:意外的令牌:错误。
getResult: function (location) {
var placeAPIURL = "https://maps.googleapis.com/maps/api/place/autocomplete/json?input=" + location + "&key=abcd123&callback=JSON_CALLBACK";
return $http({
method: 'JSONP',
dataType: "JSONP",
url: placeAPIURL
}).success(function (response) {
console.log(JSON.stringify(response));
}).error(function (error) {
console.log(error);
});
}

我尝试了很多事情:
知道我缺少什么