gpt4 book ai didi

javascript - require-handlebars-plugin 构建错误 - ReferenceError : _ is not defined

转载 作者:搜寻专家 更新时间:2023-11-01 04:32:53 25 4
gpt4 key购买 nike

我正在尝试构建一个 requirejs/backbone/handlebars 项目,当我尝试运行 app.build.js 时似乎遇到了这个错误:

Tracing dependencies for: main
ReferenceError: _ is not defined
In module tree:
main
cs
hbs
underscore

ReferenceError: _ is not defined
In module tree:
main
cs
hbs
underscore

at Object.eval (eval at <anonymous> (/usr/local/share/npm/lib/node_modules/requirejs/bin/r.js:13718:64))

该应用程序在未构建时完美运行且没有错误。如果重要的话,该项目将 Backbone 和下划线作为 requirejs 垫片包含在内。我会发布整个来源,但它是一个内部系统,所以我不能。如果需要更多信息,我可以发布。

谢谢!

最佳答案

我遇到了同样的问题,这对我有用 -

从 RequireJS shim 中删除下划线。

然后在 underscore.js 文件的底部,就在右括号和调用语句的上方,添加一个 define 语句以正确导出 _

  define(function(){
return _;
});

}).call(this);

关于javascript - require-handlebars-plugin 构建错误 - ReferenceError : _ is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13908391/

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