我使用下面的代码来获取地址取决于pincode但是给出了错误
$http.get('//maps.googleapis.com/maps/api/geocode/json?address=500082&sensor=true')
.then(function (results) {
return results;
});
我设置
$httpProvider.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
$httpProvider.defaults.withCredentials = true;
配置块中的
错误:-XMLHttpRequest无法加载http://maps.googleapis.com/maps/api/geocode/json?address=500082&sensor=true。对预检请求的响应没有通过访问控制检查:通配符' *'不能用于“访问控制 - 允许 - 来源”#39;凭证标志为true时的标头。起源' http://localhost:2808'因此不允许访问。 XMLHttpRequest的凭证模式由withCredentials属性控制。