0
我粘貼了用於登錄我的應用程序的代碼。即使登錄成功,頁面也不會重定向第一次登錄時。之後,它的工作正常。第一次,響應是去抓塊,即使響應是200.如何解決這個問題。Redirct在首次登錄時無法正常工作reactjs
export function login(loginForm){
return function(dispatch) {
axios.post(config.api.url + 'public/signin', { "email": loginForm.email, "password" : loginForm.password})
.then(response => {
dispatch({ type: 'AUTH_USER' });
localStorage.setItem('token', response.data.token);
hashHistory.push('/');
location.reload();
})
.catch(response => {
dispatch(authError(response.response.data.error));
});
}
}