观察者模式(订阅-发布者模式)
摘要:
class Observer{ constructor(){ this._dataStore = {}; } /** * @author web得胜 * @param {String} type 事件类型 必填 * @param {Function} fn 事件处理函数 必填 * @param {Object} ctx 函数的执行上下文 选填 * @desc 注... 阅读全文
posted @ 2019-05-31 16:49 web得胜 阅读(175) 评论(0) 推荐(2) 编辑