在這個教程裏,咱們會從一個例子React應用開始學習react-router-dom。其中你會學習如何使用Link
、NavLink
等來實現跳轉,Switch
和exact
實現排他路由和瀏覽器路徑歷史。javascript
也許學習react-router最好的辦法就是用react-router-dom v4來寫一個多頁的react應用。這個react應用會包含登陸、註冊、首頁、聯繫人等頁面。可是,首先讓咱們來看一下react router v4的概念,以及它與v3有什麼不一樣的地方。html
v4是react router的一次重寫,因此和v3有不少不一樣的地方。主要有:java
react-router-dom
裏。因此,瀏覽器裏使用的時候只須要import react-router-dom
就能夠。BrowerRouter
和HashRouter
。他們各自服務於不一樣的情景下。詳見下文。{props.children}
來處理嵌套的路由。react-router-dom
是react-router中用於瀏覽器的。react-router
被分爲一下幾部分:react
react-router
是核心部分。react-router-dom
提供了瀏覽器使用須要的定製組件。react-router-native
則專門提供了在原生移動應用中須要用到的部分。因此,若是在本例中實現瀏覽器開發就只須要安裝react-router-dom
。git
如上所說,咱們使用react開發web應用,因此只須要安裝react-router-dom
。github
npm install react-router-dom --save
BrowserRouter
,這是對Router
接口的實現。使得頁面和瀏覽器的history保持一致。如:window.location
。HashRouter
,和上面的同樣,只是使用的是url的hash部分,好比:window.location.hash
。MemoryRouter
,NativeRouter
,處理react native內的路由。StaticRouter
,處理靜態路由,和v3同樣。在react-router的各類router中,<BrowserRouter>
和<HashRouter>
是能夠在瀏覽器中使用的。若是你使用的是一個非靜態的站點、要處理各類不一樣的url那麼你就須要使用BrowserRouter
。相反的若是你的server只處理靜態的url,那麼就使用HashRouter
。web
<Route>組件是react router v4裏最有用的組件。背後的使用哲學也很簡單,不管什麼時候你須要在匹配某個路徑的時候繪製一個組件,那麼就可使用Route
組件。npm
Route
組件可使用以下的屬性:api
path
匹配成功以後會繪製這個組件。還有其餘的一些屬性,能夠用來代替component
屬性。瀏覽器
多數的時候是用component
屬性就能夠知足。可是,某些狀況下你不得不使用render
或children
屬性。
如:
使用組件:
<Route exact path="/" component={HomePage} />
使用render
屬性實現內聯繪製:
<Route path="/" render={()=><div>HomePage</div>} />
來看哥更復雜的:
const FadingRoute = ({ component, ...rest }) => ( <Route {...rest} render={(props) => ( <FadeIn> <componnet {...props} /> </FadeIn> )} /> ) <FadingRoute path="/cool" component={Something} />
使用children
:
<ul> <ListItemLink to="/somewhere" /> <LinkItemLink to="/somewhere-else" /> </ul> const ListItemLink = ({to, ...rest}) => ( <Route path={to} children={({math}) => ( <li className={match ? 'active' : ''}> <Link to={to} {...rest} /> </li> )} /> )
更多關於react-router v4如何匹配路徑的內容,請移步這裏。
一般狀況下,咱們都會在路徑裏添加參數。這樣方便在不一樣的組件之間傳遞一些必要的數據。那麼咱們如何才能獲取到這些傳遞的參數,並傳遞給組件中呢?咱們只須要在路徑的最後加上/:param
。如:
<Route path="/:param1" component={HomePage} /> const HomePage = ({match}) => ( <div> <h1> parameter => {match.params.param1} </div> );
一旦有路徑能夠匹配成功,那麼就會穿件一個擁有以下屬性的對象,並傳入繪製的組件裏:
path
和當前的widnow.location
的path部分徹底相同的話。Link
是react router v4特有的一個組件。是用來代替上一版的anchor link。使用Link
能夠在React應用的不一樣頁面之間跳轉。與unclor會從新加載整個頁面不一樣,Link
只會從新加載頁面裏和當前url能夠匹配的部分。
Link
組件須要用到to
屬性,這個屬性的值就是react router要跳轉到的地址。如:
import { Link } from 'react-router-dom'; const Nav = () => ( <Link to '/'>Home</Link> );
當被點擊的時候,會跳轉到路徑:/
。
to
屬性的值能夠是一個字符串,也能夠是一個location(pathname, hash, state和search)對象。好比:
<Link to{{ pathname: '/me', search: '?sort=asc', hash: '#hash', state: { fromHome: true } }} />
Link
也可使用replace
屬性,若是點擊的話,那麼history裏的當前領會被replace。
NavLink
是Link
的一個子類,在Link組件的基礎上增長了繪製組件的樣式,好比:
<NavLink to="/me" activeStyle={{SomeStyle}} activeClassName="selected"> My Profile </NavLink>
如今咱們用react router dom來實現第一個demo。
首先,引入必要的組件。好比:Route
和BrowserRouter
。
import { BrowserRouter, Route } from 'react-router-dom';
接下來,咱們建立一些組件和一些Html標籤。同時咱們用react router v4裏的Link
和NavLink
組件。
const BaseLayout = () => ( <div className="base"> <header> <p>React Router v4 Browser Example</p> <nav> <ul> <li><Link ="/">Home</Link></li> <li><Link ="/about">About</Link></li> <li><Link ="/me">Profile</Link></li> <li><Link ="/login">Login</Link></li> <li><Link ="/register">Register</Link></li> <li><Link ="/contact">Contact</Link></li> </ul> </nav> </header> <div className="container"> <Route path="/" exact component={HomePage} /> <Route path="/about" component={AboutPage} /> <Route path="/contact" component={ContactPage} /> <Route path="/login" component={LoginPage} /> <Route path="/register" component={RegisterPage} /> <Route path="/me" component={ProfilePage} /> </div> <footer> React Router v4 Browser Example (c) 2017 </footer> </div> );
而後咱們來建立須要的組件:
const HomePage = () => <div>This is a Home Page</div> const LoginPage = () => <div>This is a Login Page</div> const RegisterPage = () => <div>This is a Register Page</div> const ProfilePage = () => <div>This is a Profile Page</div> const AboutPage = () => <div>This is a About Page</div> const ContactPage = () => <div>This is a Contact Page</div>
最後,寫App
組件。
const App = () => ( <BrowserRouter> <BaseLayout /> </BrowserRouter> ) render(<App />, document.getElementById('root'));
如你所見,react router v4的組件還很是的易用的。
在上例中,咱們在HomePage
組件的路由裏使用了屬性exact
。
<Route path="/" exact component={HomePage} />
這是由於v4中的路由默認都是非排他的,這一點和v3的實現思路大相徑庭。若是沒有exact
屬性,HomePage
組件和其餘的組件就會同事繪製在頁面上。
如,當用戶點了登陸鏈接之後,"/"
和"/login"
都知足匹配條件,對應的登陸組件和Home組件就會同時出如今界面上。可是,這不是咱們期待的結果,因此咱們要給"/"
path加上exact
屬性。
如今咱們來看看非排他的路由有什麼優勢。假如咱們有一個子菜單組件須要顯示在profile頁面出現的時候也出現。咱們能夠簡單的修改BasicLayout
來實現。
const BaseLayout = () => ( <div className="base"> <header> <p>React Router v4 Browser Example</p> <nav> <ul> <li><Link to="/">Home</Link></li> <li><Link to="/about">About</Link></li> <li> <Link to="/me">Profile</Link> <Route path="/me" component={ProfileMenu} /> </li> {/*略*/} </ul> </nav> </header> </div> );
這樣咱們就會看到對應於"/me"
路徑的組件都繪製出來了。這就是非排他路由的好處。
排他路由是react router v3的默認實現。只有第一個匹配的路由對應的組件會被繪製。這一點也能夠用react router v4的Switch
組件來實現。在Switch
組件中,只有第一個匹配的路由<Route>
或者<Redirect>
會被繪製:
import { Switch, Route } from 'react-router'; <Switch> <Route exact path="/" component={HomePage} /> <Route path="/about" component={AboutPage} /> <Route path="me" component={ProfilePage} /> <Route component={NotFound} /> </Switch>
react router v4中,提供了一個history
對象。這個對象包含了多個api,能夠用來操做瀏覽器歷史等。
你也能夠在React應用裏使用history
對象的方法:
history.push("/my-path") history.replace("/my-path")
用另外的方法能夠寫成:
<Link to="/my-path" /> <Redirect to="my-path" />
不管什麼時候你要重定向到另一個地址的時候,均可以使用Redirect
組件:
<Redirect to {{ pathname: '/register', search: '?utm=something', state: { referrer: someplage.com } }}>
或者,更爲簡單的:
<Redirect to="register" />
react router v4讓開發react應用變得更加的簡單。讓react應用內的頁面跳轉更加簡單。你只須要聲明一個BrowserRouter
或者HashRouter
,而後在它的內部放上一系列的Route
組件,這些主鍵只要包含path
和component
屬性。不管什麼時候有了匹配的路由,那麼它就會進行非排他的繪製(全部匹配的路由都會繪製)。你也能夠把Route
放在Switch
組件裏來實現排他的繪製(只有第一個匹配的路由會被繪製)。你能夠在路徑中傳遞參數,match
對象會保留這些參數。最後,全部在web中使用的路由組件都包含在react-router-dom
中。只須要引入react-router-dom
就可使用。