大家好,我遇到以下问题:
在我的nuxt应用程序中,我有一个中间件来检查令牌是否有效,而我的问题在这里:
export default async function({ req, store, redirect }) {
const axios = require("axios");
if (store.state.authentication.authenticated) {
const response = await axios.post("/api/checkToken", {
token: store.state.authentication.token
});
}
}
[每当我访问某个页面时,该中间件都会首先执行。它真的很奇怪,它已经工作了,突然停下来工作并抛出错误。我试图重新启动服务器,但没有任何反应。
[我已经用邮递员``http://localhost/api/checkToken`尝试了该API,但我得到了结果。
我在这里错了什么?
您好,我遇到以下问题:在我的nuxt应用程序中,我有一个中间件,它检查令牌是否有效,而我的问题在这里:导出默认异步函数({req,store,redirect}){...
const axios = require("axios");
export default async function({ req, store, redirect }) {
if (store.state.authentication.authenticated) {
const response = await axios.post("/api/checkToken", {
token: store.state.authentication.token
});
}
}