gpt4 book ai didi

jshint - 如何解决 "module is not defined."

转载 作者:行者123 更新时间:2023-12-01 12:41:03 27 4
gpt4 key购买 nike

我有一个在其他地方使用的模块,但我不断收到“模块未定义”。如果我使用 global 指令,它会起作用,但这意味着该模块是在其他地方定义的。有没有办法解决这个问题?谢谢

module.js

/* exported module */
var module = (function($){
...
return {method: method};
})($);
$(module.method);

foo.js
var foo = function() {
function bar() {
module.method();
}
};
$(foo);

最佳答案

在我的情况下没有工作,因此,我注入(inject)了下一段代码:

/* globals module: false */

关于jshint - 如何解决 "module is not defined.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24680334/

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