我有一个模块test1.js,我可以从test2.js中获取它,现在我想设置一些test1.js可以使用的全局变量信息,这是一个好方法吗?谢谢,
// test1.js
exports.foo = function (jcontent, cb) {
console.log('foo', this.info)
}
这是test2.js
// test2.js
var test1 = require('./test2.js')
// set up a value in info inside test1? how?
test1.foo()