0
私はReactJSアプリケーションでreact-router
を使用しています。私はreact-router
を使って特定のルートをリダイレクトしようとしています。コードは次のとおりです:反応ルータを使用してルートにリダイレクト
ReactDOM.render(
<Router history={hashHistory}>
<Route component={ShowPost} path="/"></Route>
<Route component={AddPost} path="/addPost"></Route>
</Router>,
document.getElementById('app')
);
しかし、私は本当に特定のルートにプログラムでリダイレクトする方法を理解できません。