gpt4 book ai didi

javascript - WebPack 和 Require

转载 作者:行者123 更新时间:2023-12-03 06:04:58 24 4
gpt4 key购买 nike

我有一个模块 A,如下所示,模块 A 是使用 web pack 的 bundle ,它包含模块 B。该模块还使用 require 变量导出 Highcharts 库

A.js(在模块文件夹下::src/main/webapp/resources/js/modules)

var HighCharts = require("highchart");
var moduleB = require("../common/B.js"); //so that we can call draw() of moduleB

$(document).ready(function() {
moduleB.print();
}

B.js(在公共(public)文件夹下:src/main/webapp/resources/js/common)

var print = function() {
console.log("something");
draw();
}
var chart;
function draw() {
chart = new Highcharts.Chart({

});
}

exports.print = print;

注意 ModuleB.js 捆绑在 A.js 中

当我加载 JavaScript 时,它抛出一个错误,Highcharts 未定义。

//如何加载

chart = new Highcharts.Chart({

});

为了避免此错误,我执行了以下操作。

在 B.js 中执行以下操作。

var Highcharts = require('highcharts');

还将 B.js 从公共(public)文件夹移动到模块文件夹中,因为它现在是入口点(从 src/main/webapp/resources/js/common 移动到 src/main/webapp/resources/js/modules)

WebPack 给我以下错误。
./src/main/webapp/resources/js/modules/A.js 中的错误找不到模块:错误:不允许依赖于入口点 @ ./src/main/webapp/resources/js/modules/A.js 7:14-37

Webpack.config.js

入口点将是modules文件夹下的所有文件。

var path = require('path');
var webpack = require("webpack");
var glob = require("glob");
//var BowerWebpackPlugin = require("bower-webpack-plugin");
var jsSrcPath = 'src/main/webapp/resources/js/modules/**/*.js';
var jsDestPath = 'src/main/webapp/resources/build/js/modules';
var cssPath = '';


var files = glob.sync(jsSrcPath, {});
var entries = {};


for (var i = 0; i < files.length; i++) {
var file = files[i];
entries[file.replace(/^.*[\\\/]/, '').replace(/\.[^/.]+$/, "")] = path.join(__dirname, file);
}

var webpackOptions = {
cache: true,
watch: false,
entry: entries,
output: {
path: __dirname + "/" + jsDestPath,
filename: '[name].js',
},
module: {
loaders: [{
test: /.(?:jsx|js)$/,
exclude: /node_modules/,
loader: 'babel-loader?blacklist=useStrict'
},
// }, {
// test: /\.json/,
// exclude: /node_modules/,
// loader: 'json-loader'
// }, {
// test: /\.css$/,
// exclude: /node_modules/,
// loader: "style!css"
// }, {
// test: /\.scss$/,
// exclude: /node_modules/,
// loader: 'style-loader!css-loader!sass-loader!autoprefixer-loader?browsers=last 10 version'
// }, {
// test: /\.(png|jpg)$/,
// exclude: /node_modules/,
// loader: 'url-loader?limit=999999'
// }, {
{
test: /vendor\/.+\.(jsx|js)$/,
exclude: /node_modules/,
loader: 'imports?jQuery=jquery,$=jquery,this=>window'
}
]
},
resolve: {
root: [path.join(__dirname, "bower_components")],
extensions: ['', '.js', '.json', '.jsx', '.css']
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
// new webpack.optimize.UglifyJsPlugin({
// compress: {
// warnings: false
// }
// })
],
devServer: {
contentBase: ".",
noInfo: true, // --no-info option
hot: true,
inline: true
}
};



module.exports = webpackOptions;

PS:最初 B.js 位于模块文件夹之外,因为它不是入口点。后来它被移到模块文件夹内,因为我们已将其作为入口点。

最佳答案

“显然我不想在 moduleB 中加载我的高脚椅库,因为它不是 web pack 的入口点”

事实并非如此,尽管看起来很不直观!您确实需要在 moduleB 中导入 Highcharts,因为您就是在其中使用它的。在 Node 和 Webpack 中,模块导入不是全局的;如果您的 moduleC 中包含另一个图表,您也必须在那里导入 Highcharts。

Webpack 足够聪明,不会运行/包含导入的代码两次,因此没有理由避免这样做。 This answer I wrote a while back准确解释了它是如何工作的。

编辑:看看你的配置,我认为你可能对 Webpack 的工作原理有错误的想法。您不需要输入整个文件目录,然后返回充满文件的整个目录;您将单个文件设置为入口点,然后 Webpack 跟踪其所有依赖项,将所有内容捆绑到单个输出文件*中。顾名思义,入口点是您进入应用程序的点 - 您绝对不应该像现在一样将源文件夹中的每个文件设置为入口点!

这是您的配置的(希望)固定版本:

var path = require('path');
var webpack = require("webpack");
var jsDestPath = 'src/main/webapp/resources/build/js/modules';
var cssPath = '';

var webpackOptions = {
cache: true,
watch: false,
entry: path.join(__dirname, "src/main/webapp/resources/js/modules/a.js"),
output: {
path: __dirname + "/" + jsDestPath,
filename: '[name].js',
},
module: {
loaders: [{
test: /.(?:jsx|js)$/,
exclude: /node_modules/,
loader: 'babel-loader?blacklist=useStrict'
},
// }, {
// test: /\.json/,
// exclude: /node_modules/,
// loader: 'json-loader'
// }, {
// test: /\.css$/,
// exclude: /node_modules/,
// loader: "style!css"
// }, {
// test: /\.scss$/,
// exclude: /node_modules/,
// loader: 'style-loader!css-loader!sass-loader!autoprefixer-loader?browsers=last 10 version'
// }, {
// test: /\.(png|jpg)$/,
// exclude: /node_modules/,
// loader: 'url-loader?limit=999999'
// }, {
{
test: /vendor\/.+\.(jsx|js)$/,
exclude: /node_modules/,
loader: 'imports?jQuery=jquery,$=jquery,this=>window'
}
]
},
resolve: {
root: [path.join(__dirname, "bower_components")],
extensions: ['', '.js', '.json', '.jsx', '.css']
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
// new webpack.optimize.UglifyJsPlugin({
// compress: {
// warnings: false
// }
// })
],
devServer: {
contentBase: ".",
noInfo: true, // --no-info option
hot: true,
inline: true
}
};



module.exports = webpackOptions;

* 这是一个概括 - 您可以有多个入口点,但它们需要独立 - 它们绝对不能相互导入。`

关于javascript - WebPack 和 Require,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39592136/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com