react 中使用import()實現按需加載報錯 解決方法 --‘import’ and ‘export’ may only appear at the top level

由於項目須要搞一下按需加載,使用import實現代碼打包分片按需加載,可是在實際使用中報語法錯誤。報錯信息以下node

SyntaxError: ‘import’ and ‘export’ may only appear at the top level

啊咧?報錯了。react

查找發現不少人碰到過,解決方法不一樣,可是我這個報錯適用下邊這個方法。webpack

npm install --save-dev babel-plugin-syntax-dynamic-import

而後調整babel-loader配置以下:git

 

 

use: { loader: 'babel-loader', options: { // 不採用.babelrc的配置 "babelrc": false, "presets": [ ["react"], ["es2015", { "modules": false }] ], "plugins": [ "syntax-dynamic-import", "transform-object-rest-spread", "transform-class-properties" ] } }







//解決方法出處示下邊這篇博文:
http://www.shuizhongyueming.com/2017/11/28/webpack-dynamic-import%E5%87%BA%E9%94%99-syntaxerror-import-and-export-may-only-appear-at-the-top-level/



爲防止博客哪天不用了,整篇文章轉載過來。如下示原博文。

原由

今天嘗試使用webpck的import()來作代碼分割。github

代碼相似以下:web

import('./nice-scroll').then(init => init(dom))

結果報錯:npm

ERROR in ./js/utils/auto-set-height.js
Module build failed: SyntaxError: ‘import’ and ‘export’ may only appear at the top level (20:8)json

分析

在package.json裏面確認了一下,我用的webpack版本是^3.5.4,這個是必定支持import()方法的,那麼問題應該就出在babel上了。babel

先截取個人babel-loader的部分配置:app

use: { loader: 'babel-loader', options: { // 不採用.babelrc的配置 "babelrc": false, "presets": [ ["react"], ["es2015"] ], "plugins": [ "transform-object-rest-spread", "transform-class-properties" ] } }

一開始個人猜測是plugin es2015裏面的transform-es2015-modules-commonjs先於webpack處理了代碼,因此報錯。

找了一下禁用的方法,改配置以下:

use: { loader: 'babel-loader', options: { // 不採用.babelrc的配置 "babelrc": false, "presets": [ ["react"], ["es2015", {module: false}] ], "plugins": [ "transform-object-rest-spread", "transform-class-properties" ] } }

仍是不行。

後面一直各類關鍵詞的搜索,偶然在github上面找到這個問題Dynamic `import()` crashing in `ModuleConcatenationPlugin`的一個回答:

Nope; babel will always process the code before webpack ever sees it; unless for some reason the file itself is being excluded from being processed by babel-loader.
This error is unrelated to babel; it’s a webpack issue.

這個回答,裏面說到在webpack面對的代碼都是babel處理過的,這個讓我堅信問題仍是在babel這塊,繼續搜索。

意外找到這個這篇文章:代碼分離 – 使用import()。裏面說到了一個插件:syntax-dynamic-import

Babel官方關於這個插件的描述是:

Syntax only
This plugin only allows Babel to parse this syntax. If you want to transform it then see dynamic-import-webpack or dynamic-import-node.

顯然這是一個語法解析的插件,使得babel可以理解dynamic import的語法。再聯繫上面的報錯信息裏面的SyntaxError,結果有點明顯了。

解決

npm install --save-dev babel-plugin-syntax-dynamic-import

而後調整babel-loader配置以下:

use: { loader: 'babel-loader', options: { // 不採用.babelrc的配置 "babelrc": false, "presets": [ ["react"], ["es2015", { "modules": false }] ], "plugins": [ "syntax-dynamic-import", "transform-object-rest-spread", "transform-class-properties" ] } }

重啓webpack,順利經過編譯!!!

相關文章
相關標籤/搜索