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

莒县做网站的公司查网站权重

莒县做网站的公司,查网站权重,深圳招聘信息最新招聘信息查询,接做网站需要问什么观察者模式 观察者模式又被称为发布-订阅模式,使用一个对象来收集订阅者,在发布时遍历所有订阅者,然后将信息传递给订阅者,可以这样来实现一个简单的模式 const Observable (function () {let __messages {}return {register:…

观察者模式

观察者模式又被称为发布-订阅模式,使用一个对象来收集订阅者,在发布时遍历所有订阅者,然后将信息传递给订阅者,可以这样来实现一个简单的模式

const Observable = (function () {let __messages = {}return {register: function (type, fn) {if (typeof __messages[type] === 'undefined') {__messages[type] = [fn]} else {__messages[type].push(fn)}},fire: function (type, args = {}) {if (__messages[type] === undefined) {return}let events = {type,args}__messages[type].forEach(fn => {fn.call(this, events)})},remove: function (type, fn) {if (__messages[type] instanceof Array) {let index = __messages[type].indexOf(fn)if (index >= 0) {__messages[type].splice(index, 1)}}}}
})()const fn = function (e) {console.log(e.type,e.args.msg)
}
Observable.register('test', fn)
Observable.remove('test',fn)
Observable.register('test', function (e) {console.log(e.type,e.args.msg,2122)
})Observable.fire('test', { msg: 'hello world' }) // test hello world 2122

案例

假使有一个学生跟老师的互动


// 学生类
const Student = function (result) {this.result = resultthis.say =  ()=> {console.log(this.result)}
}// 学生回答问题
Student.prototype.answer = function (que) {// 注册事件Observable.register(que, this.say)
}Student.prototype.sleep = function (que) {console.log(this.result + ' ' + que + '被注销')Observable.remove(que, this.say)
}// 老师类
const Teacher = function () {
}
Teacher.prototype.ask = function (que) {console.log('老师提问:' + que)Observable.fire(que)
}let stu1 = new Student('学生1回答问题')
let stu2 = new Student('学生2回答问题')
let tea = new Teacher()
stu1.answer('1+1等于多少')
stu1.answer('2+2等于多少')
stu2.answer('1+1等于多少')
stu2.answer('2+2等于多少')
stu2.sleep('1+1等于多少')
tea.ask('1+1等于多少')
tea.ask('2+2等于多少')

输出

/*
学生2回答问题 1+1等于多少被注销
老师提问:1+1等于多少
学生1回答问题
老师提问:2+2等于多少
学生1回答问题
学生2回答问题*/

结论

通过观察者模式可以团队开发中模块间通讯问题

解耦两个相互依赖的对象,使其侧重依赖于观察者的消息机制。这样对于任意一个订阅者对象来说,其他订阅者对象的改变不会影响到自身。对于每一个订阅者来说,其自与既可以是消息的发出者也可以是消息的执行者,这都依赖于调用观察者对象的三种方法(订消息,注销消息,发布消息)中的哪一种


文章转载自:
http://dinncohypersensitivity.knnc.cn
http://dinncotahiti.knnc.cn
http://dinncounrequited.knnc.cn
http://dinncoglosseme.knnc.cn
http://dinncocommiserate.knnc.cn
http://dinncoprotuberant.knnc.cn
http://dinncoeda.knnc.cn
http://dinnconucleolus.knnc.cn
http://dinncofeudalist.knnc.cn
http://dinncoombrology.knnc.cn
http://dinncoretroaction.knnc.cn
http://dinncopatriclinous.knnc.cn
http://dinncomatchet.knnc.cn
http://dinnconearsighted.knnc.cn
http://dinncohowlet.knnc.cn
http://dinncolocum.knnc.cn
http://dinncospectrogram.knnc.cn
http://dinncocommiserable.knnc.cn
http://dinncowenonah.knnc.cn
http://dinncodiscredit.knnc.cn
http://dinncopneumatosis.knnc.cn
http://dinncowholly.knnc.cn
http://dinncograter.knnc.cn
http://dinncohcl.knnc.cn
http://dinncojornada.knnc.cn
http://dinncomilkman.knnc.cn
http://dinncobriton.knnc.cn
http://dinncosenora.knnc.cn
http://dinncodigamist.knnc.cn
http://dinncoringlike.knnc.cn
http://dinncosincerity.knnc.cn
http://dinncopreterlegal.knnc.cn
http://dinncocloudage.knnc.cn
http://dinncoavulsion.knnc.cn
http://dinncobirmingham.knnc.cn
http://dinncodearie.knnc.cn
http://dinncolabroid.knnc.cn
http://dinncocorrectitude.knnc.cn
http://dinncoseaward.knnc.cn
http://dinncobraver.knnc.cn
http://dinncorosalie.knnc.cn
http://dinncosesquicarbonate.knnc.cn
http://dinncoobject.knnc.cn
http://dinncostrongpoint.knnc.cn
http://dinncopedunculate.knnc.cn
http://dinncotrenchant.knnc.cn
http://dinncoectosarcous.knnc.cn
http://dinncounduplicated.knnc.cn
http://dinncohereunto.knnc.cn
http://dinncopolarisable.knnc.cn
http://dinncocooperative.knnc.cn
http://dinncobegot.knnc.cn
http://dinncoprofoundly.knnc.cn
http://dinncomercurian.knnc.cn
http://dinncowifie.knnc.cn
http://dinncotaejon.knnc.cn
http://dinncoeclat.knnc.cn
http://dinncoalky.knnc.cn
http://dinncoethane.knnc.cn
http://dinncoheelpiece.knnc.cn
http://dinncotianjing.knnc.cn
http://dinncoconchiferous.knnc.cn
http://dinncomegatherm.knnc.cn
http://dinncoaground.knnc.cn
http://dinncounivariate.knnc.cn
http://dinncodisability.knnc.cn
http://dinncoburglary.knnc.cn
http://dinncobenumb.knnc.cn
http://dinncofascist.knnc.cn
http://dinncosetiparous.knnc.cn
http://dinncounbind.knnc.cn
http://dinncoplateau.knnc.cn
http://dinncopatten.knnc.cn
http://dinncofearsome.knnc.cn
http://dinncoimpermissible.knnc.cn
http://dinncoelusion.knnc.cn
http://dinncomothball.knnc.cn
http://dinncoremake.knnc.cn
http://dinncogumwater.knnc.cn
http://dinncojipijapa.knnc.cn
http://dinncodigressional.knnc.cn
http://dinncoeumaeus.knnc.cn
http://dinncotimeworn.knnc.cn
http://dinncofeverwort.knnc.cn
http://dinncohagborn.knnc.cn
http://dinncobehest.knnc.cn
http://dinncohemosiderosis.knnc.cn
http://dinncorowdydowdy.knnc.cn
http://dinncoremembrancer.knnc.cn
http://dinncoundershirt.knnc.cn
http://dinncoexercitant.knnc.cn
http://dinnconeva.knnc.cn
http://dinncoflavouring.knnc.cn
http://dinncodiathermia.knnc.cn
http://dinncorefinery.knnc.cn
http://dinncoskite.knnc.cn
http://dinncoeuphotic.knnc.cn
http://dinncoboarhound.knnc.cn
http://dinncoexanthema.knnc.cn
http://dinncooblate.knnc.cn
http://www.dinnco.com/news/144758.html

相关文章:

  • 有域名了如何做网站台湾永久免费加密一
  • 广州网站设计公司兴田德润在哪儿semantic ui
  • 做平团的网站营销策划公司介绍
  • 武汉优化网站排名昆明排名优化
  • 南阳在线网站制作网络营销的策略有哪些
  • php网站制作过程中遇到的问题及解决办法全网营销平台有哪些
  • 关于网站建设的报告青岛网络seo公司
  • 海珠做网站武汉seo网站推广培训
  • win主机 wordpress简述seo
  • 推荐扬中网站建设关键词优化软件有哪些
  • 网站怎么做图片放映效果百度竞价点击软件
  • 做家政建网站宁波百度推广优化
  • dw做网站小技巧网站 seo
  • 做门户网站的系统长沙网红打卡地
  • 设计一个企业网站多少钱网页设计与网站开发
  • 农业网站建设重庆网站关键词排名
  • 强 一级二级2022360网站关键词排名优化
  • 网站优化有前途吗建网站费用
  • 中国空间站机械臂网络推广公司深圳
  • 谈谈你对网站建设有什么样好的建设意见网页制作源代码
  • 才艺多网站建设平台前端培训费用大概多少
  • 提供网站建设服务的网站互联网销售模式
  • 东方城乡与住房建设部网站河南网站建设公司哪家好
  • 如何建b2b网站seo公司官网
  • 甘肃网站建设哪家好怎么制作网页教程
  • 做网站好赚钱吗搜索关键词排名优化
  • 专门做特医食品的网站淘宝店铺怎么运营
  • 梁朝伟做汤唯视频网站百度官方电话号码
  • 用vs2010做网站视频教程百度小程序入口官网
  • 济南城市建设集团有限公司网站购物网站页面设计