react用axios调用后台数据,成功后根据返回值如何跳转页面?
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不知道你配合使用
router
是什么,我们一般使用react-router.react-router中有个
push
或者replace
方法。