本篇文章主要介紹了react-router4 配合webpack require.ensure 實現異步加載的示例,非常具有實用價值,需要的朋友可以參考下
實現異步加載的方法,歸根結底大都是根據webpack的require.ensure來實現
第一個是自己使用require.ensure實現,
第二種使用loader實作
今天我們說的是使用bundle- loader來實現,這樣程式碼更優雅些。
首先需要安裝bundle-loader ,具體使用npm還是yarn,就看你的套件管理使用的是啥了。
下面需要一個bundle.js
import React, { Component } from 'react'; export default class Bundle extends Component { constructor(props) { super(props); this.state = { 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({ mod: mod.default ? mod.default : mod }); }); } render() { return this.state.mod ? this.props.children(this.state.mod) : null; } }
然後把bundle.js 引進來,同時也把需要做非同步的檔案引進來,但前面需要加上
bundle-loader?lazy&name=[name]!
例如:
import Bundle from './components/bundle.js'; import ListComponent from 'bundle-loader?lazy&name=[name]!./file/List.jsx';
下面就是新增路由這塊的設定:
<Route path="/list" component={List} />
以及設定output的chunkFilename
chunkFilename: '[name]-[id].[chunkhash:4].bundle.js'
chunkFilename配置好以後,異步載入進來的檔案名稱就會按照上面的命名方式來展示,如果不配置,就是webpack給生成的數字了。
上面的都配置好了以後,就是怎麼使用bundle了,你看到route上配置的component對應的是List,所以我們需要寫一個List:
const List = (props) => ( <Bundle load={ListComponent}> {(List) => <List {...props}/>} </Bundle> );
上面是我整理給大家的,希望未來會對大家有幫助。
相關文章:
############################################################################################################################ #在Bootstrap中如何實現表格合併單元格############在JavaScript中如何實現獲取select下拉框中第一個值############在AngularJS中如何做到即時取得並顯示密碼#######以上是react-router4 配合webpack require.ensure 實作非同步載入(詳細教學)的詳細內容。更多資訊請關注PHP中文網其他相關文章!