React Router最新指南与异步加载实践

本文从属于笔者的React入门与最佳实践系列
超级产品经理 //默认路由

 //默认错误路由
不过React-Router因为其与React的强绑定性也不可避免的带来了一些缺陷,譬如在目前情况下因为React存在的性能问题(笔者觉得在React-Fiber正式发布之后能得到有效解决),如果笔者打算使用Inferno来替换部分对性能要求较大的页面,也是会存在问题。如果有兴趣的话也可以参考下你不一定需要React-Router这篇文章。## Why React-Router### Without React-RouterReact-Router的核心原理是将子组件根据选择注入到{this.props.children}中。在一个多页面的应用程序中,如果我们不使用React-Router,那么整体的代码可能如下所示:

import React from 'react'

import { render } from 'react-dom'

const About = React.createClass({/.../})

const Inbox = React.createClass({/.../})

const Home = React.createClass({/.../})

const App = React.createClass({

getInitialState() {

return {  route: window.location.hash.substr(1)}

},

componentDidMount() {

window.addEventListener('hashchange', () => {  this.setState({    route: window.location.hash.substr(1)  })})

},

render() {

let Childswitch (this.state.route) {  case '/about': Child = About; break;  case '/inbox': Child = Inbox; break;  default:      Child = Home;}return (    # App      1. About      1. Inbox)

}

})

render(, document.body)

可以看出,在原始的多页面程序配置下,我们需要在render函数中手动地根据传入的Props来决定应该填充哪个组件,这样就导致了父子页面之间的耦合度过高,并且这种命令式的方式可维护性也比较差,也不是很直观。### With React-Router在React-Router的协助下,我们的路由配置可能如下所示:

import React from 'react'

import { render } from 'react-dom'

// First we import some modules...

import { Router, Route, IndexRoute, Link, hashHistory } from 'react-router'

// Then we delete a bunch of code from App and

// add some elements...

const App = React.createClass({

render() {

return (    # App    {/* change the s to s */}      1. About      1. Inbox    {/*      next we replace `` with `this.props.children`      the router will figure out the children for us    */}    {this.props.children})

}

})

// Finally, we render a with some s.

// It does all the fancy routing stuff for us.

render((

), document.body)

React Router提供了统一的声明式全局路由配置方案,使我们在父组件内部不需要再去关系应该如何选择子组件、应该如何控制组件间的跳转等等。而如果你希望将路由配置独立于应用程序,你也可以使用简单的JavaScript Object来进行配置:

const routes = {

path: '/',

component: App,

indexRoute: { component: Home },

childRoutes: [

{ path: 'about', component: About },{ path: 'inbox', component: Inbox },

]

}

render(, document.body)

## Reference### Tutorials & Docs1. Beginner’s Guide to React Router1. you-might-not-need-react-router1. React Router 中文文档# Route Configuration:路由配置在将React Router集成到项目中之后,我们会使用Router对象作为根容器包裹数个Route配置,而Route也就意味着一系列用于指示Router应该如何匹配URL的规则。以简单的TodoAPP为例,其路由配置如下所示:import React from 'react'import { render } from 'react-dom'import { Router, Route, Link } from 'react-router'const App = React.createClass({  render() {    return (        # App          1. About          1. Inbox        {this.props.children}    )  }})const About = React.createClass({  render() {    return ### About  }})const Inbox = React.createClass({  render() {    return (        ## Inbox        {this.props.children || "Welcome to your Inbox"}    )  }})const Message = React.createClass({  render() {    return ### Message {this.props.params.id}  }})render((), document.body)根据以上的配置,Router能够智能地处理以下几个路由跳转:URLComponents/App/aboutApp -> About/inboxApp -> Inbox/inbox/messages/:idApp -> Inbox -> Message### 添加默认路由在上面的配置中,如果我们默认访问的/地址,那么根据React Router的原理此时并没有选定任何的子组件进行注入,即此时的this.props.children值为undefined。而React Router允许我们使用 来配置默认路由。import { IndexRoute } from 'react-router'const Dashboard = React.createClass({  render() {    return Welcome to the app!  }})render((      {/* Show the dashboard at / */}), document.body)此时整体路由的配置为:URLComponents/App -> Dashboard/aboutApp -> About/inboxApp -> Inbox/inbox/messages/:idApp -> Inbox -> Message### 将UI与URL解耦在上面的配置中,Message组件是Inbox的子组件,因此每次访问Message组件都需要在路由上添加/inbox,这样会导致随着应用层次的加深而部分路由过于冗长,因此React Router还允许将UI与URL的配置解耦,譬如对上述配置的重构方式就是:render((      {/* Use /messages/:id instead of /inbox/messages/:id */}), document.body)这样近似于绝对路径访问的方式能够提高整体路由配置的可读性,我们不需要在URL中添加更多的Segments来访问内部的组件,此时的整体路由配置为:URLComponents/App -> Dashboard/aboutApp -> About/inboxApp -> Inbox/messages/:idApp -> Inbox -> Message注意,绝对路径可能无法使用在动态路由中。### 重定向路由React Router提供了来允许我们将某个路由重定向到其他路由,譬如对于上面的配置中,当我们将Message组件设置为绝对路径访问而部分开发者仍然使用/inbox/message/:id方式进行访问时:import { Redirect } from 'react-router'render((        {/* Redirect /inbox/messages/:id to /messages/:id */}), document.body)此时对于 /inbox/messages/5会被自动重定向到/messages/5。### 非JSX方式配置当我们使用JSX方式进行配置时,其嵌入式的层次结构有助于提高路由的可读性,不同组件之间的关系也能较好地表现出来。不过很多时候我们仍然希望使用单纯的JS对象进行配置而避免使用JSX语法。注意,如果使用单纯的JS对象进行配置的时候,我们无法再使用 ,因此你只能够在onEnter钩子中配置重定向。const routes = {  path: '/',  component: App,  indexRoute: { component: Dashboard },  childRoutes: [    { path: 'about', component: About },    {      path: 'inbox',      component: Inbox,      childRoutes: [{        path: 'messages/:id',        onEnter: ({ params }, replace) => replace(`/messages/${params.id}`)      }]    },    {      component: Inbox,      childRoutes: [{        path: 'messages/:id', component: Message      }]    }  ]}render(, document.body)# Route Matching:路由匹配路由主要依靠三个属性来判断其是否与某个URL相匹配:1. 嵌套的层级1. 路径1. 优先级### NestingReact Router提供了嵌套式的路由声明方案来表述组件之间的从属关系,嵌套式的路由就好像树形结构一样,而React Router来对某个URL进行匹配的时候也会按照深度优先的搜索方案进行匹配搜索。### Path Syntax:路径表达式一个典型的路由路径由以下几个部分组成:1. :paramName – 匹配参数直到 /, ?, or # .1. () – 匹配可选的路径1. * – 非贪婪匹配所有的路径1.   - 贪婪匹配所有字符直到 /, ?, or #          // 匹配 /hello/michael and /hello/ryan       // 匹配 /hello, /hello/michael, and /hello/ryan           // 匹配 /files/hello.jpg and /files/hello.html            // 匹配 /files/hello.jpg and /files/path/to/file.jpg### Precedence:优先级路由算法自动根据路由的定义顺序来决定其优先级,因此你在定义路由的时候需要注意前一个路由定义不能完全覆盖下一个路由的全部跳转情况:# History1. Histories官方文档React Router 是建立在 history 之上的。 简而言之,一个 history 知道如何去监听浏览器地址栏的变化, 并解析这个 URL 转化为 location 对象, 然后 router 使用它匹配到路由,最后正确地渲染对应的组件。常用的 history 有三种形式, 但是你也可以使用 React Router 实现自定义的 history。1. hashHistory1. browserHistory1. createMemoryHistory从 React Router 库中获取它们:

// JavaScript module import
import { browserHistory } from 'react-router'

然后可以传入到的配置中:

render(
,
document.getElementById('app')
)

## createHashHistory:用于客户端跳转这是一个你会获取到的默认 history ,如果你不指定某个 history (即 {/* your routes */})。它用到的是 URL 中的 hash(# )部分去创建形如 example.com/# /some/path 的路由。#### 我应该使用 createHashHistory吗?Hash history 是默认的,因为它可以在服务器中不作任何配置就可以运行,并且它在全部常用的浏览器包括 IE8+ 都可以用。但是我们不推荐在实际生产中用到它,因为每一个 web 应用都应该有目的地去使用createBrowserHistory。#### 像这样 ?_k=ckuvup 没用的在 URL 中是什么?当一个 history 通过应用程序的 pushState 或 replaceState 跳转时,它可以在新的 location 中存储 “location state” 而不显示在 URL 中,这就像是在一个 HTML 中 post 的表单数据。在 DOM API 中,这些 hash history 通过 window.location.hash = newHash 很简单地被用于跳转,且不用存储它们的location state。但我们想全部的 history 都能够使用location state,因此我们要为每一个 location 创建一个唯一的 key,并把它们的状态存储在 session storage 中。当访客点击“后退”和“前进”时,我们就会有一个机制去恢复这些 location state。你也可以不使用这个特性 (更多内容点击这里):

// 选择退出连续的 state, 不推荐使用
let history = createHistory({
queryKey: false
});

### createBrowserHistory:用于服务端跳转Browser history 是由 React Router 创建浏览器应用推荐的 history。它使用 History API 在浏览器中被创建用于处理 URL,新建一个像这样真实的 URL example.com/some/path。#### 服务器配置首先服务器应该能够处理 URL 请求。处理应用启动最初的 / 这样的请求应该没问题,但当用户来回跳转并在 /accounts/123 刷新时,服务器就会收到来自 /accounts/123 的请求,这时你需要处理这个 URL 并在响应中包含 JavaScript 程序代码。一个 express 的应用可能看起来像这样的:

const express = require('express')
const path = require('path')
const port = process.env.PORT || 8080
const app = express()

// 通常用于加载静态资源
app.use(express.static(__dirname + '/public'))

// 在你应用 JavaScript 文件中包含了一个 script 标签
// 的 index.html 中处理任何一个 route
app.get('*', function (request, response){
response.sendFile(path.resolve(__dirname, 'public', 'index.html'))
})

app.listen(port)
console.log("server started on port " + port)

如果你的服务器是 nginx,请使用 try_files directive:

server {
...
location / {
try_files $uri /index.html
}
}

当在服务器上找不到其他文件时,这就会让 nginx 服务器生成静态文件和操作 index.html 文件。#### IE8, IE9 支持情况如果我们能使用浏览器自带的 window.history API,那么我们的特性就可以被浏览器所检测到。如果不能,那么任何调用跳转的应用就会导致 **全页面刷新**,它允许在构建应用和更新浏览器时会有一个更好的用户体验,但仍然支持的是旧版的。你可能会想为什么我们不后退到 hash history,问题是这些 URL 是不确定的。如果一个访客在 hash history 和 browser history 上共享一个 URL,然后他们也共享同一个后退功能,最后我们会以产生笛卡尔积数量级的、无限多的 URL 而崩溃。### createMemoryHistory:非地址栏呈现Memory history 不会在地址栏被操作或读取。这就解释了我们是如何实现服务器渲染的。同时它也非常适合测试和其他的渲染环境(像 React Native )。## 实现示例

import React from 'react'
import createBrowserHistory from 'history/lib/createBrowserHistory'
import { Router, Route, IndexRoute } from 'react-router'
import App from '../components/App'
import Home from '../components/Home'
import About from '../components/About'
import Features from '../components/Features'

React.render(

,
document.getElementById('app')
)

# Router Control:路由控制## Manual Navigation:手动导航在2.4.0版本之前,router对象通过this.context进行传递,不过这种方式往往会引起莫名的错误。因此在2.4.0版本之后推荐的是采取所谓的HOC模式进行router对象的访问,React Router也提供了一个withRouter函数来方便进行封装:

import React from 'react'
import { withRouter } from 'react-router'

const Page = React.createClass({
componentDidMount() {
this.props.router.setRouteLeaveHook(this.props.route, () => {
if (this.state.unsaved)
return 'You have unsaved information, are you sure you want to leave this page?'
})
},

render() {
return Stuff
}
})

export default withRouter(Page)

然后在某个具体的组件内部,可以使用this.props.router来获取router对象:

router.push('/users/12')

// or with a location descriptor object
router.push({
pathname: '/users/12',
query: { modal: true },
state: { fromDashboard: true }
})

router对象的常见方法有:1. replace(pathOrLoc):Identical to push except replaces the current history entry with a new one.1. go(n):Go forward or backward in the history by n or -n.1. goBack():Go back one entry in the history.1. goForward():Go forward one entry in the history.## Confirming Navigation:跳转前确认React Router提供了钩子函数以方便我们在正式执行跳转前进行确认:

const Home = withRouter(
React.createClass({

componentDidMount() {  this.props.router.setRouteLeaveHook(this.props.route, this.routerWillLeave)},routerWillLeave(nextLocation) {  // return false to prevent a transition w/o prompting the user,  // or return a string to allow the user to decide:  if (!this.state.isSaved)    return 'Your work is not saved! Are you sure you want to leave?'},// ...

})
)

### Enter and Leave Hooks除了跳转确认之外,Route也提供了钩子函数以通知我们当路由发生时的情况,可以有助于我们进行譬如页面权限认证等等操作:1. onLeave : 当我们离开某个路由时1. onEnter : 当我们进入某个路由时## Navigating Outside Of Components:组件外路由如果我们在React Component组件外,譬如Reducer或者Service中需要进行路由跳转的时候,我们可以直接使用history对象进行手动跳转:

// your main file that renders a Router
import { Router, browserHistory } from 'react-router'
import routes from './app/routes'
render(, el)
// somewhere like a redux/flux action file:
import { browserHistory } from 'react-router'
browserHistory.push('/some/path')

# Async:异步路由加载implicit-code-splitting-with-react-router-and-webpack## Dynamic Routing Configuration:动态的路由配置在介绍对于组件的异步加载之前,React Router也是支持对于路由配置文件的异步加载的。可以参考huge apps以获得更详细的信息。

const CourseRoute = {
path: 'course/:courseId',

getChildRoutes(partialNextState, callback) {
require.ensure([], function (require) {
callback(null, [
require('./routes/Announcements'),
require('./routes/Assignments'),
require('./routes/Grades'),
])
})
},

getIndexRoute(partialNextState, callback) {
require.ensure([], function (require) {
callback(null, {
component: require('./components/Index'),
})
})
},

getComponents(nextState, callback) {
require.ensure([], function (require) {
callback(null, require('./components/Course'))
})
}
}

## Lazy Bundle Loading:块/组件的懒加载React Router在其官方的huge apps介绍了一种基于Webpack的异步加载方案,不过其实完全直接使用了Webpack的require.ensure函数,这样导致了大量的冗余代码,并且导致了路由的逻辑被分散到了多个子文件夹中,其样例项目中的文件结构为:

├── components
├── routes
│ ├── Calendar
│ │ ├── components
│ │ │ └── Calendar.js
│ │ └── index.js
│ ├── Course
│ │ ├── components
│ │ │ ├── Course.js
│ │ │ ├── Dashboard.js
│ │ │ └── Nav.js
│ │ └── routes
│ │ ├── Announcements
│ │ │ ├── components
│ │ │ │ ├── Announcements.js
│ │ │ │ ├── Sidebar.js
│ │ │ ├── routes
│ │ │ │ └── Announcement
│ │ │ │ ├── components
│ │ │ │ │ └── Announcement
│ │ │ │ └── index.js
│ │ │ └── index.js
│ │ ├── Assignments
│ │ │ ├── components
│ │ │ │ ├── Assignments.js
│ │ │ │ ├── Sidebar.js
│ │ │ ├── routes
│ │ │ │ └── Assignment
│ │ │ │ ├── components
│ │ │ │ │ └── Assignment
│ │ │ │ └── index.js
│ │ │ └── index.js
│ │ └── Grades
│ │ ├── components
│ │ │ └── Grades.js
│ │ └── index.js
│ ├── Grades
│ │ ├── components
│ │ │ └── Grades.js
│ │ └── index.js
│ ├── Messages
│ │ ├── components
│ │ │ └── Messages.js
│ │ └── index.js
│ └── Profile
│ ├── components
│ │ └── Profile.js
│ └── index.js
├── stubs
└── app.js

这种结构下需要为每个组件写一个单独的index.js加载文件,毫无疑问会加大项目的冗余度。笔者建议是使用bundle-loader来替代require.ensure,这样可以大大简化目前的代码。bundle-loader是对于require.ensuire的抽象,并且能够大大屏蔽底层的实现。如果某个模块选择使用Bundle Loader进行打包,那么其会被打包到一个单独的Chunk中,并且Webpack会自动地为我们生成一个加载函数,从而使得在需要时以异步请求方式进行加载。我们可以选择删除所有子目录下的index.js文件,并且将文件结构进行扁平化处理:

├── components
├── routes
│ ├── Calendar.js
│ ├── Course
│ │ ├── components
│ │ │ ├── Dashboard.js
│ │ │ └── Nav.js
│ │ ├── routes
│ │ │ ├── Announcements
│ │ │ │ ├── routes
│ │ │ │ │ └── Announcement.js
│ │ │ │ ├── Announcements.js
│ │ │ │ └── Sidebar.js
│ │ │ ├── Assignments
│ │ │ │ ├── routes
│ │ │ │ │ └── Assignment.js
│ │ │ │ ├── Assignments.js
│ │ │ │ └── Sidebar.js
│ │ │ └── Grades.js
│ │ └── Course.js
│ ├── Grades.js
│ ├── Messages.js
│ └── Profile.js
├── stubs
└── app.js

然后我们需要在我们的Webpack中配置如下专门的加载器:

// NOTE: this assumes you're on a Unix system. You will
// need to update this regex and possibly some other config
// to get this working on Windows (but it can still work!)
var routeComponentRegex = /routes\/([^\/]+\/?[^\/]+).js$/

module.exports = {
// ...rest of config...
modules: {
loaders: [
// make sure to exclude route components here
{
test: /.js$/,
include: path.resolve(dirname, 'src'),
exclude: routeComponentRegex,
loader: 'babel'
},
// run route components through bundle-loader
{
test: routeComponentRegex,
include: path.resolve(
dirname, 'src'),
loaders: ['bundle?lazy', 'babel']
}
]
}
// ...rest of config...
}

上述配置中是会将routes目录下的所有文件都进行异步打包加载,即将其从主Chunk中移除,而如果你需要指定某个单独的部分进行单独的打包,建议是如下配置:

{
...module: { loaders: [{
// use test to split a single file
// or include to split a whole folder test: /.*/,
include: [path.resolve(__dirname, 'pages/admin')],
loader: 'bundle?lazy&name=admin'
}]

}
...
}

而后在app.js中,我们只需要用正常的ES6的语法引入组件:

// Webpack is configured to create ajax wrappers around each of these modules.
// Webpack will create a separate chunk for each of these imports (including
// any dependencies)
import Course from './routes/Course/Course'
import AnnouncementsSidebar from './routes/Course/routes/Announcements/Sidebar'
import Announcements from './routes/Course/routes/Announcements/Announcements'
import Announcement from './routes/Course/routes/Announcements/routes/Announcement'
import AssignmentsSidebar from './routes/Course/routes/Assignments/Sidebar'
import Assignments from './routes/Course/routes/Assignments/Assignments'
import Assignment from './routes/Course/routes/Assignments/routes/Assignment'
import CourseGrades from './routes/Course/routes/Grades'
import Calendar from './routes/Calendar'
import Grades from './routes/Grades'
import Messages from './routes/Messages'

需要注意的是,这里引入的对象并不是组件本身,而是Webpack为我们提供的一些封装函数,当你真实地需要调用这些组件时,这些组件才会被异步加载进来。而我们在React Router中需要调用route.getComponent函数来异步加载这些组件,我们需要自定义封装一个加载函数:

function lazyLoadComponents(lazyModules) {
return (location, cb) => {
const moduleKeys = Object.keys(lazyModules);
const promises = moduleKeys.map(key =>
new Promise(resolve => lazyModuleskey)
)

Promise.all(promises).then(modules => {  cb(null, modules.reduce((obj, module, i) => {    obj[moduleKeys[i]] = module;    return obj;  }, {}))})

}
}

而最后的路由配置方案如下所示:

render(

,
document.getElementById('example')
)

如果你需要支持服务端渲染,那么需要进行下判断:

function loadComponent(module) {
return CLIENT
? lazyLoadComponent(module)
: (location, cb) => cb(null, module);
}

#react.js#

版权声明

本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处。如若内容有涉嫌抄袭侵权/违法违规/事实不符,请点击 举报 进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部