第一个a.js:
var x ;exports.x = x;console.log(x)// 123
第二个b.js:
var a = require('./a.js');setTimeout(function () {console.log(a.x)},1000);
运行b.js,输出undefined,这是为何?不是已经暴露过了吗?
jeck猫
慕仙森
相关分类