API端点在我的nuxt.js应用程序中不起作用,但在邮递员上起作用

问题描述 投票:0回答:1

大家好,我遇到以下问题:

在我的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}){...

javascript vue.js nuxt.js
1个回答
-1
投票
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
      });
   }
}
© www.soinside.com 2019 - 2024. All rights reserved.