• call, apply, bind -----【改变this指向的三大利器】


    在前面的章节中,我们有讲到过关于 ES5 和 ES6 中 this 指向的问题,那么今天我们就来聊一下在JavaScript 中,如何利用 call, apply, bind 改变 this 指向的问题

    A.call( B,x,y ):B是 this 要指向的对象,x 和 y 是A方法的参数。用A的方法调用(显示)B的数据内容  
        function Teacher() {
            this.name='teacher'
        }
    
    	
    	function Student() {
    	    this.name='student'
    	}
    	Student.prototype.study=function () {
    	    console.log('i am '+this.name);
    	}
    	
    	var t=new Teacher();
    	var s=new Student();
    	
    	s.study()
    	s.study.call(t) 

    // 等价于 s.study.apply(t) 或 s.study.bind(t)()  

     控制台打印结果如下:

     现在我们给Fn student添加两个形数,再给 call 添加实参:

        function Teacher() {
            this.name='teacher'
        }
    
    	
    	function Student() {
    	    this.name='student'
    	}
    	Student.prototype.study=function (age,home) {
    	    console.log('i am ' + this.name + ', i am '+ age + ' years old, ' + 'i live in ' + home);
    	}
    	
    	var t=new Teacher();
    	var s=new Student();
    	
    	s.study(23,'Shanghai')
    	s.study.call(t,31,'Beijing')  
    
    // 等价于 s.study.apply(t,[31,'Beijing']) 或  s.study.bind(t,31,'Beijing')()

    控制台打印结果如下:

     【注意】:apply是以数组的形式传参

     
     
    【总结】:call, apply, bind 异同
     
    相同之处:
    1. 都是用来改变函数的this对象的指向的;
    2. 第一个参数都是this要指向的对象;
    3. 都可以利用后续参数传参。
    不同之处:
    1. call, bind 在传递实参有几个就从第二个开始一直往后添几个,apply传递的第二个参数是个数组;
     2. call, apply 传递完实参后直接返回结果,bind需要手动()执行一次,否则不会输出结果
     

    作者:牧羊狼

    出处:https://www.cnblogs.com/edwardwzw/

    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利,谢谢您的配合。 Freedom is not let you do whatever you wanna but teach you not to do the things that you donnot wanna do.

  • 相关阅读:
    Qt ------ QPainter 和控件组件的重绘
    Qt error ------ no matching function for call to QObject::connect(QSpinBox*&, <unresolved overloaded function type>, QSlider*&, void (QAbstractSlider::*)(int))
    DHCP 服务器功能
    matlab --- plot画图
    网站跨域解决方案有哪些
    分布式Session一致性解决方案有哪些?
    博客收集
    idea快捷键
    Linux打包、压缩与解压详解
    lastIndex()与IndexOf()的区别
  • 原文地址:https://www.cnblogs.com/edwardwzw/p/11757426.html
Copyright © 2020-2023  润新知