react用axios调用后台数据,成功后根据返回值如何跳转页面?

发布于 2022-09-06 21:35:49 字数 763 浏览 8 评论 0

1.用react写登陆页面,在用axios调用后台数据后,根据返回值判断要跳转的页面路由,要怎么跳转?
2.axios.get('/login/login.action?username='+name+'&password='+pd, {

timeout: 1000,

})

.then(function (response) {
    console.log(response.data.data.user_code);
    if(response.data.data.user_code=='04'){
        console.log('跳转04对应页面/List.js');
    }else if(response.data.data.user_code=='05'){
        console.log('跳转05对应页面/User.js');
    }else if(response.data.data.user_code=='06'){
        console.log('跳转06对应页面/Num.js');
    }
})
.catch(function (error) {
    console.log(error);
});

3.
clipboard.png

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜夜流光相皎洁 2022-09-13 21:35:50

不知道你配合使用 router是什么,我们一般使用react-router.
react-router中有个push或者replace方法。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文