如何处理Node.js中的循环依赖关系
a.js
var ClassB = require("./b");var ClassA = function() { this.thing = new ClassB(); this.property = 5;}var a = new ClassA();module.exports = a;
b.js
var a = require("./a");var ClassB = function() {}ClassB.prototype.doSomethingLater() { util.log(a.property);}module.exports = ClassB;
阿波罗的战车
慕森卡
MYYA
相关分类