gpt4 book ai didi

node.js - 在属于另一个模块的模块中使用代码

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

我想在模块“B”中使用模块“A”中的一些代码,但我不知道该怎么做。

我想做的事:

a.js

module.exports = {
hello : function(){
alert('helo world');
}
};

b.js

module.exports = {
start : function(){
alert(A.hello());
}
};

主要.js

A = require("a");
B = require("b");
B.start();

但我得到“A 未定义”。

谢谢!

最佳答案

Node 模块都有自己的作用域,所以你也需要在 b.jsrequire A

var A = require('a');
module.exports = {
start : function(){
alert(A.hello());
}
};

关于node.js - 在属于另一个模块的模块中使用代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14228514/

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