一、写在前面
订阅发布模式在开发中用到的设计模式中还是比较常见的,下面将手写一些订阅发布模式。
二、代码
class EventEmmiter {
constructor() {
this.cache = {
}
}
on(name, func) {
if (this.cache[name]) {
this.cache[name].
一、写在前面
订阅发布模式在开发中用到的设计模式中还是比较常见的,下面将手写一些订阅发布模式。
二、代码
class EventEmmiter {
constructor() {
this.cache = {
}
}
on(name, func) {
if (this.cache[name]) {
this.cache[name].