axios如何获取后台写入请求头得数据呢

发布于 2022-09-06 02:12:40 字数 38 浏览 11 评论 0

登录后台在请求头写入token和用户信息,我如何获取这些头信息

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

优雅的叶子 2022-09-13 02:12:40

你好,可以这样拿到:

axios.get('xxx')
  .then(function(response) {
    console.log(response.headers);
  });

其中response包含字段有:

{
  // `data` is the response that was provided by the server
  data: {},

  // `status` is the HTTP status code from the server response
  status: 200,

  // `statusText` is the HTTP status message from the server response
  statusText: 'OK',

  // `headers` the headers that the server responded with
  // All header names are lower cased
  headers: {},

  // `config` is the config that was provided to `axios` for the request
  config: {},

  // `request` is the request that generated this response
  // It is the last ClientRequest instance in node.js (in redirects)
  // and an XMLHttpRequest instance the browser
  request: {}
}
请帮我爱他 2022-09-13 02:12:40

你可以登录成功后储存在localStorage或者cookie里
然后设置ajax的默认头 Token
axios.defaults.headers.common['X-Api-AccessToken'] = window.localStorage.getItem('accessToken')

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文