与不工作的边缘浏览器标题授权爱可信GET请求(axios get request with head

2019-09-25 15:44发布

我使用爱可信得到与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公司。

谢谢

文章来源: axios get request with header Authorization not working on Edge browser
标签: vue.js axios