我的Routes.js
<Route path="/game-center" component={GameCenter} />
<Route path="/game-center/pickAndWin" component={PickAndWin} />
<Route path="/game-center/memory" component={Memory} />
<Route path="/game-center/summary" component={GameSummary} />
</Route>
</Router>在卡片点击上,我会根据游戏是有效的还是过期的,将他路由到游戏或摘要。
cardClick=(type, name, status, gameId) => {
console.log(`here${type}${status}`, name);
this.props.dispatch(GameCenterActions.setShowGame());
if (status === LIVE) {
this.props.dispatch(GameCenterActions.selectGame({ type, name, status, gameId }));
this.props.dispatch(GameCenterActions.resetShowSummary());
hashHistory.push(LIVE_GAMES[type]);
} else if (status === EXPIRED) {
this.props.dispatch(GameCenterActions.setShowSummary());
console.log(`${EXPIRED_GAMES}summary page here`);
this.props.dispatch(GameCenterActions.selectGame({ type, name, status, gameId }));
hashHistory.push('/game-center/summary');
}
}当用户直接输入url '/game-center/summary‘时,他不应该被允许,而应该被送回主页。这在react路由器本身中是可能的吗?我想在我的整个应用程序中实现这一点。我不希望用户通过键入urls直接导航到页面,而是只使用应用程序内部的链接转到页面。
发布于 2017-08-23 17:54:29
您可以通过使用高阶组件来实现这一点。例如,您可以在用户通过身份验证时设置一个标志,然后将此HOC与react路由器中的指定组件相关联
import React,{Component} from 'react';
import {connect} from 'react-redux';
export default function(ComposedComponent){
class Authentication extends Component{
static contextTypes = {
router : React.PropTypes.object
}
componentWillMount(){
if(!this.props.user){
this.context.router.push('/');
}
}
componentWillUpdate(nextProps){
if(!nextProps.user){
this.context.router.push('/');
}
}
render(){
return(<ComposedComponent {...this.props}/>);
}
}
}然后在你的路线中
<Route path="home" component={requireAuth(Home)}></Route>https://stackoverflow.com/questions/45836337
复制相似问题