vue-resource

发布于 2022-09-05 10:43:23 字数 32 浏览 10 评论 0

vue-resource怎么设置头部的header

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

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

发布评论

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

评论(3

瞄了个咪的 2022-09-12 10:43:23

用拦截器设置request

Vue.http.interceptors.push((request, next) => {
    request.headers['xxx'] = xxx;
    next(response => {
        ...
    });
});
心是晴朗的。 2022-09-12 10:43:23

Interceptors

Interceptors can be defined globally and are used for pre- and postprocessing of a request. If a request is sent using this.$http or this.$resource the current Vue instance is available as this in a interceptor callback.

Request processing

Vue.http.interceptors.push(function(request, next) {

  // modify method
  request.method = 'POST';

  // modify headers
  request.headers.set('X-CSRF-TOKEN', 'TOKEN');
  request.headers.set('Authorization', 'Bearer TOKEN');

  // continue to next interceptor
  next();
});

摘自文档 https://github.com/pagekit/vu...
像一楼说的,vue.resource( 2.0后不再更新)
推荐使用 axios https://github.com/mzabriskie...

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