4
以前のパス数とパス値をReactRouter.browserHistory
から取得できますか?ReactRouter.browserHistoryから以前のパスを取得する
以前のパス数とパス値をReactRouter.browserHistory
から取得できますか?ReactRouter.browserHistoryから以前のパスを取得する
実際にはできません。 しかし、リダイレクト時にbrowserHistory
の状態でリストを保存し、新しいパスをプッシュすることができます。このように
let history = this.props.location.state.history;
history.push(this.props.location.pathname)
browserHistory.push({
pathname: '/yourpath',
state: { history: history }
})
あなたはthis.props.location.state.history
おかげですべてのあなたの歴史を見つける必要があり、私は実際には常に 'のパスの試合でレンダリングするルートの' componentWillUpdate'でこれをしなければなりませんでした/ '、私は' location.key'を比較します – Noitidart