gpt4 book ai didi

vue.js - 如何在 .onRequest 拦截器中使用 axios helper setToken

转载 作者:行者123 更新时间:2023-12-04 13:13:40 25 4
gpt4 key购买 nike

我同时使用 nuxt-authnuxt-axios模块。我想拦截每个 axios 请求并检查我的 JWT 访问 token 是否快过期,如果是,我想更新它。我为 nuxt-auth 写了一个小扩展,如下所示。我的问题是,一旦我得到新的 token ,$auth.setToken(strategy,newToken)$axios.setToken(newToken) 似乎没有预期的更新。那么我应该如何使用拦截器和助手?我不确定这是使用它们的正确位置/方式

var jwtDecode = require("jwt-decode")

export default function({$auth, $axios}) {
const strategy = "local"

$axios.onRequest( async(config) => {
if ($auth.loggedIn) {
let refreshToken = "some confidtion"

if (refreshToken) {
try {
await refreshAccessURL()
} catch (error) {
return Promise.reject(error)
}
}
}
return config
})

async function refreshAccessURL() {
const refresh = $auth.getRefreshToken(strategy)
try {
const { access } = await $axios.$post(refreshURL, { refresh })
const newToken = "Bearer " + access
$auth.setToken(strategy, newToken)
$axios.setToken(newToken)

return newToken

} catch (e) {
$auth.logout()
throw new Error(e)
}
}
}

最佳答案

您可以在 plugins/axios.js

中添加如下拦截器
export default function({ $axios }) {
$axios.onRequest((config) => {
config.headers['Authorization'] = `Bearer abc`;
});
}

关于vue.js - 如何在 .onRequest 拦截器中使用 axios helper setToken,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62263676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com