this总结【2】—— call/apply和bind

1.call/apply和bind概览

  1. 我们要将call/apply归为一类,bind零丁归为一类
  2. 三者的共同点是都能够指定this
  3. call/apply和bind都是绑定在Function的原型上的,所以Function的实例都能够挪用这三个要领
Function.prototype.call(this,arg1,arg2)
Function.prototype.apply(this,[arg1,arg2])
Function.prototype.bind(this,arg1,arg2)

至于为何,看完这篇文章你就懂了:)

假如你不懂什么是实例的话,请移步
深入浅出面向对象和原型【观点篇1】
深入浅出面向对象和原型【观点篇2】

2. call / apply —— 第一个参数是this(上下文)

2.1 作用和返回值

作用

  1. 挪用函数
  2. 转变该函数this值
  3. 操纵参数

返回值

返回值是你挪用的要领的返回值,若该要领没有返回值,则返回undefined。

    window.a = 1

    function print(b, c) {
        console.log(this.a, b, c)
    }

    print(2, 3) // 1 2 3

    print.call({a: -1}, -2, -3) // -1 -2 -3
    print.apply({a: 0}, [-2, -3]) // 0 -2 -3

call()要领的作用和 apply() 要领是一样的,只要一个辨别
call()要领吸收的是若干个参数
apply()要领吸收的是一个包括若干个参数的数组

2.2 apply通报数组的运用

    // 例子一
    // Math.max()不吸收数组的通报,我们能够运用apply要领
    let answer = Math.max.apply(null, [2, 4, 3])
    console.log(answer) // 4

    // 注重下面三个等价
    Math.max.apply(null, [2, 4, 3])
    Math.max.call(null, 2, 4, 3)
    Math.max(2, 4, 3)
    // 例子二
    // 兼并两个数组
    let arr1 = ['parsnip', 'potato']
    let arr2 = ['celery', 'beetroot']
    // 将第二个数组融会进第一个数组
    // 相当于 arr1.push('celery', 'beetroot');
    Array.prototype.push.apply(arr1, arr2)
    // 注重!!!this的意义是谁挪用了push这个要领
    // 所以当 this = arr1 后
    // 就成了 arr1 挪用了 push要领
    // 所以上述表达式等价于 arr1.push('celery', 'beetroot') 

    console.log(arr1)
    // ['parsnip', 'potato', 'celery', 'beetroot']

例子二中非常值得注重的就是arr2数组被拆开了,成了一个一个的参数

所以,apply经常性的作用之一就是
将数组元素迭代为函数参数

    // 例子三
    Math.max.apply(null, [2, 4, 3]) // 圆满运转
    arr1.push.apply(null, arr2) // 报错 Uncaught TypeError: Array.prototype.push called on null or undefined

    // 申明
    Math = {
        max: function (values) {
            // 没用到this值
        }
    }
    Array.prototype.push = function (items) {
        // this -> 挪用push要领的数组自身
        // this为null的话,就是向null里push
        // Array.prototype.push called on null or undefined
    }
    // 下面三个值是完整等价的,由于this值已经是arr1
    Array.prototype.push.apply(arr1, arr2)
    arr1.push.apply(arr1, arr2)
    arr2.push.apply(arr1, arr2)

2.3 小测试

    function xx() {
        console.log(this)
    }
    xx.call('1') // ??
    xx() // ??

假如答案和你想的不一样,请移步
this总结【1】—— this概览

3.bind

fun.bind(thisArg[, arg1[, arg2[, ...]]])

3.1作用

  1. 转变this
  2. 返回一个新函数

3.2 绑定函数、目的函数

实例运用bind()要领后会返回一个新的函数【绑定函数】
原函数为【目的函数】

我个人更喜好用
新函数
原函数来辨别,由于新名词越多,明白上的难题越大

那末新函数被挪用时会发作什么呢?
下面一句话务必记着
实在就是把原函数call/apply一下,并指定你通报的this

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

    let foo = xx.bind({'name':'jason'})
    // foo —— 新函数【绑定函数】
    // xx —— 原函数【目的函数】

    foo()

    // 新函数挪用时对原函数的操纵
    
    // 下面是伪代码
    // function foo(){
    //     xx.call({'name':'jason'})
    // }

    // 1.给xx(原函数)指定this 2.挪用xx(原函数)
    // 肯定要注重这两步是在新函数被挪用时才发作,不挪用不发作
    // 你也能够总结为一句话,给原函数 call/apply 了一下

3.3 bind()传参和新函数【绑定函数】传参

  1. bind(this,arg1)会将arg1插进去到原函数【目的函数】的参数列表的最先位置
  2. 通报给新函数【绑定函数】的参数会跟在它们的背面
    function list() {
        // 原函数【目的函数】
        return Array.prototype.slice.call(arguments);
    }

    let listTest = list(1, 2, 3); // [1, 2, 3]

    // 新函数【绑定函数】
    let leadingThirtysevenList = list.bind(undefined, 37);

    let list1 = leadingThirtysevenList(); // [37]
    let list2 = leadingThirtysevenList(1, 2, 3); // [37, 1, 2, 3]

3.3 原生完成一个bind,运用 this + call/apply【重点】

思索历程

    // 完成bind实在就是完成bind的特性
    // 1.bind的第一个参数是this
    // 2.bind能够return一个新函数,这个新函数能够挪用原函数而且能够指定其this,还能够吸收参数
    // 3.bind返回的新函数通报的参数要在bind通报的参数的背面

代码

    Function.prototype._bind = function () {
        // 声明bind吸收的参数【撤除this】为bindArgs
        // 由于第一个参数是this,须要去掉
        let bindArgs = Array.prototype.slice.call(arguments, 1)
        let bindThis = arguments[1]
        // 声明原函数【目的函数】为targetObj
        let targetObj = this
        return function () {
            // return出来的的函数吸收的参数为newArgs
            // 要在return出来的新函数里把bindArgs和newArgs兼并,运用数组的concat要领
            let newArgs = Array.prototype.slice.call(arguments)
            return targetObj.apply(bindThis, bindArgs.concat(newArgs))
        }
    }

4. 既然都是指定this,为何已经有call/apply,又要有bind呢?

4.1 你从未关注过函数的返回值

你在控制台输入console.log(1)为何一个是1,一个是undefined?

《this总结【2】—— call/apply和bind》

1是实行console.log()要领的输出值,undefined是这个要领的返回值
所以,你要知道一切的函数都有返回值,肯定要去关注一下函数的返回值

4.2 call/apply 与 bind 的返回值

xxx.call()/xxx.apply() 的返回值是由xxx自身的返回值决议的
xxx.bind() 的返回值是一个函数
    原文作者:bluesboneW
    原文地址: https://segmentfault.com/a/1190000013360039
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞