我只是在使用webpack,webpack-dev-server和热模块重新加载来构建我的开发环境。我希望最终能够将反应组件添加到主要静态站点(这样我就可以获得具有可抓取html的SEO优势。我已经决定不会使用Gulp或Grunt,而是我只会使用使用npm脚本为开发,测试,构建和发布运行shell命令。
回到这个问题的标题/主题。我无法让浏览器读取webpack生成的bundle.js文件。我已将我的库煮到最简单的index.html
和index.js
,您可以在下面看到。
输出到控制台的错误是:
Uncaught ReferenceError: handleClick is not defined at HTMLButtonElement.onclick ((index):7)
发出的bundle.js
文件必须是错误所在的位置:
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ (function(module, exports) {
const handleClick = () => {
document.getElementById("demo").innerHTML = "Hello World!";
};
/***/ })
/******/ ]);
我的index.html
文件:
<html>
<body>
<p id="demo">Simple JS demo</p>
<script src="bundle.js"></script>
<button type="button" onclick='handleClick()'>Click Me!</button>
</body>
</html>
我的index.js
文件:
const handleClick = () => {
document.getElementById("demo").innerHTML = "Hello World!"
}
我的webpack.config.js
文件:
const config = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: '/home/andrew/code/my-site/public',
},
module: {
rules: [
{
test: /\.(js)$/,
exclude: /(node_modules)/,
use: {
loader: 'babel-loader',
}
}
]
}
};
module.exports = config;
我的npm start
脚本:
"scripts": {
"start": "webpack-dev-server --content-base public/"
}
我已安装全局webpack,因此我可以使用bundle.js
命令在public/
文件夹中生成webpack
文件,但npm start
会发出bundle.js
文件反正。
我必须做出一些简单的错误。
解决方案来自@Marek Takac:
这里的错误是handleClick()
函数的范围不是全局的。这可以通过从index.js
文件
module.exports = {
handleClick: handleClick
}
并使用webpack的output.library and output.libraryTarget选项来定义全局变量。
另见webpack&#39; exports-loader
答案 0 :(得分:0)
您的webpack捆绑包似乎没问题。问题出在您的代码中。 handleClick
函数未定义,因为您是从全局环境调用它。您基本上尝试调用window.hanldeClick
,但您在完全不同的范围内定义了handleClick
函数。 Webpack将函数置于单独的闭包中以防止污染您的全局环境。我建议你阅读一些webpack / react教程,指南和文档。但是,如果您只想测试您的设置是否正常,则可以通过index.js
文件将某些内容记录到控制台。或者,如果您将const handleClick
更改为window.handleClick
,我认为您的代码应该有效(尽管我从未尝试过类似的内容)。