webpack不能要求变量,依赖的请求是表达式

前端之家收集整理的这篇文章主要介绍了webpack不能要求变量,依赖的请求是表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何要求变量.
我可以这样工作
var config={

    example1 : require("example1/main.js"),example2 : require("example2/main.js")

}

当我用的时候

var modules=["example1","example2"]

_.each(modules,function(module){

    require(module+"/main.js")

})

错误是“无法找到模块’example1 / main.js”

我遇到了类似的问题并通过指定完整路径来解决它,例如,在您的情况下:
var modules=["example1","example2"];

_.each(modules,function(module){

  require("./"+module+"/main.js");

});

也许this example可以帮到你.

此类错误context有关.

原文链接:https://www.f2er.com/javaschema/282014.html

猜你在找的设计模式相关文章