我正在尝试加载.json文件,其中包含一些设置数据 a
server.js代码
(function () {
app.factory("configService", ['$http', function ($http) {
return {
getResponders: function () {
var url = 'https://example.com/assets/js/service/config.json',
apiHeaders = {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json;charset=utf-8'
};
return $http({
method: "GET",
url: url,
headers: apiHeaders,
data: {}
}).then(function (res) {
console.log('response : ' + res);
}, function (res) {
console.log('error : '+res);
});
}
};
}]);
})();
并争取获得资源但显示错误:
无法加载https://example.com/assets/js/service/config.json:对预检请求的响应未通过访问控制检查:否' Access-Control-Allow-Origin'标头出现在请求的资源上。起源' http://localhost:8678'因此不允许访问。响应的HTTP状态代码为403。