我使用爱可信得到与vuejs应用头部请求。 做工精细,并获得在Chrome和Firefox的反应。 但在边缘其不工作,让网络错误。 我送与头部授权请求。
axios.get(url, {
headers: {
'Authorization': 'Basic bmlwerydmFdfgdfgdfllobjhJayw='
}
})
.then(function(response) {
console.log("Success");
}
}).catch(function(error) {
console.log(error);
});
以下示出在控制台错误。
[object Error]: {config: Object, description: "Network Error", message:
"Network Error", request: Object, response: undefined...}
config: Object
description: "Network Error"
message: "Network Error"
request: Object
response: undefined
stack: "Error: Network Error at e.exports
(https://unpkg.com/axios@0.18.0/dist/axios.min.js:8:4473) at l.onerror
(https://unpkg.com/axios@0.18.0/dist/axios.min.js:8:3317)"
__proto__: Object
如果我们没有任何标题发送GET请求,将工作fine.How我可以调用与头部授权Axios公司。
谢谢