美文网首页
React-router4.0

React-router4.0

作者: 黄毛丫头以文会友 | 来源:发表于2019-04-09 18:31 被阅读0次

React-Router4.0安装:

1.安装:cnpm install - -save  react-router  react-router-dom

2.App.js中引入:import { Route,BrowserRouter,Switch}from "react-router-dom";

3.使用:

<BrowserRouter>

  <Switch>

      <Route exact path="/"component={ Home }></Route>

        <Route path="/other"component={ Other }></Route>

  </Switch>

</BrowserRouter>

4.路由嵌套:

<0ther path="/other">

    <Switch>

        <Route path="/other/java"component={ Java}>

    <Switch>

</0ther>

5.参数传递

{this.props.match.params.id}

6.路由高亮

NavLink

7.重定向

<Redirect to="/app/">

编程式导航:this.props.history.push("/home")

相关文章

网友评论

      本文标题:React-router4.0

      本文链接:https://www.haomeiwen.com/subject/iciiiqtx.html