我想在提交电子邮件和密码进行登录时将其重定向到仪表板,我的代码如下:
handleClick(event){
var payload={
"email":this.state.email,
"password":this.state.password
}
axios({
method: 'post',
url: '/app/login/',
data: payload,
withCredentials: true,
headers: {
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json',
'Accept': 'application/json',
}
})
.then(function (response) {
console.log(response);
if(response.data.code == 200){
response.redirect('http://localhost:5000/#/dashboard');
}
else if(response.data.code == 204){
swal("Erreur !", "Vérifiez vos champs SVP !", "error");
}
else{
swal("Erreur !", "Username inexistant !", "error");
}
})
}
我的路线:
import React from 'react';
import Loadable from 'react-loadable'
const Dashboard = Loadable({
loader: () =>
import ('./views/Dashboard'),
loading: Loading,
});
const routes = [
{ path: '/dashboard', name: 'Dashboard', component: Dashboard }]
请问该如何解决?
答案 0 :(得分:2)
axios响应对象中没有redirect
方法。
要解决此问题,您可以使用自己使用的路由器锻炼。
router.push({ path: '/dashboard' })
这样...
如果您使用react-router
:尝试从组件道具中提取history
,如下所示:
this.props.history.push('/dashboard')
答案 1 :(得分:2)
使用withRouter
来访问组件中的历史道具:
这是工作示例:https://codeshare.io/5OZbdW