在 NodeJS 中,如果我们使用this
关键字定义函数,它就会暴露出来。
例如:
// module.js
this.func1 = function () {
console.log('func1');
}
然后,如果您require('module')
可以访问 func1。
我想知道它有什么不同module.exports
?
谢谢
在 NodeJS 中,如果我们使用this
关键字定义函数,它就会暴露出来。
例如:
// module.js
this.func1 = function () {
console.log('func1');
}
然后,如果您require('module')
可以访问 func1。
我想知道它有什么不同module.exports
?
谢谢