详解react-router4 异步加载路由两种方法
前端之家收集整理的这篇文章主要介绍了
详解react-router4 异步加载路由两种方法,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
方法一:我们要借助bundle-loader来实现按需加载。
首先,新建一个bundle.js文件:
export default class Bundle extends React.Component {
state = {
// short for "module" but that's a keyword in js,so "mod"
mod: null
}
componentWillMount() {
this.load(this.props)
}
componentWillReceiveProps(nextProps) {
if (nextProps.load !== this.props.load) {
this.load(nextProps)
}
}
load(props) {
this.setState({
mod: null
})
props.load((mod) => {
this.setState({
// handle both es imports and cjs
mod: mod.default ? mod.default : mod
})
})
}
render() {
if (!this.state.mod)
return false
return this.props.children(this.state.mod)
}
}
然后,在入口处使用按需加载:
// bundle模型用来异步加载组件
import Bundle from './bundle.js';
// 引入单个页面(包括嵌套的子页面)
// 同步引入
import Index from './app/index.js';
// 异步引入
import ListContainer from 'bundle-loader?lazy&name=app-[name]!./app/list.js';
const List = () => (
{(List) =>
}
)
// ...
// ...
webpack.config.js文件配置
output: {
path: path.resolve(__dirname,'./output'),filename: '[name].[chunkhash:8].bundle.js',chunkFilename: '[name]-[id].[chunkhash:8].bundle.js',},
方法二:用原生的
Webpack 配置
首先在 webpack.config.js 的 output 内加上 chunkFilename
添加 chunkFilename
chunkFilename: '[name].[chunkhash:5].chunk.js',
name 是在代码里为创建的 chunk 指定的名字,如果代码中没指定则 webpack 默认分配 id 作为 name。
chunkhash 是文件的 hash 码,这里只使用前五位。
这里写的是旧的没按需要加载的路由写法
{/* 主页 */}
{/* 默认 */}
{/* baidu */}
<Route path="/baidu" component={BaiduPage}>
<Route path="result" component={BaiduResultPage} />
<Route path="frequency" component={BaiduFrequencyPage} />
</Route>
{/* <a href="/tag/404/" target="_blank" class="keywords">404</a> */}
<Route path='/404' component={NotFoundPage} />
{/* 其他<a href="/tag/zhongdingxiang/" target="_blank" class="keywords">重定向</a>到 <a href="/tag/404/" target="_blank" class="keywords">404</a> */}
<Redirect from='*' to='/404' />
),document.getElementById('app')
);
我们需要让路由动态加载组件,需要将 component 换成 getComponent
{/* 主页 */}
{/* 默认 */}
{/* baidu */}
<Route path="/baidu"
getComponent(nextState,cb)
{ require.ensure([],(require) => { cb(null,require('components/layer/HomePage')) },'HomePage')}>
{/*
404 */}
{/* 其他
重定向到
404 */}
replaceState(null,"/404") />
),document.getElementById('app')
);
getComponent
对应于以前的 component 属性,但是这个方法是异步的,也就是当路由匹配时,才会调用这个方法。
这里面有个 require.ensure 方法
这是 webpack 提供的方法,这也是按需加载的核心方法。第一个参数是依赖,第二个是回调函数,第三个就是上面提到的 chunkName,用来指定这个 chunk file 的 name。
如果需要返回多个子组件,则使用 getComponents 方法,将多个组件作为一个对象的属性通过 cb 返回出去即可。这个在官方示例也有,但是我们这里并不需要,而且根组件是不能返回多个子组件的,所以使用 getComponent。
当改写之后,我们需要把这个重定向的路由单独拆出来,也就是 * 这个路由,我们上面已经为他创建了一个 redirect 目录。这里使用到 onEnter 方法,然后在这个方法里改变路由状态,调到另外的路由,实现 redirect :
/redirect/index.js
404")
}
The root route must render a single element
跟着官方示例和上面码出来之后,可能页面并没有渲染出来,而是报 The root route must render a single element 这个异常,这是因为 module.exports 和 ES6 里的 export default 有区别。
如果你是使用 es6 的写法,也就是你的组件都是通过 export default 导出的,那么在 getComponent 方法里面需要加入.default。
{
// 在后面加 .default
cb(null,require('components/layer/ReportPage')).default
},'ReportPage')
}
如果你是使用 CommonJS 的写法,也就是通过 module.exports 导出的,那就无须加 .default 了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。