如何处理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
随时随地看视频慕课网APP
相关分类