来自 nodejs 的示例代码:
来自 JS1.js 的代码:
var js2=require("../../util");
var dataName="Billy";
function hello1(){
js2.hello2("message");
}
来自 JS3.js 的代码:
var js2=require("../../util");
var dataName="Tom";
function hello3(){
js2.hello2("message");
}
来自 JS2.js 的代码:
exports.hello2=hello2;
function hello2(arg1){
console.log(arg1);
//Here I need the data in global variable "dataName" of file JS1.js or JS3.js
}
我需要访问调用者 js 文件的全局变量。