react-router 5 xの設定とそのページのジャンプ方法とjsジャンプ方法
1024 ワード
前回react-routerを使った時 それとも3.xは久しぶりにreact-router 5.xに着きました.
コードを多く言わないでください.
設定
react:^16.8.6,
react-dom:^16.8.6,
react-router:^5.0,
react-router-dom:^5.0,
ルートの設定
コードを多く言わないでください.
設定
react:^16.8.6,
react-dom:^16.8.6,
react-router:^5.0,
react-router-dom:^5.0,
ルートの設定
import {HashRouter as Router,Route,Link,BrowserRouter ,Switch,Redirect} from 'react-router-dom';
....
a
b
....
jsジャンプ方法import { createHashHistory,createBrowserHistory } from 'history'; // hash history
const history = createHashHistory();
...
history.push('/a');
...