require.ensure被react-router4x遗弃之后,各类问题接踵而来, 使用了叫作asyncComponent一个加载组建,看了看源码,他使用了一个函数返回组建的方式,来嵌套了一层,并且返回的仍是import加载的形式,感受很诧异跟直接import有什么却别?翻了翻es6 API 没看出因此然。 因而赶忙翻看webpack里的介绍,豁然开朗【import('path/to/module') -> Promise :动态地加载模块。调用 import() 之处,被做为分离的模块起点,意思是,被请求的模块和它引用的全部子模块,会分离到一个单独的 chunk 中。】这个就是RR4跟3在结构调整上的区别了。javascript
//个人路由加载模块部分
let ViewIndex = asyncComponent(()=>import( "../view/index/index.js"));
复制代码
//asyncComponent代码
import React, { Component } from "react";
export default function asyncComponent(importComponent) {
class AsyncComponent extends Component {
constructor(props) {
super(props);
this.state = {
component: null
};
}
async componentDidMount() {
const { default: component } = await importComponent();
this.setState({
component: component
});
}
render() {
const C = this.state.component;
return C ? <C {...this.props} /> : null; } } return AsyncComponent; } 复制代码
可是问题又来了,chunk名称以id的形式出现,不容易区分究竟是谁,因而翻看解析源码,原来是留有复值的地方的, 已经生成好了,仍是webpack的问题,因而接着在webpack的import中找。java
var ViewIndex = (0, _AsyncComponent2.default)(function () {
return __webpack_require__.e/* import() */(3).then(__webpack_require__.bind(null, 765));
});
__webpack_require__.e = function requireEnsure(chunkId) {
/******/ var installedChunkData = installedChunks[chunkId];
/******/ if(installedChunkData === 0) {
/******/ return new Promise(function(resolve) { resolve(); });
/******/ }
/******/
/******/ // a Promise means "currently loading".
/******/ if(installedChunkData) {
/******/ return installedChunkData[2];
/******/ }
/******/
/******/ // setup Promise in chunk cache
/******/ var promise = new Promise(function(resolve, reject) {
/******/ installedChunkData = installedChunks[chunkId] = [resolve, reject];
/******/ });
/******/ installedChunkData[2] = promise;
/******/
/******/ // start chunk loading
/******/ var head = document.getElementsByTagName('head')[0];
/******/ var script = document.createElement('script');
/******/ script.type = 'text/javascript';
/******/ script.charset = 'utf-8';
/******/ script.async = true;
/******/ script.timeout = 120000;
/******/
/******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ }
/******/ script.src = __webpack_require__.p + "" + ({"1":"index","3":"ViewIndex","4":"ViewInfos"}[chunkId]||chunkId) + "-chunk.js";
/******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() {
/******/ // avoid mem leaks in IE.
/******/ script.onerror = script.onload = null;
/******/ clearTimeout(timeout);
/******/ var chunk = installedChunks[chunkId];
/******/ if(chunk !== 0) {
/******/ if(chunk) {
/******/ chunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));
/******/ }
/******/ installedChunks[chunkId] = undefined;
/******/ }
/******/ };
/******/ head.appendChild(script);
/******/
/******/ return promise;
}
复制代码
果真下面有介绍:【import 规范不容许控制模块的名称或其余属性,由于 "chunks" 只是 webpack 中的一个概念。幸运的是,webpack 中能够经过注释接收一些特殊的参数,而无须破坏规定】react
import(
/* webpackChunkName: "my-chunk-name" */
/* webpackMode: "lazy" */
'你的模块地址'
);
复制代码
怎么用如此卑劣的方法处理这么严肃的事情,很差理解也很差看,容易被其余压缩组件给和谐掉,不知道怎么想的可是解决了问题,就此了事,等出现和谐问题后再想其余办法吧。webpack