- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Webpack 的新手。
我有一个我正在导出并尝试在我的 index.html 上实例化的类。
(这是原始线程的更新版本)
"use strict";
import {TimelineModule} from "./modules/timeline.module.js";
import {NavigationModule} from './modules/navigation.module.js';
import {FiltersModule} from "./modules/filters.module.js";
import VGLogger from "./modules/logger.module.js";
import {DataSourcesModule} from "./modules/data-sources.module.js";
import {EventsModule} from "./modules/events.module.js";
export default class extends EventsModule {
constructor(params = null) {
super();
this.gridTimeline = null;
this.gridNavigation = null;
this.gridFilters = null;
this.dataSources = new DataSourcesModule();
this.uniqueID = (((1+Math.random())*0x10000)|0).toString(16).substring(1);
this.settings.gridSettings = {
...this.settings.gridSettings,
...params
};
VGLogger.log(`New VanillaGrid Instance Created!`, `log`);
}
create(gridDOMIdentifier) {
this.#setWrapper(gridDOMIdentifier);
this.#renderNavigation();
this.#renderFilters();
this.#renderTimeline();
this.initEvents();
}
#renderTimeline() {
this.gridTimeline = new TimelineModule(this.gridWrapper);
}
#renderNavigation() {
this.gridNavigation = new NavigationModule(this.gridWrapper, this.getSettingValue('navigation'));
}
#renderFilters() {
this.gridFilters = new FiltersModule(this.gridWrapper);
}
#setWrapper(wrapper) {
this.gridWrapper = document.querySelector(wrapper);
const wrapperClass = this.getSettingValue('wrapperClass');
this.gridWrapper.classList.add(`${wrapperClass}`);
this.gridWrapper.classList.add(`vg-${this.uniqueID}`);
}
}
我的 library.js 文件如下所示:
const VanillaGrid = require('./index.js').default;
module.exports = VanillaGrid;
// Based on this post -> https://www.seancdavis.com/blog/export-es6-class-globally-webpack/
我的配置文件如下所示:
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
output: {
path: path.resolve(__dirname, 'dist'),
filename: "bundle.js",
library: "VanillaGrid",
libraryTarget: "var"
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true,
port: 9000
},
entry: {
main: ['./src/library.js'],
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'sample/index.html'
}),
],
module: {
rules: [
{
test: /\.m?js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env'],
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-syntax-class-properties',
'@babel/plugin-proposal-private-methods'
]
}
}
},
{
test: /\.s[ac]ss$/i,
use: [
"style-loader",
"css-loader",
"sass-loader",
],
},
],
},
};
和 .babelrc:
{
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env",
{
"loose": true
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-syntax-class-properties"
]
}
我的 index.html 看起来像这样:
<html>
<head>
<title>Samples</title>
<script defer src="bundle.js"></script>
</head>
<body>
</body>
</html>
事情是 VanillaGrid 在我的 index.html 上未定义,无法弄清楚原因。
// startup
/******/ // Load entry module and return exports
/******/ // This entry module is referenced by other modules so it can't be inlined
/******/ __webpack_require__("./src/library.js");
/******/ var __webpack_exports__ = __webpack_require__("./node_modules/webpack-dev-server/client/index.js?http://localhost:9000");
/******/ VanillaGrid = __webpack_exports__;
它正在将这个似乎是 Webpack 开发服务器一部分的其他文件分配给我的插件的全局变量。
最佳答案
我已经尝试过你的代码的这个简化版本,它工作得很好:
"use strict";
export default class {
constructor(params = null) {
this.gridTimeline = null;
this.gridNavigation = null;
this.gridFilters = null;
this.uniqueID = (((1+Math.random())*0x10000)|0).toString(16).substring(1);
}
create(gridDOMIdentifier) {
this.#setWrapper(gridDOMIdentifier);
this.#renderNavigation();
this.#renderFilters();
this.#renderTimeline();
this.initEvents();
}
#renderTimeline() {
}
#renderNavigation() {
}
#renderFilters() {
}
#setWrapper(wrapper) {
}
}
package.json:
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-private-methods": "^7.13.0",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.13.15",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.4",
"html-webpack-plugin": "^5.3.1",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
}
这是带有一些测试代码的输出:
// Beginning of webpack output
var VanillaGrid;
(() => {
var t = {
352: (t, e, n) => {
"use strict";
function i(t, e) {
for (var n = 0; n < e.length; n++) {
var i = e[n];
i.enumerable = i.enumerable || !1,
i.configurable = !0,
"value" in i && (i.writable = !0),
Object.defineProperty(t, i.key, i)
}
}
function r(t, e, n) {
if (!e.has(t))
throw new TypeError("attempted to get private field on non-instance");
return n
}
n.d(e, {
Z: () => u
});
var a = new WeakSet,
o = new WeakSet,
s = new WeakSet,
l = new WeakSet,
u = function () {
function t() {
(function (t, e) {
if (!(t instanceof e))
throw new TypeError("Cannot call a class as a function")
})(this, t),
l.add(this),
s.add(this),
o.add(this),
a.add(this),
this.gridTimeline = null,
this.gridNavigation = null,
this.gridFilters = null,
this.uniqueID = (65536 * (1 + Math.random()) | 0).toString(16).substring(1)
}
var e,
n;
return e = t,
(n = [{
key: "create",
value: function (t) {
r(this, l, d).call(this, t),
r(this, o, h).call(this),
r(this, s, f).call(this),
r(this, a, c).call(this),
this.initEvents()
}
}
]) && i(e.prototype, n),
t
}
();
function c() {}
function h() {}
function f() {}
function d(t) {}
},
509: (t, e, n) => {
var i = n(352).Z;
t.exports = i
}
},
e = {};
function n(i) {
var r = e[i];
if (void 0 !== r)
return r.exports;
var a = e[i] = {
exports: {}
};
return t[i](a, a.exports, n),
a.exports
}
n.d = (t, e) => {
for (var i in e)
n.o(e, i) && !n.o(t, i) && Object.defineProperty(t, i, {
enumerable: !0,
get: e[i]
})
},
n.o = (t, e) => Object.prototype.hasOwnProperty.call(t, e);
var i = n(509);
VanillaGrid = i
})();
// End of webpack output
// Beginning of the test code
const grid = new VanillaGrid;
console.log(grid.uniqueID);
script
标签,尝试添加
scriptLoading: "blocking"
在
HtmlWebpackPlugin
配置以删除
defer
来自生成的
script
的属性标签。
bundle.js
上添加详细信息。输出以及如何尝试使用生成的代码。
关于javascript - Webpack:在 index.html 上未定义导出默认类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66712919/
像这样的webpack.config.js文件可以导出多个配置: module.exports = [{entry: 'a.js'}, {entry: 'b.js'}]; 当我调用 webpack 时
我正在尝试在 webpack 配置文件中设置 browserslist,但不知道如何执行此操作。 在 webpack.config 中尝试了以下内容: 'use strict'; module.exp
If you are using webpack v5 or above you do not need to install this plugin. Webpack v5 comes with t
使用webpack 2时,为什么需要以相反的顺序为“use:”键添加加载程序?为什么不从头到尾,从左到右列出每个加载器?有什么理由吗? 最佳答案 看起来像是一种约定,它很容易成为匹配执行顺序和源顺序的
当我 web pack 的时候 --watch --config webpack.production.config.js --mode production 我有这个错误: ERROR in Typ
我有一个使用 Twig 进行模板的项目。其中的所有数据都是静态的,但为了清楚起见,我已经在其他 Twig 文件中分离出部分页面(否则一个文件中会有数百行标记)。 我使用 webpack 作为构建工具,
我使用 cli 创建了一个 vue.js 项目。我使用了 webpack 模板。我已经为此工作了几天,并且工作顺利。 现在我需要向项目添加一个 npm 包。这个包建议我对 webpack 配置进行一些
我正在使用运行“node_modules/.bin/webpack”,但我知道可以配置路径以便您只需键入“webpack ”。不过,我找不到方法。 :/ 最佳答案 如果你安装一个包 globally
我正在服务器渲染我的 react 应用程序,如下所示: export default ({ clientStats }: { clientStats: any }) => async (req: Re
我试过包含一个通配符,它破坏了构建;和多个 favicon字段条目,它只使用最后一个输入。我如何支持使用此插件包含多个网站图标文件? 最佳答案 您还需要包括 favicons-webpack-pl
我正在使用 webpack 编译我的 Reactjs 文件。在我的项目中,我需要对后端进行 API 调用。 现在我有 3 个环境,分别是本地环境、开发环境和生产环境。 所以我有一个constants.
我正在将所有文件构建到“dist”文件夹中。 Dist ->index.html ->bundle.js 我已将配置设置为在我需要的特定端口上运行。 { entry: './src/ind
我想使用由 Closure Compiler 使用 Webpack 生成的 SourceMap,但我不知道该怎么做。 这是我的 webpack 配置: const ClosureCompiler =
有没有办法接收当前文件路径,就像在 requirejs 中一样? define(['module'], function (module) { console.log(module.uri)
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我是 webpack 的初学者用户。我想写一个webpack.config.js建立我的项目。但是有什么不对的地方! 这是我的 package.json (已安装所有依赖项): { "name":
我从这里开始:https://github.com/vuejs/vue-cli 我不确定它是否使用 Webpack。 包含/使用 webpack 的项目将包含哪些文件? 最佳答案 如果您的项目正在使用
Webpack,你将要了我的命。 html-webpack-plugin 在生产中运行良好。 'dist' 文件夹加载了我的 html 模板和插入的包。好酷。 但是,webpack-dev-serve
想象一下我有一个这样的项目: /moduleA/src... /moduleB/src... /mainApp/src... 每个模块和主应用程序都有一个单独的 webpack.config。模块是库
根据 webpack 文档,我尝试将 UglifyJSPlugin 添加到 webpack 4 项目中,但我仍然在我的包中看到死代码甚至注释,这让我认为我的 uglify 插件配置没有被使用。 Lin
我是一名优秀的程序员,十分优秀!