ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

第 38 题:apply、call 和 bind 是什么?哪些区别?

2021-09-03 09:04:10  阅读:174  来源: 互联网

标签:function 38 name bind age Person call Student let


三者都是改变 this 指向的 api

用法

apply:xxx.apply(this, [arg1, arg2])

call:xxx.call(this, arg1, arg2)

bind:xxx.bind(this, arg1, arg2)

区别

主要是传参方式和执行方式不同

  • apply、call 的区别:接受参数的方式不一样

  • bind:不立即执行。而 apply、call 立即执行

栗子

初始状态

let Person = function(name, age) {
    this.name = name;
    this.age = age;
};

let Student = function() {
    this.class = 'classA';

    this.run = function() {
        console.log(this);
    };
};

let student = new Student();

student.run();

可以看见这个时候打印的 this 是指向 Student 构造函数,并且和 Person 构造函数没有任何关联

使用 apply 改变 this 指向

let Person = function(name, age) {
    this.name = name;
    this.age = age;
};

let Student = function() {
    this.class = 'classA';

    this.run = function() {
        Person.apply(this, ['xiaoming', 20]);
        console.log(this);
    };
};

let student = new Student();

student.run();

这个时候 this 已经指向了 Person 构造函数了

使用 call 改变 this 指向

let Person = function(name, age) {
    this.name = name;
    this.age = age;
};

let Student = function() {
    this.class = 'classA';

    this.run = function() {
        Person.call(this, 'xiaoming', 20);
        console.log(this);
    };
};

let student = new Student();

student.run();

这个时候 this 已经指向了 Person 构造函数了

使用 bind 改变 this 指向

let ex = '';

let Person = function(name, age) {
    this.name = name;
    this.age = age;
};

let Student = function() {
    this.class = 'classA';

    this.run = function() {
        ex = Person.bind(this, 'xiaoming', 20);
        console.log(this);
    };
};

let student = new Student();

student.run();
ex();

使用 bind 的话,需要执行了 this 改变才会生效

总结:使用 apply、call 和 bind 确实可以改变 this 指向,但是原有对象的属性也跟着一起过去了

文章的内容/灵感都从下方内容中借鉴

标签:function,38,name,bind,age,Person,call,Student,let
来源: https://www.cnblogs.com/noxussj/p/15221592.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有