React Router
下面未说明的都指的是React Router V4,用到的包是
react-router-dom
React Router的特性
路由的基本原理就是保证view和url同步,React-Router
有下面一些特点
声明式的路由 跟react一样,我们可以声明式的书写router,可以用
JSX
语法嵌套路由及路径匹配
-
支持多种路由切换方式
可以用
hashchange
或者history.putState
。hashChange
的兼容性较好,但在浏览器地址栏显示#看上去会很丑;而且hash记录导航历史不支持location.key
和location.state
。hashHistory
即hashChange
的实现。history.putState
可以给我们提供优雅的url,但需要额外的服务端配置解决路径刷新问题;browserHistory
即history.pushState
的实现。因为两种方式都有优缺点,我们可以根据自己的业务需求进行挑选,这也是为什么我们的路由配置中需要从
react.router
引入browserHistory
并将其当作props传给Router。
React Router的包
react—router
实现了路由的核心功能,在V4之前(V2,V3)可以使用它,而react-router-dom
基于react-router
,加入了再浏览器环境下的一些功能,例如Link组件
,BroswerRouter和HashRouter组件
这类的DOM类组件,所以如果用到DOM绑定就使用react-router-dom
,实际上react-router
是react-router-dom
的子集,所以在新版本中我们使用react-router-dom
就行了,不需要使用react-router
.react-router-native
在React Native中用到。
react-router-redux没有集成进来
React Router的API
React-Router
的API主要有
BrowserRouter | HashRouter | MemoryRouter | StaticRouter |
---|---|---|---|
Link | NavLink | Redirect | Prompt |
Route | Router | Swith |
这些组件的具体用法可以在react-router官网和segmentfault一篇文章查看,这里对它们做个总结:
BrowserRouter
使用HTML5提供的History api(putState,replaceState和popState事件)
来保持UI和URL的同步.
HashRouter
使用URL的hash部分(即window.location.hash)
来保持UI和URL的同步;HashRouter
主要用于支持低版本的浏览器,因此对于一些新式浏览器,我们鼓励使用BrowserHistory
。
MemoryRouter
将历史记录保存在内存中,这个在测试和非浏览器环境中很有用,例如react native
。
StaticRouter
是一个永远不会改变位置的Router,这在服务端渲染场景中非常有用,因为用户实际上没有点击,所以位置时间上没有发生变化。
NavLink
与Link
的区别主要在于,前者会在与URL匹配时为呈现要素添加样式属性。
Route
是这些组件中重要的组件,它的任务就是在其path属性
与某个location
匹配时呈现一些UI。
对于Router
,一般程序只会使用其中一个高阶Router
,包括BrowserRouter,HashRouter,MemoryRouter,NativeRouter和StaticRouter
;
Switch
用于渲染与路径匹配的第一个Route
或Redirect
。
React Router基本用法—基本路由
基本操作
两个页面home
和detail
//home.js
import React from 'react
export default class Home extends React.Component {
render(){
return (
)
}
}
//detail.js
import React from 'react'
export default class Home extends React.Component {
render(){
return(
)
}
}
//Route.js
import React from 'react'
import {HashRouter, Route, Switch} from 'react-router-dom'
import Home from '../home'
import Detail from '../detail'
const BasicRoute = () => (
)
export default BasicRoute;
//index.js
import React from 'react'
import ReactDOM from 'react-dom'
import Router from './router/router'
ReactDOM.render(
,
document.getElementById('root')
)
通过a标签跳转
修改home.js
和detail.js
//home.js
import React from 'react'
export default class Home extends React.Component {
render(){
return(
)
}
}
//detail.js
import React from 'react';
export default class Home extends React.Component {
render() {
return (
)
}
}
通过函数跳转
首先需要修改router.js
中的代码
...
import {HashRouter, Route, Switch, hashHistory} from 'react-router-dom';
...
...
然后在home.js
中
export default class Home extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
)
}
}
传参
很多场景下,我们还需要在页面跳转的同时传递参数,在react-router-dom
中,同样提供了两种方式进行传参:
url传参和通过push函数隐式传参
url传参
修改route.js中的代码
...
...
然后修改detail.js,使用this.props.match.params来获取url传过来的参数
...
componentDidMount() {
console.log(this.props.match.params);
}
...
在地址栏输入“http://localhost:3000/#/detail/3”,打开控制台可以看到
隐式传参
修改home.js
import React from 'react';
export default class Home extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
)
}
}
在detai.js中,就可以使用this.props.location.state获取home传过来的参数
componentDidMount() {
//console.log(this.props.match.params);
console.log(this.props.history.location.state);
}
跳转后打开控制台可以看到参数被打印
其他函数
replace
有些场景下,重复使用push或a标签跳转会产生死循环,为了避免这种情况出现,react-router-dom提供了replace。在可能会出现死循环的地方使用replace来跳转:
this.props.history.replace('/detail');
goBack
场景中需要返回上级页面的时候使用:
this.props.history.goBack();
React Router的基本用法—动态路由
React Router V4 实现了动态路由。
对于大型应用来说,一个首当其冲的问题就是所需加载的JavaScript的大小。程序应当只加载当前渲染页所需的JavaScript。有些开发者将这种方式称之为“代码分拆” —— 将所有的代码分拆成多个小包,在用户浏览过程中按需加载。React-Router 里的路径匹配以及组件加载都是异步完成的,不仅允许你延迟加载组件,并且可以延迟加载路由配置。Route可以定义 getChildRoutes,getIndexRoute 和 getComponents 这几个函数。它们都是异步执行,并且只有在需要时才被调用。我们将这种方式称之为 “逐渐匹配”。 React-Router 会逐渐的匹配 URL 并只加载该URL对应页面所需的路径配置和组件。
const CourseRoute = {
path: 'course/:courseId',
getChildRoutes(location, callback) {
require.ensure([], function (require) {
callback(null, [
require('./routes/Announcements'),
require('./routes/Assignments'),
require('./routes/Grades'),
])
})
},
getIndexRoute(location, callback) {
require.ensure([], function (require) {
callback(null, require('./components/Index'))
})
},
getComponents(location, callback) {
require.ensure([], function (require) {
callback(null, require('./components/Course'))
})
}
}
React Router的基本用法—嵌套路由
如果我们给/
,/category
和/products
创建了路由,但如果我们想要/category/shoes
,/category/boots
,/category/footwear
这种形式的url呢?在React Router V4
之前的版本中,我们的做法是利用Route组件的上下层嵌套:
那么在V4版本中该怎么实现嵌套路由呢,我们可以将嵌套的路由放在父元素里面定义。
//app.js
import React, { Component } from 'react';
import { Link, Route, Switch } from 'react-router-dom
import Category from './Category'
class App extends Component {
render(){
return(
)
}
}
export default App;
//Category.jsx
import React from 'react';
import { Link, Route } from 'react-router-dom';
const Category = ({ match }) => {
return(
- Shoes
- Boots
- Footwear
( {match.params.name}
)}/> //嵌套路由
)
}
export default Category;
我们需要理解上面的match
对象,当路由路径和当前路径成功匹配时会产生match对象,它有如下属性:
- match.url: 返回路由路径字符串,常用来构建
Link
路径 - match.path: 返回路由路径字符串,常用来构建
Route
路径 - match.isExact: 返回布尔值,如果准确(没有任何多余字符)匹配则返回true
- match.params: 返回一个对象包含
Path-to-RegExp
包从URL解析测键值对
注意match.url
和match.path
没有太大区别,控制台经常出现相同的输出,例如访问/user
const UserSubLayout = ({ match }) => {
console.log(match.url) // output: "/user"
console.log(match.path) // output: "/user"
return (
)
}
//注意这里match在组件的参数中被解构,意思就是我们可以使用match.path代替props.match.path
一般的,我们在构建Link
组件的路径时用match.url
,在构建Route
组件的路径时用match.path
还有一个地方需要理解的是Route
组件有三个可以用来定义要渲染内容的props:
- component: 当URL匹配时,
router
会将传递的组件使用React.createElement
来生成一个React元素 - render:适合行内渲染,在当前路径匹配路由路径时,
renderprop
期望一个函数返回一个元素 - children:
childrenprop
跟render
很类似,也期望一个函数返回一个React元素。然而,不管路径是否匹配,children都会渲染。
React Router的基本用法—带path参数的嵌套路由
一个真实的路由应该是根据数据,然后动态显示。假设我们获取了从服务端API返回的product数据,如下所示
//Product.jsx
const productData = [
{
id: 1,
name: 'NIKE Liteforce Blue Sneakers',
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin molestie.',
status: 'Available'
},
{
id: 2,
name: 'Stylised Flip Flops and Slippers',
description: 'Mauris finibus, massa eu tempor volutpat, magna dolor euismod dolor.',
status: 'Out of Stock'
},
{
id: 3,
name: 'ADIDAS Adispree Running Shoes',
description: 'Maecenas condimentum porttitor auctor. Maecenas viverra fringilla felis, eu pretium.',
status: 'Available'
},
{
id: 4,
name: 'ADIDAS Mid Sneakers',
description: 'Ut hendrerit venenatis lacus, vel lacinia ipsum fermentum vel. Cras.',
status: 'Out of Stock'
},
];
我们需要根据下面这些路径创建路由:
-
/products
. 这个路径应该展示产品列表。 -
/products/:productId
.如果产品有:productId
,这个页面应该展示该产品的数据,如果没有,就该展示一个错误信息。
//Products.jsx
const Products = ({ match }) => {
const productsData = [
{
id: 1,
name: 'NIKE Liteforce Blue Sneakers',
description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin molestie.',
status: 'Available'
},
//Rest of the data has been left out for code brevity
];
/* Create an array of `` items for each product
var linkList = productsData.map( (product) => {
return(
{product.name}
)
})
return(
Products
{linkList}
}/>
(
Please select a product.
)}
/>
)
}
下面是Product组件的代码
//Product.jsx
const Product = ({match,data}) => {
var product= data.find(p => p.id == match.params.productId);
var productData;
if(product)
productData =
{product.name}
{product.description}
{product.status}
;
else
productData = Sorry. Product doesnt exist
;
return (
{productData}
)
}
React Router的基本用法—保护式路由
考虑到这样一个场景,用户必须先验证登录状态才能进入到主页,所以需要保护式路由,这里需要保护的路由是Admin,如果登录没通过则先进入Login路由组件。保护式路由会用到重定向组件Redirect,如果有人已经注销了账户,想进入/admin
页面,他们会被重定向到/login
页面。当前路径的信息是通过state传递的,若用户信息验证成功,用户会被重定向回初始路径。在子组件中,你可以通过this.props.location.state
获取state的信息。
`
具体地,我们需要自定义路由来实现上面的场景
class App5 extends React.Component {
render(){
return (
-
Home
-
Category
-
Products
-
Admin
{/*自定义路由*/}
)
}
}
const Home = props => This is Home {console.log('Home-Props')}{console.log(props)}
const Admin = () => Welcome to admin!
// 自定义路由
const PrivateRoute = (({component:Component,...rest}) => {
return (
// 如果登录验证通过则进入Admin路由组件
fakeAuth.isAuthenticated === true
?( )
// 将from设置为Admin路由pathname,并传递给子组件Login
:( )
}
/>
)
})
Login组件实现如下,主要就是通过this.props.location.state.from
来记住是从哪个页面跳转过来的,然后如果toAdmin
为false
的话就要进行登录,登录后将toAdmin
设为true
,为true
就是进行重定向跳转到原来的页面
class Login extends React.Component {
constructor(){
super()
this.state = {
toAdmin:false
}
}
login = () =>{
fakeAuth.authenticate(() => {
this.setState({
toAdmin:true
})
})
}
render(){
const from = this.props.location.state.from
const toAdmin = this.state.toAdmin
if(toAdmin) {
return (
)
}
return (
{console.log(this.props)}
You must log in then go to the{from}
)
}
}
export default Login
export const fakeAuth = {
// 验证状态
isAuthenticated:false,
authenticate(cb){
this.isAuthenticated = true
setTimeout(cb,100)
}
}