我想从Google Api获取json数据但是使用get方法和jsonp方法这不起作用。
她是我的代码:
$http({
method: 'get',
url: 'https://maps.googleapis.com/maps/api/place/search/json?location=46.2030350,6.1522080&radius=500&types=restaurant&sensor=false&key=MY_KEY&callback=?'
}).then(function successCallback(response,data) {
console.log(data)
}, function errorCallback(response) {
console.log('nope')
});
我有XMLHttpRequest cannot load
。
答案 0 :(得分:1)
这主要是因为您尝试直接通过浏览器运行file
而没有server
。您需要xampp或其他网络服务器。
或者只需安装python 2.7
并使用以下命令从项目文件所在的位置python -m SimpleHTTPServer 8000
开始,然后导航到localhost:8000