example.js使用bundle-loader按需加载 example.jsdocument.getElementById('btn').onclick = function() { require("bundle-loader!./file.js")(function(fileJsExports) { console.log(fileJsExports); });} bundle-loader返回一个方法,将回调函数传参。参数是file.js导出的对象代码中,点击按钮后才会加载file.js模块。