在 ES6 module 中,基本类型变量都是引用关系,所以很容易修改变量值但是在 Node module 中行不通,该如何处理?var mod = require('./a.js')mod.count();mod.count();mod.count();
console.log(mod.a); // 10a.jsvar a = 10;module.exports = {
a,
count() {a++}
}Node module 中如何实现重定向导出?ES6 moduleexport * from './fileName.js'
添加回答
举报
0/150
提交
取消