struggleForLife

Sometimes your whole life boils down to one insane move.

导航

2020年2月24日 #

基于ES6封装发布订阅模式

摘要: 代码如下: 封装自定义:subscribe.js let _subscribe = (function () { // Sub 发布订阅类 class Sub { constructor () { // 创建一个事件池 用来存储后期需要执行的方法 this.$pond = []; } // 向事件池 阅读全文

posted @ 2020-02-24 11:59 struggleForLife 阅读(677) 评论(0) 推荐(0) 编辑