在Vue中,你可以通過使用this.$http.headers
或this.$http.defaults.headers
來獲取請求頭中的值。這里假設你使用了Vue的官方插件vue-resource
。
首先,在你的Vue組件中,通過this.$http.headers
來獲取headers的值。
export default {
created() {
console.log(this.$http.headers.get('Content-Type'));
console.log(this.$http.headers.get('Authorization'));
}
}
或者,你也可以通過this.$http.defaults.headers
來獲取headers的值,這樣可以查看全局的默認請求頭。
export default {
created() {
console.log(this.$http.defaults.headers.get('Content-Type'));
console.log(this.$http.defaults.headers.get('Authorization'));
}
}
請注意,你需要在Vue組件中正確設置vue-resource
插件并進行相應的配置,以便正確地發送HTTP請求并獲取請求頭中的值。