我必须/user/dashboard
在登录后重定向到该页面,但是每次我关闭该选项卡并再次打开它时,它都会打开默认主页,即/
.
import React from 'react';
import {isAuthenticated} from '../helpers/auth'
import {Route, Redirect } from 'react-router-dom';
const UserRoute = ({component: Component, ...rest}) => {
return(
<Route
{...rest}
render={(props)=>
isAuthenticated() && isAuthenticated().role === 0 ? (
<Component {...props} />
):(
<Redirect to="/signin" />
)
}
/>
);
}
导出默认用户路由;