鍍金池/ 問答/HTML/ imports-loader import問題

imports-loader import問題

在跟著webpack官網(wǎng)指南打的時候,打到shimming這個章節(jié)使用到imports-loader,但是報'import' and 'export' may only appear at the top level

我的目錄與官網(wǎng)類似

webpack-demo
|- package.json
|- webpack.config.js
|- /dist
|- /src
  |- index.js
|- /node_modules
import _ from 'lodash';
import { cube } from './math';
import Print from './print'

if(process.env.NODE_ENV !== 'production') {
    console.log('development');
}
// import './style.css';
function component (  ) {
    var elm = document.createElement('div');
    var btn = document.createElement('button');
    var br = document.createElement('br');

    elm.innerHTML = join(['hel1lo','webpack'], ' ');
    // elm.innerHTML = ['hello webpac1k!'].join(' ');
    btn.innerHTML = 'click print';
    this.alert('Hmmm, this probably isn\'t a great idea...');
    elm.appendChild(br);
    elm.appendChild(btn);
    btn.onclick = Print.bind(null, 'hello')
    return elm;
}
document.body.appendChild(component())
const path = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');

module.exports = {
    entry: {
        app: './src/index.js',
        vendor: ['lodash']
        another: './src/another-module.js'
    },
    module: {
        rules: [
            {
                test: require.resolve('./src/index.js'),
                use: 'imports-loader?this=>window'
            },
            {
                test: /\.css$/,
                use: [
                    'style-loader',
                    'css-loader'
                ]
            },
            {
                test: /\.(png|svg|jpg|gif)$/,
                use: [
                    'file-loader'
                ]
            },
            {
                test: /\.(woff|woff2|eot|ttf|otf)$/,
                use:[
                    'file-loader'
                ]
            },
            {
                test: /\.(csv|tsv)$/,
                use: [
                    'csv-loader'
                ]
            },
            {
                test: /\.xml$/,
                use: [
                    'xml-loader'
                ]
            },

        ]
    },
    plugins: [
        new CleanWebpackPlugin(['dist']),
        new HtmlWebpackPlugin({
            title: 'production'
        }),
        new webpack.optimize.CommonsChunkPlugin({
            name: 'vendor'
        }),

        new webpack.optimize.CommonsChunkPlugin({
            name: 'runtime'
        }),
        new webpack.ProvidePlugin({
            join: ['lodash', 'join']
        })

    ],
    output: {
        filename: '[name].[hash].bundle.js',
        path: path.resolve(__dirname, 'dist'),
        chunkFilename: '[name].bundle.js'
    }
}

但是報了以下錯誤

ERROR in ./src/index.js
Module parse failed: 'import' and 'export' may only appear at the top level (7:0)
You may need an appropriate loader to handle this file type.
|  * Created by Administrator on 2017/10/23.
|  */
| import _ from 'lodash';
| import { cube } from './math';
| import Print from './print'
 @ multi (webpack)-dev-server/client?http://localhost:8080 webpack/hot/dev-server ./src/index.js

但是使用import()或者require()的方式是沒問題的,是因為ES6 import一定要放頂層的緣故嗎?求大神們解答一下

回答
編輯回答
魚梓

的確ES6的importexport一定是要在最外層,不能被包含在函數(shù)或是代碼塊中。
但是這里實際上并沒有使用imports-loader吧,雖然在webpack中有配置,但是在js中并不是通過require+參數(shù)方式使用。

可以多研究下imports-loader的文檔。
https://www.npmjs.com/package...

2017年10月19日 12:16