本文主要介紹了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> );
到這裡基本上就配置完了,這個時候你本地重啟服務,然後點擊對應的路由,就會看到異步記載的js:List-0.094e.bundle.js
#相關推薦:
以上是react-router4 配合webpack require.ensure 實作非同步加載的詳細內容。更多資訊請關注PHP中文網其他相關文章!