1.二级路由

第一种方法

  1. //1.新建两个子路由并在要使用的页面引入 components/Morning Night
  2. import Morning from './components/Morning'
  3. import Night from './components/Night'
  4. render() {
  5. return (
  6. <div>
  7. 关于页面
  8. {/* /about/morning /about/night*/}
  9. 使用component这种路由方式,route标签不能有空格
  10. <Route path="/about/morning" component={Morning}></Route>
  11. <Route path="/about/night" component={Night}></Route>
  12. </div>
  13. );
  14. }

第二种方法

  1. <Switch>
  2. <Route path="/about/morning">
  3. <Morning></Morning>
  4. </Route>
  5. <Route path="/about/night">
  6. <Night></Night>
  7. </Route>
  8. </Switch>

2.路由重定向

  1. // 在import中加入Redirect
  2. <Redirect from="/about" to="/about/morning"></Redirect>