gpt4 book ai didi

node.js - 如何访问这个封装的值?

转载 作者:太空宇宙 更新时间:2023-11-04 01:12:33 26 4
gpt4 key购买 nike

我正在使用属于模块的方法作为服务器函数中的回调。

通过这个方法,我需要访问封装在模块中的数组 (MyArray)。

我无法使用this,因为它引用原始函数(在我的示例中为someFunction)。但我不明白为什么在这种情况下我不能使用 that: this 功能(that is undefined)。

MyModule.js

module.exports = {
MyArray: [],
that: this,
test: functiion() {
//How to access MyArray ?
}
};

server.js

var MyModule = require('MyModule');
someFunction(MyModule.test);

最佳答案

this.MyArray 有效。

MyModule.test 绑定(bind)到等于 module.exports

this

您也可以只在模块内使用局部变量。

MyModule.js

var MyArray = [];

module.exports = {
test: function() {
// MyArray is accessible
}
};

您还可以使用module.exports.MyArray

关于node.js - 如何访问这个封装的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15169708/

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