码迷,mamicode.com
首页 > 其他好文 > 详细

React 路由

时间:2019-02-08 01:11:41      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:bin   end   link   mis   pat   bing   加载   err   from   

1.  下载插件

yarn add react-router-dom --save / npm i react-router-dom --save

2.  配置基础路由

import { BrowserRouter, Route, Link } from ‘react-router-dom‘

<Provider>
    <BrowserRouter>
        <div>
            <ul>
                <li>
                    <Link to="/">一营</Link>
                </li>
                <li>
                    <Link to="/Erying">二营</Link>
                </li>
                <li>
                    <Link to="/Qibing">骑兵连</Link>
                </li>
            </ul>
                // exact用来精准匹配路由
             <Route path="/" exact component={App} />
             <Route path="/Erying" component={Erying} />
             <Route path="/Qibing" component={Qibing} />
        </div>
    </BrowserRouter>
</Provider>

3.  重导向(Redirect)

import { Redirect } from ‘react-router-dom‘

<Redirect to="/somePath" ></Redirect> // 每次页面加载首先进这个地址

  4. Switch匹配

import { Switch } from ‘react-router-dom‘

<Switch>
   <Route path="/" exact component={App} />
   <Route path="/Erying" component={Erying} />
   <Route path="/Qibing" component={Qibing} />  
   <Route component={NoMatch} />  // 没有匹配到任何地址, 404的情况  
</Switch>

  5.  子路由嵌套

<Route path="/" render={() => 
     <Admin>
          <Switch>                                    
              <Route path="/home" component={ Home } />
              <Route path="/ui/buttons" component={ Buttons }></Route>
              <Route path="/form/login" component={ FormLogin }></Route>
              <Route path="/charts/line" component={ ChartLine }></Route>
              <Route path="/permission" component={ PermissionIndex }></Route>
              <Redirect to="/home" />
              <Route component={ NoMatch }  />
           </Switch>
     </Admin>
}/>

  

 

 

React 路由

标签:bin   end   link   mis   pat   bing   加载   err   from   

原文地址:https://www.cnblogs.com/Xmforever/p/10355741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!