AngularJS [离子] - 谷歌apis XMLHttpRequest无法加载

时间:2016-05-11 12:32:14

标签: angularjs json google-maps xmlhttprequest

我想从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

1 个答案:

答案 0 :(得分:1)

这主要是因为您尝试直接通过浏览器运行file而没有server。您需要xampp或其他网络服务器。

或者只需安装python 2.7并使用以下命令从项目文件所在的位置python -m SimpleHTTPServer 8000开始,然后导航到localhost:8000