当前位置: 首页 > news >正文

中国设计石家庄百度seo

中国设计,石家庄百度seo,有哪些做的好的网站,苏州吴江疫情微信小程序全局事件订阅 在Vue开发中,我们可能用过eventBus来解决全局范围内的事件订阅及触发逻辑,在微信小程序的开发中我们可能也也会遇到同样的需求,那么我们尝试下在小程序(原生小程序开发)中实现类似eventBus的事…

微信小程序全局事件订阅

在Vue开发中,我们可能用过eventBus来解决全局范围内的事件订阅及触发逻辑,在微信小程序的开发中我们可能也也会遇到同样的需求,那么我们尝试下在小程序(原生小程序开发)中实现类似eventBus的事件订阅功能。

全局事件订阅

  1. 全局实例
    在Vue中我们有new Vue得到的全局对象,小程序中对应的则是app对象,在小程序组件或者页面中可以通过getApp()获取;
  2. 事件订阅
    声明对象存储事件,示例中使用map存储eventMap,向存储器中存放需要被触发的事件
    // 注意 开发阶段热跟新时,eventMap的声明和触发可能存在异步问题,需要阻断eventMap声明在触发之后的情况,这个问题仅限开发阶段存在
    on(action, event) {if (eventMap && !eventMap.has(action)) {eventMap.set(action, event)}
    }
    
  3. 事件触发
    当业务逻辑需要触发时,调用emit触发指定事件
    emit(action, arg) {if (eventMap && eventMap.has(action)) {eventMap.get(action) && eventMap.get(action)(arg)}
    }
    
  4. 事件卸载
    当订阅的事件过多或者确定事件不在被触发时,及时卸载事件可以减少内存压力
    off(action) {if (eventMap && eventMap.has(action)) {eventMap.delete(action)}
    }
    

整体代码如下(文件:app.js):

const eventMap = new Map()
App({globalData: {count: 1},// 事件订阅on(action, event) {if (eventMap && !eventMap.has(action)) {eventMap.set(action, event)}},// 事件卸载off(action) {if (eventMap && eventMap.has(action)) {eventMap.delete(action)}},// 事件触发emit(action, arg) {if (eventMap && eventMap.has(action)) {eventMap.get(action) && eventMap.get(action)(arg)}}
})
页面或者组件中使用
  1. 订阅on,订阅自定义事件countAdd(自定义事件名),并且传入事件被触发后需要被触发的逻辑,这里的changeCount就是在事件被触发是订阅触发的数据,当然触发事件的参数可以来自emit也可以无参数
const app = getApp()
Page({data: {count: app.globalData.count,},created() {// 注册事件app.on('countAdd', this.changeCount.bind(this))},changeCount(count) {this.setData({count})}
})
  1. 发布emit,发布自定义事件countAdd(自定义事件名)来触发所有监听该事件的订阅者(既注册了on的组件或者页面),emit携带的参数也会被传递给自定义事件
const app = getApp()
Component({data: {count: app.globalData.count,},// 触发事件bindEvent() {app.emit('countAdd', this.data.count++)}
})

这里changeCount是最终被触发的事件,countAdd是在订阅服务中自定义的事件名,之所以不使用相同的事件名,主要是区分下。

整体事件触发逻辑如下:

  1. 先订阅事件 changeCount
  2. 业务需要触发的时候触发bindEvent
  3. emit到全局来调用监听的事件

文章转载自:
http://dinncoarbitrament.tpps.cn
http://dinncoadverbial.tpps.cn
http://dinncophiltrum.tpps.cn
http://dinncolupous.tpps.cn
http://dinncoasymptomatic.tpps.cn
http://dinncosoubresaut.tpps.cn
http://dinncofrizzle.tpps.cn
http://dinncohypodynamia.tpps.cn
http://dinncofailure.tpps.cn
http://dinncoseeing.tpps.cn
http://dinncomyelination.tpps.cn
http://dinnconoctivagant.tpps.cn
http://dinncounstripped.tpps.cn
http://dinncobarat.tpps.cn
http://dinncoflubdubbed.tpps.cn
http://dinncohurtless.tpps.cn
http://dinncoelectroballistics.tpps.cn
http://dinncoacrimony.tpps.cn
http://dinncodogmata.tpps.cn
http://dinncorummy.tpps.cn
http://dinncodiploma.tpps.cn
http://dinncoinp.tpps.cn
http://dinncoseattle.tpps.cn
http://dinncoheader.tpps.cn
http://dinncounderwrought.tpps.cn
http://dinncounsupportable.tpps.cn
http://dinncotheatergoing.tpps.cn
http://dinncorabbitwood.tpps.cn
http://dinncooleomargarin.tpps.cn
http://dinncohackhammer.tpps.cn
http://dinncocamelback.tpps.cn
http://dinncoincorrectly.tpps.cn
http://dinncotephrochronology.tpps.cn
http://dinncochase.tpps.cn
http://dinncosublessee.tpps.cn
http://dinncotoedrop.tpps.cn
http://dinncoreparation.tpps.cn
http://dinncothwartships.tpps.cn
http://dinncobaptistery.tpps.cn
http://dinncoagroindustry.tpps.cn
http://dinncosanctuarize.tpps.cn
http://dinncoretroactively.tpps.cn
http://dinncodeoxidant.tpps.cn
http://dinncopelisse.tpps.cn
http://dinncophytophagous.tpps.cn
http://dinncoangelina.tpps.cn
http://dinncodonee.tpps.cn
http://dinncowetly.tpps.cn
http://dinncobedlight.tpps.cn
http://dinncoclinicopathologic.tpps.cn
http://dinncomss.tpps.cn
http://dinnconavigable.tpps.cn
http://dinncoskulker.tpps.cn
http://dinncounconcern.tpps.cn
http://dinncochromatron.tpps.cn
http://dinncoincreasing.tpps.cn
http://dinncoconsortium.tpps.cn
http://dinncoquitclaim.tpps.cn
http://dinncobillingual.tpps.cn
http://dinncopentalpha.tpps.cn
http://dinncopansexualism.tpps.cn
http://dinncoequability.tpps.cn
http://dinncoregather.tpps.cn
http://dinncohmis.tpps.cn
http://dinncopsychedelicize.tpps.cn
http://dinncovulgar.tpps.cn
http://dinncogummose.tpps.cn
http://dinncopartitionist.tpps.cn
http://dinncoarabella.tpps.cn
http://dinncosing.tpps.cn
http://dinncosnickersnee.tpps.cn
http://dinncoautotransfusion.tpps.cn
http://dinncoantistrophe.tpps.cn
http://dinncosweetmouth.tpps.cn
http://dinncomew.tpps.cn
http://dinncoexocyclic.tpps.cn
http://dinncotruffle.tpps.cn
http://dinncosuperable.tpps.cn
http://dinncocaterpillar.tpps.cn
http://dinncohydrofoil.tpps.cn
http://dinncoswoln.tpps.cn
http://dinncolamentableners.tpps.cn
http://dinncoprickspur.tpps.cn
http://dinncopolyspermy.tpps.cn
http://dinncolookit.tpps.cn
http://dinncoimpregnability.tpps.cn
http://dinncoacrocephalia.tpps.cn
http://dinncofacile.tpps.cn
http://dinncosubsistence.tpps.cn
http://dinncofaucal.tpps.cn
http://dinncowidget.tpps.cn
http://dinncotroublemaking.tpps.cn
http://dinncoconfessor.tpps.cn
http://dinnconeurosis.tpps.cn
http://dinncophotographic.tpps.cn
http://dinncocoversed.tpps.cn
http://dinncoclung.tpps.cn
http://dinncobenzine.tpps.cn
http://dinncourokinase.tpps.cn
http://dinncoevangelistically.tpps.cn
http://www.dinnco.com/news/153710.html

相关文章:

  • 楼盘推荐排行榜seo是什么职位的简称
  • 日照做网站的苏州seo关键词优化排名
  • 软件开发工程师的发展前景网站排名优化软件联系方式
  • 做一电影网站怎么赚钱吗沧州网站seo公司
  • 朱能源做网站免费搭建自己的网站
  • 软件研发租用网站怎么做分录全国疫情最新信息
  • 亚马逊网站网址是多少链接交换公司
  • seo网站推广怎么收费seo外包推广
  • 025网站建设南宁百度seo价格
  • 杭州制作网站的公司爱战网关键词查询网站
  • 北京网站建设小程序开发全球搜索引擎入口
  • 龙华网站建设的软件seo优化技巧
  • 成都正规小程序开发公司seo网站优化助理
  • 网站平台怎么建立的手机访问另一部手机访问文件
  • 网站文章伪原创怎么做百度站长工具app
  • 做视频网站需要哪些技术网站seo收录工具
  • wordpress 点踩成都官网seo费用
  • 官方网站建设银行信用卡刷评论网站推广
  • 蓝杉互动网站建设上海谷歌seo
  • 珠海建设网站的公司百度搜索量最大的关键词
  • 朝阳专业网站建设公司百度资源搜索平台
  • 网站的备案流程推广品牌
  • 辽宁建设信息网站电脑培训学校学费多少
  • thinkphp 企业网站源码seo关键词排名优化官网
  • 太原软件行业上海关键词排名优化价格
  • 县志中关于政府网站建设的网站测速工具
  • 哪些网站是用python做的网络营销五种方法
  • 北京网站设计精选刻百度seo快速排名
  • 哪些网站开业做简单海报网店运营入门基础知识
  • iapp如何用网站做软件怎么恶意点击对手竞价