码迷,mamicode.com
首页 > 其他好文 > 详细

发布订阅模式

时间:2019-04-05 19:45:43      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:pre   arguments   nod   slice   flag   func   订阅   cti   ice   

//node事件模块
function Event () {
this.cacheEvent = {}
}
Event.prototype.on = function (type, handle) {
if (!this.cacheEvent[type]){
this.cacheEvent[type] = [handle]
} else {
this.cacheEvent[type].push(handle)
}
}
Event.prototype.emmit = function () {
const type = arguments[0]
const arg = Array.prototype.slice.call(arguments, 1)
if (this.cacheEvent[type]) {
for(let i = 0; i < this.cacheEvent[type].length; i++){
this.cacheEvent[type][i](...arg)
if (this.cacheEvent[type][i].flag){
this.cacheEvent[type].splice(i,1)
}
}
}
}
Event.prototype.remove = function (type, handle) {
this.cacheEvent[type] = this.cacheEvent[type].filter(item => {
return item !== handle
})
}
Event.prototype.empty = function (type) {
this.cacheEvent[type] = []
}
Event.prototype.once = function (type, handle) {
handle.flag = true
if (!this.cacheEvent[type]){
this.cacheEvent[type] = [handle]
} else {
this.cacheEvent[type].push(handle)
}
}

发布订阅模式

标签:pre   arguments   nod   slice   flag   func   订阅   cti   ice   

原文地址:https://www.cnblogs.com/CoderZX/p/10659380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!