在进入路由前进行判断,判断不成功就不进入路由,请问一下要怎么进行设置。我不想转发路由,只想true的时候停留在当前路由,false的时候才跳转到下一个路由
路由钩子 onEnter
<Route path="/admin" component={Admin} onEnter={requireAuth} /> const requireAuth = (nextState, replace) => { if (true) { replace({ pathname: '/' }) // 路由转发 }else{ // ... } }
2.1m questions
2.1m answers
60 comments
57.0k users