关于javascript:发布订阅模式

33次阅读

共计 398 个字符,预计需要花费 1 分钟才能阅读完成。

公布订阅模式
class EventEmitter {constructor() {this.cache = {}
  }
  
  // 注册事件
  $on(eventType, fn) {
    // 增加事件
    this.cache[eventType] = this.cache[eventType] || [];
    this.cache[eventType].push(fn);
  }
  
  // 触发事件
  $emit(eventType) {if(this.cache[eventType]) {this.cache[eventType].forEach(handle=>{handle();
        })
    }
  }
}

// 测试

let eventEmitter = new EventEmitter();
function f(){console.log("Jason");
}
eventEmitter.$on('click' f);
eventEmitter.$emit('click');        // Jason

正文完
 0