如何解决扩展 Nuxt Auth 插件时 Axios 拦截器不起作用
export default function ({ $axios,$auth }) {
$axios.interceptors.request.use((req) => {
req.data = {
data: {
// some data
}
}
console.log('auth: ',$auth)
return req
})
$axios.defaults.headers['Content-Type'] = 'application/vnd.api+json'
$axios.defaults.headers.Accept = 'application/vnd.api+json'
}
plugins: [
{ mode: 'client',src: '~/plugins/axios' }
],
当我运行我的请求时,我得到一个 auth undefined
。
所以我尝试扩展Nuxt Auth plugin:
auth.js:
export default function ({ $auth }) {
if ($auth.loggedIn) {
console.log('loggin in')
} else {
console.log('not loggin in')
}
}
plugins: [
// { mode: 'client',auth: {
plugins: [{ src: '~/plugins/axios',ssr: true },'~/plugins/auth.js'],// strategies etc..
}
所以我评论了 Axios 插件,并将其添加到 auth 部分,如 Nuxt Auth 文档所示。当我运行请求时,它不会记录跳过整个 console.log('auth: ',$auth)
$axios.interceptors.request.use((req) => {
解决方法
最后,我有机会帮助某人 XD #just-signed-up。 这是我用来从 axios 拦截器中访问身份验证的代码
nuxt.config.js
auth: {
plugins: [{ src: '~/plugins/axios.js',ssr: true },'~/plugins/auth.js']
}
auth.js
export default function ({ $auth }) {
if ($auth.loggedIn) {
return true
} else {
return false
}
}
axios.js
export default function ({ $axios,redirect,$auth }) {
$axios.onRequest(config => {
console.log('Making request to ' + config.url)
})
$axios.onError(error => {
const code = parseInt(error.response && error.response.status)
if (code === 401) {
if ($auth.loggedIn) {
$auth.logout()
}
redirect('/login');
}
if (code === 404) {
redirect('/404')
}
})
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。