前言
this的指向在javascript中一直是个谜一样的存在,但是很多地方又会用到this,所以理解和使用this非常重要,关于this的理解这篇文章不做介绍,因为这篇的目的是改变this的指向。
改变this的指向有三种方法,call,apply,bind。下面先介绍下这三种方法,话不多说了,来一起看看详细的介绍吧
改变this指向
call
var a = { name:"aaa", say(type){ console.log(type,this.name); } } a.say("at");//at aaa var tn = {name:"ttt"}; a.say.call(tn,"tt")//tt ttt
可以看到通过call,say方法中的this指向了tn,传参的方式的列举
apply
var a = { name:"aaa", say(type){ console.log(type,this.name); } } a.say("at"); var tn = {name:"ttt"}; a.say.apply(tn,["tt"])
可以看到通过apply,say方法中的this指向了tn,传参的方式是数组
bind
bind也能改变this的指向,不过和call,apply不同的地方在于,bind只改变this,不会指向函数
var a = { name:"aaa", say(type){ console.log(type,this.name); } } var tn = {name:"ttt"}; var b = a.say.bind(tn); b();//ttt
bind 改变this,也是能够继承原型链的,看下下面的代码
var to = {name:"to",color:"red"}; function Animal(){ console.log(`name:${this.name}...color:${this.color}`); } Animal.prototype.say = function(){ console.log(`say..name:${this.name}...color:${this.color}`); } var Cat = Animal.bind(to); Cat();//name:to...color:red var cat = new Cat();// name:undefined...color:undefined cat.say();//say..name:undefined...color:undefined
因为cat是Cat的实例,Cat是改变了this的Animal,所以cat也是Animal的实例,但是this是指向cat的,所以this.name是undefined
实现bind
Function.prototype.bind = function(obj){ const args = Array.prototype.slice.call(arguments,1);//保留bind时的参数 const that = this; const bound = function(){ const inArgs = Array.prototype.slice.call(arguments);//执行bind的函数时的参数 const newArgs = args.concat(inArgs);//组装参数 that.apply(obj,newArgs);//执行bind的函数 } //继承prototype--寄生组合式继承 function F(){}; F.prototype = that.prototype; bound.prototype = new F(); return bound; }
然后执行上面的代码
Cat();//name:to...color:red var cat = new Cat();//name:to...color:red cat.say();//say..name:undefined...color:undefined
不过第二行和原生的bind还是有点区别的,这里还是记住了之前的bind的对象,原生的不知道为啥是undefined
面试题
实现es5中的bind方法,使得下面的代码输出success
function Animal(name,color){ this.name = name; this.color = color; } Animal.prototype.say = function(){ return `i am a ${this.color} ${this.name}` } const Cat = Animal.bind(null,"cat"); const cat = new Cat("white"); if(cat.say() === 'i am a white cat' && cat instanceof Cat && cat instanceof Animal){ console.log("success") }
加上上面的bind实现,咦??没有出现success??为什么?
分析一下代码,bind的第一个参数是null"htmlcode">
Function.prototype.bind = function(obj){ const args = Array.prototype.slice.call(arguments,1);//保留bind时的参数 const that = this; const bound = function(){ const inArgs = Array.prototype.slice.call(arguments);//执行bind的函数时的参数 const newArgs = args.concat(inArgs);//组装参数 const bo = obj || this; that.apply(bo,newArgs);//执行bind的函数 } //继承prototype--寄生组合式继承 function F(){}; F.prototype = that.prototype; bound.prototype = new F(); return bound; }
输出success
完美~~~
撒花~~~
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】