我正在将vue-resource用于http请求。
我将main.js文件中的授权标头设置为:
Vue.http.headers.common['Authorization'] = 'Bearer ' + Vue.auth.getToken()
但是登录成功后,我想从组件更改其值而不刷新它。
在登录Login.vue组件后,我试图这样做:
this.$http.headers.common['Authorization'] = "Bearer " + token
,但是Authoriztion标头值仍然保持不变。 我只希望在没有刷新页面的情况下登录后,所有请求中都可以使用authorizstion标头。