Vue 自定义header
Posted chenyishi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue 自定义header相关的知识,希望对你有一定的参考价值。
第一种,全局设置:
Vue.http.headers.common[‘token‘] = ‘YXBpOnBhc3N3b3Jk‘;
第二种,拦截器设置
Vue.http.interceptors.push((request, next) => { request.headers.set(‘token‘, token); //setting request.headers next((response) => { return response }) })
以上是关于Vue 自定义header的主要内容,如果未能解决你的问题,请参考以下文章