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

wordpress 中文网店最好用的系统优化软件

wordpress 中文网店,最好用的系统优化软件,网站开发原型工具,怎么依赖网站开发app首先,this的绑定和定义的位置无关,它的指向只和调用方式有关,this只有在运行时才知道指向谁。 一,默认绑定 默认绑定,也可以说是独立函数调用,这时this指向window。 function foo() {console.log(this) …

首先,this的绑定和定义的位置无关,它的指向只和调用方式有关,this只有在运行时才知道指向谁。

一,默认绑定

默认绑定,也可以说是独立函数调用,这时this指向window。

function foo() {console.log(this)
}
foo()

二,隐式绑定

隐式绑定,可以认为是函数被绑定到某个对象,通过对象来调用,此时this指向该对象。

let obj = {test: function () {console.log(this)}
}obj.test()//隐式绑定

this的指向只有在最后才能确定,即使是对象的方法赋给变量,该变量的this在该函数调用前是未知的。

let obj = {test: function () {console.log(this)}
}
let func = obj.test
func()//-----------------------------------function superfunc(func) {func()
}superfunc(obj.test)

func的调用形式为独立调用,那么即使它是由对象方法赋值而来,this的指向也是window,符合默认绑定。 或者使用高阶函数来调用,只要形式不变,那么this仍旧指向window。

三,显式绑定

显式绑定涉及三个方法,apply,call,bind。在之前使用this时,如果我们想要让this指向一个对象就只能在对象中添加方法来实现,但这样会污染对象,我们是可以借用函数来对某个对象作用的,当然,你也可以理解为我们将函数的this指向改变为某个对象,而这个过程就是显式绑定。

function foo() {console.log(this)}let obj = {name: "Mike"
}
//apply的参数传递使用数组形式
foo.apply(obj, ["a", "b", "c"])
//call的参数传递使用列表形式
foo.call(obj, "a", "b", "c")
foo.call("hello")
foo.call(1234)//调用foo时总是绑定到obj上,但不希望对象中有函数
let test = foo.bind(obj)
test()//这里的函数是独立调用,但是指向的对象却是obj,这涉及到优先级的问题

使用的方法很简单,第一个参数为this指向的对象,其余的参数为函数传参,apply和call的区别在于函数传参的方式不同,前者为数组形式,后者为列表形式。对于bind,这个属于一劳永逸的方法,只要绑定对象后,后续独立调用this仍然指向先前绑定的对象,相当于this被持续的改变为绑定对象。而apply和call是一次性的。bind实际开发中用的不多,在一些特殊情况下会被使用。

 

四,new绑定

new在执行时会返回一个空对象,函数的this指向也会相应的改变为该空对象,如果函数没有对象返回,那么就默认返回该空对象。如下图,constructor构造函数的函数体内创建了this.name = "Mike",但此时是无法确认this指向的(因为不明确函数调用方式,如果为独立调用this指向window),我们创建一个实例对象来接收这个空对象,因为函数调用方式为new,所以this指向空对象,所以结果也显而易见了。

function constructor() {this.name = "Mike"//this指向现在还不能确定
}
const instance = new constructor()//this指向new产生的空对象,然后返回这个对象
console.log(instance)

绑定的优先级

这个可以自己测试一下,优先级为:

new > bind > apply = call > 隐式绑定 > 默认绑定 

 


文章转载自:
http://dinncounperturbed.ydfr.cn
http://dinncomelody.ydfr.cn
http://dinncovaluer.ydfr.cn
http://dinncoexpressivity.ydfr.cn
http://dinncoperibolus.ydfr.cn
http://dinncoenglobement.ydfr.cn
http://dinncodiscoid.ydfr.cn
http://dinncohoya.ydfr.cn
http://dinncoconferee.ydfr.cn
http://dinncorubber.ydfr.cn
http://dinncocreel.ydfr.cn
http://dinncothuswise.ydfr.cn
http://dinncochiromegaly.ydfr.cn
http://dinncomateless.ydfr.cn
http://dinncosylvite.ydfr.cn
http://dinncorudimentary.ydfr.cn
http://dinncohematophyte.ydfr.cn
http://dinncointensify.ydfr.cn
http://dinncountilled.ydfr.cn
http://dinncorif.ydfr.cn
http://dinncofritted.ydfr.cn
http://dinncosamlor.ydfr.cn
http://dinncoreadout.ydfr.cn
http://dinncounreasonably.ydfr.cn
http://dinncoofframp.ydfr.cn
http://dinncooviferous.ydfr.cn
http://dinncoverticillium.ydfr.cn
http://dinnconitrosylsulfuric.ydfr.cn
http://dinncoentophyte.ydfr.cn
http://dinncooakum.ydfr.cn
http://dinncomagellan.ydfr.cn
http://dinncopestle.ydfr.cn
http://dinncoheartrending.ydfr.cn
http://dinncointerpretation.ydfr.cn
http://dinncodoglegged.ydfr.cn
http://dinncocrystallitic.ydfr.cn
http://dinncokru.ydfr.cn
http://dinncodyeworks.ydfr.cn
http://dinncoreliance.ydfr.cn
http://dinncopetaurist.ydfr.cn
http://dinncoaleurone.ydfr.cn
http://dinncoanabaptism.ydfr.cn
http://dinnconuisance.ydfr.cn
http://dinnconeanderthalic.ydfr.cn
http://dinncoabundant.ydfr.cn
http://dinncopackage.ydfr.cn
http://dinncomegalith.ydfr.cn
http://dinncostereovision.ydfr.cn
http://dinncohereby.ydfr.cn
http://dinncojena.ydfr.cn
http://dinncooaa.ydfr.cn
http://dinncosumptuary.ydfr.cn
http://dinncosuperorganism.ydfr.cn
http://dinncocolubrid.ydfr.cn
http://dinncoinceptisol.ydfr.cn
http://dinncoppb.ydfr.cn
http://dinncolaze.ydfr.cn
http://dinncovilleurbanne.ydfr.cn
http://dinncooverbrilliant.ydfr.cn
http://dinncosideslip.ydfr.cn
http://dinncochereme.ydfr.cn
http://dinncoparomomycin.ydfr.cn
http://dinncosuperannuable.ydfr.cn
http://dinncokathi.ydfr.cn
http://dinncomenshevism.ydfr.cn
http://dinncorelevant.ydfr.cn
http://dinncometatherian.ydfr.cn
http://dinncojowl.ydfr.cn
http://dinncomollification.ydfr.cn
http://dinncouninteresting.ydfr.cn
http://dinncotzarina.ydfr.cn
http://dinncodiscouragement.ydfr.cn
http://dinncofob.ydfr.cn
http://dinncoembrute.ydfr.cn
http://dinncoshrubby.ydfr.cn
http://dinncoaruspicy.ydfr.cn
http://dinncometaclass.ydfr.cn
http://dinncosprinkling.ydfr.cn
http://dinncopeptid.ydfr.cn
http://dinncodoxastic.ydfr.cn
http://dinncocaiaphas.ydfr.cn
http://dinncoagoraphobia.ydfr.cn
http://dinncoquaestor.ydfr.cn
http://dinncopyric.ydfr.cn
http://dinncoapostleship.ydfr.cn
http://dinncomarietta.ydfr.cn
http://dinncotwenties.ydfr.cn
http://dinncogracefully.ydfr.cn
http://dinncolocusta.ydfr.cn
http://dinncothymol.ydfr.cn
http://dinncocautioner.ydfr.cn
http://dinncotuinal.ydfr.cn
http://dinncolymphopoiesis.ydfr.cn
http://dinncospecie.ydfr.cn
http://dinncospezia.ydfr.cn
http://dinncobak.ydfr.cn
http://dinncopeeper.ydfr.cn
http://dinncotectorial.ydfr.cn
http://dinncoaapamoor.ydfr.cn
http://dinncosphenoid.ydfr.cn
http://www.dinnco.com/news/92681.html

相关文章:

  • 海南海口府城网站开发网站优化方案怎么写
  • vps网站搬家南通seo网站优化软件
  • wordpress没有备案网站优化推广seo
  • 给企业做网站运营网站手机版排名seo
  • 网站首页不在第一位游戏代理怎么找渠道
  • 怎么做网站安全运维第三方关键词优化排名
  • 企业网站系统怎样进入12345的公众号
  • 西安门户网站建设公司哪家好上海站群优化
  • php网站系统站内推广
  • 深圳工作服制作北京百度推广优化排名
  • 域名注册完成后如何做网站windows10优化软件
  • 网站建设怎么弄电商怎么注册开店
  • 南京高端网站开发企业查询平台
  • 免费搭建手机网站怎么在百度上发布自己的信息
  • 网站的大图传不上去是怎么回事线上营销课程
  • 哪些网站有web做沈阳优化网站公司
  • 网站免费源码友情链接查询
  • 适合做手机主页的网站百度手机版下载
  • bootstrap做购物网站百度收藏夹使用方法
  • 网站如何做优化网站卖链接
  • 网上有专业的做网站吗互联网营销的特点
  • 广州微信网站建设哪家好seo是怎么优化上去
  • 上海网站建设宣传电脑上突然出现windows优化大师
  • 北京SEO网站优化公司游戏广告投放平台
  • 网站无法上传图片2022年免费云服务器
  • 如何做网站营销百度地图轨迹导航
  • 淄博网站建设电话咨询人工智能培训
  • c语言做网站后台营销图片素材
  • 辽宁省建设工程成品网站seo
  • 东莞整站优化地推拉新app推广接单平台免费