提供授权标头

问题描述 投票:0回答:1
vue.js nuxt.js vuejs3 nuxtjs3 nuxt-auth
1个回答
0
投票

Vueform 使用 axios 发送请求。 axios文档中的所有配置选项都可以在

vueform.config.js
中应用,包括标题:

// vueform.config.js

export default {
  axios: {
    headers: { Authorization: `Bearer ${token}` }
  },
  // ...
}

您还可以提供一个现有的预配置 axios 实例(如果有的话),如 Vueform 文档

中所示
// vueform.config.js
import axios from 'axios'

axios.defaults.headers.common = { 'Authorization': `Bearer ${token}` }

export default {
  axios,
  // ...
}
© www.soinside.com 2019 - 2024. All rights reserved.