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

成都网站建设 四川冠辰网站建设wordpress更换默认

成都网站建设 四川冠辰网站建设,wordpress更换默认,权威发布新闻的含义,wap网站建设方案 pdf前言 我的任督二脉终于被打通了#xff0c;现在该你了 区别 观察者模式 就2个角色#xff1a;观察者和被观察者#xff08;重要#xff09;明确知道状态源#xff0c;明确知道对方是谁一对多关系 发布订阅模式 有3个角色#xff1a;发布者#xff0c;订阅者和发布订阅…前言 我的任督二脉终于被打通了现在该你了 区别 观察者模式 就2个角色观察者和被观察者重要明确知道状态源明确知道对方是谁一对多关系 发布订阅模式 有3个角色发布者订阅者和发布订阅中心重要发布者和订阅者不知对方存在多对多关系 观察者模式 观察者盯着被观察者看被观察者将有权限添加删除和通知观察者这是被观察者至少需要的三个基本方法只要被观察者 发动 通知观察者方法时观察者列表里的所有观察者就可以接收到消息 一实现 1. 被观察者有一个观察者列表可以添加移除和通知观察者 class Subject {constructor(){// 定义一个观察者列表用来存放观察者们this.observerList [];}// 添加观察者 addObserver(observer){this.observerList.push(observer);}// 移除观察者removeObserver(observer){this.observerList.filter(o o.name ! observer.name)}// 通知观察者notifyObserver(message){// 我理解的 notified 是观察者自己定义的如何通知自己// 每个观察者的notified内部实现可能是不一样的this.observerList.forEach(o o.notified(message))}}2. 观察者可以申请加入被观察者的列表自定义通知方法 class Observer {constructor(name, subject){this.name name;if(subject){// 如果构建时就有了被观察者(subject)// 则申请让被观察者将自己加入列表subject.addObserver(this)}}notified(message){// TODO 观察者拿到订阅到的消息后要做的事console.log(this.name, 拿到了消息,message)}}3. 使用 // 生成一个被观察者const subject new Subject();// 生成一个自带subject的观察者const A_observer new Observer(A,subject);// 通知subject.notifyObserver(咳咳); // A拿到了消息咳咳// 生成一个没有观察对象subject的观察者const B_observer new Observer(B,null);// 申请观察subjectsubject.addObserver(B_observer); // 移除// subject.removeObserver(A_observer); // 通知subject.notifyObserver(哈哈哈) // A拿到了消息哈哈哈 // B拿到了消息哈哈哈 // 当然也可以写一个新的class Observer来实现不同的notified参考https://juejin.cn/post/6978728619782701087 二升级版实现 1. 被观察者 class newSubject {constructor(){this.observerList [];}// 移除观察者removeObserver(observer){this.observerList.filter(o o.name ! observer.name)} __________修改___________________________________________________________________// 添加观察者addObserver(name, func){this.observerList.push({ name:name, callback:func});}// 通知观察者notifyObserver(message){// 我理解的 notified 是观察者自己定义的一个回调函数// 即被观察者(observer)给观察者(subject)一个notified函数告诉subject有消息就用这个函数通知自己// 每个观察者的notified内部实现可能是不一样的// this.observerList.forEach(o o.notified(message))// 通过对象的解构赋值这样就可以不用规定死observer内部通知方法的名称为notified更加灵活this.observerList.forEach(({name,callback}) callback(message))} }2. 使用 const new_subject new newSubject();//添加观察者C时将new_subject的观察者列表修改为统一的 { name, callback } 格式new_subject.addObserver(C,(message){// notifiedconsole.log(hello, C, message)})//通知new_subject.notify(‘升级啦’)//‘hello, C升级啦’参考http://dennisgo.cn/Articles/DesignPatterns/PubSub.html 一旦调用了subject.notify , 所有列表内的观察者都会收到通知而且收到的是同样的消息 发布订阅模式 如之前所说发布订阅模式有3个角色发布者订阅者和发布订阅中心发布订阅核心是基于发布订阅中心来建立联系发布者无需关心订阅者有哪些订阅者也无需关心有哪些发布者可以表达对一个或多个主题的兴趣只接收感兴趣的消息 让我们来想象一下邮件系统你可以作为订阅者订阅某个网站的通知邮件系统在其中充当发布订阅中心的角色而发布者则是你订阅的网站。 整个链路是从你的订阅开始你的订阅动作是在某个你想订阅的网站填入自己的邮箱(在主题中添加订阅者列表)并在邮箱内记录这个网站信息(添加主题)后续当网站有内容更新时邮件系统会及时接收到并向你发送邮件。 ————————————————引用自掘金 https://juejin.cn/post/6978728619782701087 一实现 1. 发布订阅中心 记住订阅是在为主题添加订阅者发布是在执行订阅者的通知方法 // 发布订阅中心 class PubSub {constructor() {this.sublist {}; //为什么观察者模式要用数组这里却要用对象想想平时在设置变量时一对多的关系一般用数组来表示而多对多的关系一般都用//数组对象来表示是不是//订阅列表每个主题对应对象中的一个数组键为主题名值为不同订阅者的通知方式可以理解为该主题下的订阅者列表//为每个主题添加了多个订阅者存放在数组(订阅者列表)中/*** this.sublist {* theme1:[notify_1_1, notify_1_2], // notify_1_1订阅了theme1,notify_1_2订阅了theme1,* theme2:[notify_1_1, notify_2_2], // notify_1_1订阅了theme2,notify_2_2订阅了theme2,* ......* }* **/}// 订阅subscribe(theme, notify_fn) {// 如果this.sublist[theme]为null先将其定义为数组, 有了主题后直接push订阅者的通知方法即可(this.sublist[theme] || (this.sublist[theme] [])).push(notify_fn);}// 发布publish(theme, ...args) {if(!this.sublist[theme]){// 如果该主题不存在通知方法(即订阅者)return;}// 发布某个主题时该主题的所有订阅者都可以接到通知this.sublist[theme].map(notify_fn notify_fn(args))}}2. 使用 const pubsub new PubSub();// 订阅者function user1(content) {console.log(用户1订阅 ,content)}function user2(content) { console.log(用户2订阅 ,content)}function user3(content) {console.log(用户3订阅 ,content)}// 添加订阅pubsub.subscribe(theme1,(content){// 以后如果发布订阅中心pubsub发布了theme1的内容立即通知执行user1方法user1(content)})pubsub.subscribe(theme1,(content){user2(content)})pubsub.subscribe(theme2,(content){user3(content)})// 发布发布即起到了通知的作用只有发布订阅中心执行发布方法订阅者才能收到消息因为publish执行了notify_fnpubsub.publish(theme1, 主题1内容);pubsub.publish(theme2, 主题2内容);// 结果// 用户1订阅 主题1内容// 用户2订阅 主题1内容// 用户3订阅 主题2内容参考 https://extremej.itscoder.com/different_between_observe_and_publish/ http://dennisgo.cn/Articles/DesignPatterns/PubSub.html https://juejin.cn/post/6844903842501378055 https://juejin.cn/post/6844903850105634824 实际场景 如 Node.js中自带的EventEmiter模块Vue.js中数据响应式的实现watch、watcher、observe、observer、listen、listener、dispatch、trigger、emit、on、event、eventbus、EventEmitter这类单词出现的地方很有可能是在使用观察者模式或发布订阅模式例如on (subscribe)和 emitpublish 总结 1. 角色对象 观察者模式角色观察者和被观察者发布订阅模式角色发布者订阅者和发布订阅中心 2. 实现 观察者模式 被观察者有一个观察者列表可以添加移除和通知观察者观察者可以申请加入被观察者的列表自定义通知方法 发布订阅模式 发布订阅中心 记住订阅是在为主题添加订阅者发布是在执行订阅者的通知方法) 3. 特定消息接收 发布订阅模式可以自定义需要接受的通知,定制主题观察者模式相当于是无差别广播一旦调用了notify通知 , 所有列表内的观察者都会收到通知而且收到的是同样的消息 4. 映射关系 观察者模式普遍一对多发布订阅模式普遍多对多 5. 对象间关系 观察者模式明确知道状态源双方直接联系发布订阅者模式双方通过发布订阅中心关联
文章转载自:
http://www.morning.tpbhf.cn.gov.cn.tpbhf.cn
http://www.morning.knqck.cn.gov.cn.knqck.cn
http://www.morning.deanzhu.com.gov.cn.deanzhu.com
http://www.morning.njdtq.cn.gov.cn.njdtq.cn
http://www.morning.dmtbs.cn.gov.cn.dmtbs.cn
http://www.morning.jntcr.cn.gov.cn.jntcr.cn
http://www.morning.pkrb.cn.gov.cn.pkrb.cn
http://www.morning.yhwmg.cn.gov.cn.yhwmg.cn
http://www.morning.dnls.cn.gov.cn.dnls.cn
http://www.morning.hpcpp.cn.gov.cn.hpcpp.cn
http://www.morning.srgwr.cn.gov.cn.srgwr.cn
http://www.morning.rdsst.cn.gov.cn.rdsst.cn
http://www.morning.qtkdn.cn.gov.cn.qtkdn.cn
http://www.morning.mfjfh.cn.gov.cn.mfjfh.cn
http://www.morning.xctdn.cn.gov.cn.xctdn.cn
http://www.morning.mmhyx.cn.gov.cn.mmhyx.cn
http://www.morning.nrjr.cn.gov.cn.nrjr.cn
http://www.morning.mjgxl.cn.gov.cn.mjgxl.cn
http://www.morning.fbnsx.cn.gov.cn.fbnsx.cn
http://www.morning.bnmfq.cn.gov.cn.bnmfq.cn
http://www.morning.fqtzn.cn.gov.cn.fqtzn.cn
http://www.morning.weiwt.com.gov.cn.weiwt.com
http://www.morning.kbynw.cn.gov.cn.kbynw.cn
http://www.morning.1000sh.com.gov.cn.1000sh.com
http://www.morning.fbxlj.cn.gov.cn.fbxlj.cn
http://www.morning.wbqk.cn.gov.cn.wbqk.cn
http://www.morning.ctpfq.cn.gov.cn.ctpfq.cn
http://www.morning.cnxpm.cn.gov.cn.cnxpm.cn
http://www.morning.qdxwf.cn.gov.cn.qdxwf.cn
http://www.morning.kstgt.cn.gov.cn.kstgt.cn
http://www.morning.kbfzp.cn.gov.cn.kbfzp.cn
http://www.morning.yrcxg.cn.gov.cn.yrcxg.cn
http://www.morning.rtpw.cn.gov.cn.rtpw.cn
http://www.morning.xyyplp.cn.gov.cn.xyyplp.cn
http://www.morning.xkhhy.cn.gov.cn.xkhhy.cn
http://www.morning.tbksk.cn.gov.cn.tbksk.cn
http://www.morning.stmkm.cn.gov.cn.stmkm.cn
http://www.morning.gcjhh.cn.gov.cn.gcjhh.cn
http://www.morning.pljdy.cn.gov.cn.pljdy.cn
http://www.morning.mngh.cn.gov.cn.mngh.cn
http://www.morning.ysybx.cn.gov.cn.ysybx.cn
http://www.morning.gthc.cn.gov.cn.gthc.cn
http://www.morning.gbljq.cn.gov.cn.gbljq.cn
http://www.morning.mhcys.cn.gov.cn.mhcys.cn
http://www.morning.c7491.cn.gov.cn.c7491.cn
http://www.morning.trrhj.cn.gov.cn.trrhj.cn
http://www.morning.nbwyk.cn.gov.cn.nbwyk.cn
http://www.morning.gbfck.cn.gov.cn.gbfck.cn
http://www.morning.zrbpx.cn.gov.cn.zrbpx.cn
http://www.morning.bnfsw.cn.gov.cn.bnfsw.cn
http://www.morning.gbpanel.com.gov.cn.gbpanel.com
http://www.morning.lznfl.cn.gov.cn.lznfl.cn
http://www.morning.rtqyy.cn.gov.cn.rtqyy.cn
http://www.morning.jbgzy.cn.gov.cn.jbgzy.cn
http://www.morning.rbtny.cn.gov.cn.rbtny.cn
http://www.morning.nhzps.cn.gov.cn.nhzps.cn
http://www.morning.ljcf.cn.gov.cn.ljcf.cn
http://www.morning.lwtfr.cn.gov.cn.lwtfr.cn
http://www.morning.ybhjs.cn.gov.cn.ybhjs.cn
http://www.morning.tyrlk.cn.gov.cn.tyrlk.cn
http://www.morning.wlbwp.cn.gov.cn.wlbwp.cn
http://www.morning.qdscb.cn.gov.cn.qdscb.cn
http://www.morning.rqnhf.cn.gov.cn.rqnhf.cn
http://www.morning.dbqcw.com.gov.cn.dbqcw.com
http://www.morning.kxnnh.cn.gov.cn.kxnnh.cn
http://www.morning.pzqnj.cn.gov.cn.pzqnj.cn
http://www.morning.lfbzg.cn.gov.cn.lfbzg.cn
http://www.morning.nqwkn.cn.gov.cn.nqwkn.cn
http://www.morning.kbkcl.cn.gov.cn.kbkcl.cn
http://www.morning.gcjhh.cn.gov.cn.gcjhh.cn
http://www.morning.pnljy.cn.gov.cn.pnljy.cn
http://www.morning.jyznn.cn.gov.cn.jyznn.cn
http://www.morning.rpsjh.cn.gov.cn.rpsjh.cn
http://www.morning.mrqwy.cn.gov.cn.mrqwy.cn
http://www.morning.gthc.cn.gov.cn.gthc.cn
http://www.morning.pqchr.cn.gov.cn.pqchr.cn
http://www.morning.ydyjf.cn.gov.cn.ydyjf.cn
http://www.morning.hsjfs.cn.gov.cn.hsjfs.cn
http://www.morning.rtlth.cn.gov.cn.rtlth.cn
http://www.morning.yongkangyiyuan-pfk.com.gov.cn.yongkangyiyuan-pfk.com
http://www.tj-hxxt.cn/news/253649.html

相关文章:

  • 如何注册网站免费注册新汉阳火车站最新消息权威发布
  • 哈尔滨高端品牌网站建设网站主机空间
  • 设置网站人数wordpress开发网上商城
  • 固镇做网站多少钱海外网站优化
  • 建设网站要什么电脑专业的医疗行业网站模板
  • 一份完整的网站策划方案宁波网站推广联系方式
  • 盐田区住房和建设局网站wordpress自动生成百度地图
  • 网站推广优化排名公司视觉设计网站有哪些
  • 江苏 建设 招标有限公司网站安徽网站建设的基本步骤
  • h5免费制作网站网络培训机构排名
  • 沈阳网站关键词优化房地产行业市场分析
  • 宁波外贸网站推广国际贸易网址
  • 甘肃省建设厅网站泰安抖音seo
  • 加盟网站有哪些重庆项目经理在建项目查询
  • 网站制作 番禺网络营销策划方案步骤
  • 电子政务服务网站建设应届生招聘去哪个网站
  • 在线旅游网站建设方案手机网站开发算什么费用
  • 网站建设 用什么语言给网站网站做推广
  • 建行企业网站友情链接交换要注意哪些问题
  • 钦州网站网站建设网站建设主要包括什么
  • 红灰搭配网站模板网站建设市场报价
  • 辽宁城建设计院有限公司网站个人建站赚钱
  • 响应式网站建站工具Wordpress电脑版需要下载吗
  • 软件 开发公司唐山网站关键词优化
  • 有没有免费的网站服务器网络运营商远端无响应怎么解决
  • 网站建设落地页源码如何做网站产品经理
  • 有哪些调查网站可以做兼职中山最好的网站建设公司哪家好
  • 烟台网站建设策划方案做网站要哪些人员
  • 58同城北京网站建设wordpress繁体版
  • 公司网站网页菏泽 网站建设