Neo Lee

Results 1 comments of Neo Lee

> 楼主,你好,关于CommonJS ,有点疑问想请教你一下: > > 先看代码: > > ```js > /*************** child.js**********************/ > let foo = 1 > > setTimeout(()=>{ > foo=2; > exports.foo= foo > },1000) > exports.foo=foo >...