微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

当我使用 url http://localhost:3000/dashboard

如何解决当我使用 url http://localhost:3000/dashboard

我是 nodejs 和 Reactjs 的新手。我用 reactjs 和 nodejs 创建了一个示例项目。如果我使用 http://localhost:3000 输入,应用程序工作正常,请求和响应 b/w nodejs 和 reactjs 工作正常。如果我直接用 http://localhost:3000/dashboard 输入,它会直接向浏览器发送响应并显示

{
merchantid: "Not login"
}

在 nodejs 中,我添加了中间件身份验证并将令牌保存在 cookie 中。如果用户直接输入 url http://localhost:3000/dashboard 并且他没有登录,那么我想将他重定向登录页面。我的问题是我的 reactjs 没有收到响应。

Nodejs 直接进入 /dasboard 页面登录

router.get('/dashboard',merchantAuth,async (req,res) => {
  try {
    if(!req.merchant){
      throw new Error(': merchantid: Not login')
    } 
   } 
   catch (e) {
    const errors = errorhandle(e)
    res.status(400).send(errors)
   }
});

Reactjs 调用获取请求

axios
            .get('http://localhost:3000/dashboard')
            .then((response) => {
                console.log('response: ',response)
            })
            .catch(function (err) {
                console.log('err response data: ',err)
                const {merchantid} = err.response.data
                if (merchantid){
                    this.props.history.push("/")
                }
            })   

浏览器消息。这个浏览器消息我应该在 react js 和我中收到,基于我将格式化并显示给最终用户错误

enter image description here

解决方法

当用户直接输入 /dashboard url 并且他之前没有登录时,通过使用 res.redirect('/') 修复它。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。