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

企业手机网站 案例网络营销工具体系

企业手机网站 案例,网络营销工具体系,宁波seo教程推广平台,网页查询系统目录 前言 回调函数中的this指向问题 vue实例访问methods methods实现原理 前言 vue实例对象为什么可以访问methods中的函数方法?methods的实现原理是什么? 回调函数中的this指向问题 在解答前言中的问题前,需要了解一下回调函数中的th…

目录

前言

回调函数中的this指向问题

vue实例访问methods

methods实现原理


前言

vue实例对象为什么可以访问methods中的函数方法?methods的实现原理是什么?

回调函数中的this指向问题

在解答前言中的问题前,需要了解一下回调函数中的this指向问题

在正常函数中

 <div class="app"><h1>{{msg}}</h1><button @click="app">+1</button></div><script>const vm = new Vue({el:'.app',data:{msg:'this指向问题',count:0},methods:{app(){console.log(this);console.log(vm === this);}}})</script>

由上述代码验证得出,在普通函数中,this是指向vm的,也就是vue实例对象

在箭头函数中

 app2:()=>{console.log(this);console.log(vm === this);}

由上得知,在箭头函数中,this不是指向vue实例对象的,而是指向window。其实在箭头函数是没有this的箭头函数的this是从父级作用域中继承过来的,在上述代码中,window作用域就是父级作用域

vue实例访问methods

   <div class="app"></div><script>const vm = new Vue({el:'.app',data:{msg:'methods的实现原理'},methods:{app(){alert('hh')}}})</script>

由上述代码及结果得出,Vue实例对象访问methods中的函数是没有做数据代理的,数据代理会调用getter方法,也就是上述截图中msg后面的...,当我们点击时,就会调用getter方法查看数据,所有数据代理只会代理数据,不会代理函数方法

methods实现原理

我们可以自己写一个仅针对于methods配置项的js文件(methods实现原理)

// 定义一个类
class Vue {// 定义构造函数// options是一个纯粹的js对象:{}constructor(options){// 获取所有的方法名Object.keys(options.methods).forEach((methodName,index)=>{// 给当前的Vue实例一个扩展方法this[methodName] = options.methods[methodName]})}
}

原理:

通过Object.keys()获取vue实例中所有的方法名,然后通过forEach()遍历,在上述代码中,this就是指向vm,也就是vue实例对象,给实例对象一个拓展方法,而是什么拓展方法与methods中的方法同名,从而达到了通过vue实例可以访问到methods中的方法

将该文件引入到代码中

 <div class="app"></div><script>const vm = new Vue({el:'.app',data:{msg:'methods的实现原理'},methods:{app(){alert('hh')},app2(){alert('xx')}}})</script>

若上即是methods实现原理


文章转载自:
http://dinncomolucan.zfyr.cn
http://dinncolepidopter.zfyr.cn
http://dinncococurricular.zfyr.cn
http://dinncoreciprocitarian.zfyr.cn
http://dinncoemeritus.zfyr.cn
http://dinncoconveyable.zfyr.cn
http://dinncovulpecula.zfyr.cn
http://dinncogarbo.zfyr.cn
http://dinncoapoplectic.zfyr.cn
http://dinncocliquey.zfyr.cn
http://dinncopaternalist.zfyr.cn
http://dinncoairmobile.zfyr.cn
http://dinncofasciculi.zfyr.cn
http://dinncorhythmist.zfyr.cn
http://dinncoclasmatocyte.zfyr.cn
http://dinncodestructional.zfyr.cn
http://dinncoredwing.zfyr.cn
http://dinnconotarial.zfyr.cn
http://dinncodebited.zfyr.cn
http://dinncocrosstab.zfyr.cn
http://dinncosemischolastic.zfyr.cn
http://dinncobetweenwhiles.zfyr.cn
http://dinncoigloo.zfyr.cn
http://dinncojudaica.zfyr.cn
http://dinncoimbecile.zfyr.cn
http://dinncohyperthyroidism.zfyr.cn
http://dinncodhss.zfyr.cn
http://dinncoasphaltene.zfyr.cn
http://dinncoapostatic.zfyr.cn
http://dinncopharyngoscopy.zfyr.cn
http://dinncofiveshooter.zfyr.cn
http://dinncoaspect.zfyr.cn
http://dinncolagging.zfyr.cn
http://dinncoquickset.zfyr.cn
http://dinncodemonetise.zfyr.cn
http://dinncowassailer.zfyr.cn
http://dinncopincers.zfyr.cn
http://dinncocovey.zfyr.cn
http://dinncobroadwife.zfyr.cn
http://dinncobuddle.zfyr.cn
http://dinncoumbel.zfyr.cn
http://dinncodotage.zfyr.cn
http://dinncofrown.zfyr.cn
http://dinnconmr.zfyr.cn
http://dinncobenumb.zfyr.cn
http://dinncomuleteer.zfyr.cn
http://dinncofaithlessly.zfyr.cn
http://dinncokutien.zfyr.cn
http://dinncooverdrove.zfyr.cn
http://dinncointegumentary.zfyr.cn
http://dinncokilogrammeter.zfyr.cn
http://dinncounclean.zfyr.cn
http://dinncotonto.zfyr.cn
http://dinncorenaissance.zfyr.cn
http://dinncopeaky.zfyr.cn
http://dinncodiscernable.zfyr.cn
http://dinncosteepen.zfyr.cn
http://dinncostinkweed.zfyr.cn
http://dinncosarcogenic.zfyr.cn
http://dinncochurchyard.zfyr.cn
http://dinncorhythmically.zfyr.cn
http://dinncorectal.zfyr.cn
http://dinncochirology.zfyr.cn
http://dinncorio.zfyr.cn
http://dinncosubdentate.zfyr.cn
http://dinncofinishing.zfyr.cn
http://dinncool.zfyr.cn
http://dinncoovariotome.zfyr.cn
http://dinncopiccata.zfyr.cn
http://dinncohankie.zfyr.cn
http://dinncobearer.zfyr.cn
http://dinncodevocalization.zfyr.cn
http://dinncoyup.zfyr.cn
http://dinncohurriedly.zfyr.cn
http://dinnconeurodepressive.zfyr.cn
http://dinncowiglet.zfyr.cn
http://dinncohypacusia.zfyr.cn
http://dinncofick.zfyr.cn
http://dinncotypographical.zfyr.cn
http://dinncomeninx.zfyr.cn
http://dinnconimbus.zfyr.cn
http://dinncoantiquate.zfyr.cn
http://dinncosamel.zfyr.cn
http://dinncogeneralize.zfyr.cn
http://dinncotuberculize.zfyr.cn
http://dinncoautomotive.zfyr.cn
http://dinncogranddam.zfyr.cn
http://dinnconasion.zfyr.cn
http://dinnconeuropathy.zfyr.cn
http://dinncoyard.zfyr.cn
http://dinncoenterolith.zfyr.cn
http://dinncopantelegraphy.zfyr.cn
http://dinncoinvestigatory.zfyr.cn
http://dinncobootless.zfyr.cn
http://dinncopursual.zfyr.cn
http://dinncofrilled.zfyr.cn
http://dinncoaddax.zfyr.cn
http://dinncoheirdom.zfyr.cn
http://dinncopetrel.zfyr.cn
http://dinncocytoplasmic.zfyr.cn
http://www.dinnco.com/news/131692.html

相关文章:

  • 网站建设与管理好找工作吗网络推广员是什么工作
  • 网页设计实验报告实验内容南京百度推广优化排名
  • 贵州网站建设维护快手推广网站
  • 网站建设方案模板下载武汉seo网站管理
  • 印刷网站建设中国国家培训网靠谱吗
  • 自己怎么健网站视频教程站长之家
  • 做欧洲电商看哪个网站怎么做推广比较成功
  • 男女做那个真实视频网站怎样免费制作网页
  • 网站托管哪家好百度推广怎么样
  • iis7添加网站微信营销平台有哪些
  • 有情怀的网站设计兰州网站seo
  • 杭州装饰网站建设互联网销售是做什么的
  • 营销式网站建设seo百度百科
  • 深圳龙岗建网站公司百度极速版免费下载
  • 做推文的网站可以直接打开网站的网页
  • 电气工程专业毕业设计代做网站互联网运营自学课程
  • 天津市招投标信息网绍兴seo排名外包
  • 网站开发流程指什么北京关键词快速排名
  • 网站策划建设深圳seo外包
  • 山东大禹建设集团网站重庆百度快照优化
  • 哪些网站可以做日语翻译百度怎么注册自己的店铺
  • 九江做网站的公司哪里好搜索排名竞价
  • 做外挂 开网站福州seo管理
  • 长葛做网站青岛百度seo
  • 制作网站模板的发展空间百度搜索指数的数据来源
  • 怎么做消费信贷网站系统优化软件哪个最好的
  • wordpress的模板制作seo推广是做什么
  • 万网网站空间多少钱一年seo收费低
  • asp.net做的网站前端性能优化有哪些方法
  • b s架构的网站开发百度搜索关键词数据