JavaScript深切之call和apply的模仿完成

JavaScript深切系列第十篇,经由过程call和apply的模仿完成,带你揭开call和apply转变this的原形

call

一句话引见 call:

call() 要领在运用一个指定的 this 值和若干个指定的参数值的前提下挪用某个函数或要领。

举个例子:

var foo = {
    value: 1
};

function bar() {
    console.log(this.value);
}

bar.call(foo); // 1

注重两点:

  1. call 转变了 this 的指向,指向到 foo

  2. bar 函数实行了

模仿完成第一步

那末我们该怎样模仿完成这两个效果呢?

试想当挪用 call 的时刻,把 foo 对象改形成以下:

var foo = {
    value: 1,
    bar: function() {
        console.log(this.value)
    }
};

foo.bar(); // 1

这个时刻 this 就指向了 foo,是否是很简单呢?

然则如许却给 foo 对象自身添加了一个属性,这可不可呐!

不过也不必忧郁,我们用 delete 再删除它不就好了~

所以我们模仿的步骤能够分为:

  1. 将函数设为对象的属性

  2. 实行该函数

  3. 删除该函数

以上个例子为例,就是:

// 第一步
foo.fn = bar
// 第二步
foo.fn()
// 第三步
delete foo.fn

fn 是对象的属性名,横竖末了也要删除它,所以起成什么都无所谓。

依据这个思绪,我们能够尝试着去写初版的 call2 函数:

// 初版
Function.prototype.call2 = function(context) {
    // 首先要猎取挪用call的函数,用this能够猎取
    context.fn = this;
    context.fn();
    delete context.fn;
}

// 测试一下
var foo = {
    value: 1
};

function bar() {
    console.log(this.value);
}

bar.call2(foo); // 1

恰好能够打印 1 哎!是否是很高兴!(~ ̄▽ ̄)~

模仿完成第二步

最一开始也讲了,call 函数还能给定参数实行函数。举个例子:

var foo = {
    value: 1
};

function bar(name, age) {
    console.log(name)
    console.log(age)
    console.log(this.value);
}

bar.call(foo, 'kevin', 18);
// kevin
// 18
// 1

注重:传入的参数并不肯定,这可咋办?

不急,我们能够从 Arguments 对象中取值,掏出第二个到末了一个参数,然后放到一个数组里。

比方如许:

// 以上个例子为例,此时的arguments为:
// arguments = {
//      0: foo,
//      1: 'kevin',
//      2: 18,
//      length: 3
// }
// 由于arguments是类数组对象,所以能够用for轮回
var args = [];
for(var i = 1, len = arguments.length; i < len; i++) {
    args.push('arguments[' + i + ']');
}

// 实行后 args为 [foo, 'kevin', 18]

不定长的参数题目处理了,我们接着要把这个参数数组放到要实行的函数的参数内里去。

// 将数组里的元素作为多个参数放进函数的形参里
context.fn(args.join(','))
// (O_o)??
// 这个要领肯定是不可的啦!!!

或许有人想到用 ES6 的要领,不过 call 是 ES3 的要领,我们为了模仿完成一个 ES3 的要领,要用到ES6的要领,彷佛……,嗯,也能够啦。然则我们此次用 eval 要领拼成一个函数,相似于如许:

eval('context.fn(' + args +')')

这里 args 会自动挪用 Array.toString() 这个要领。

所以我们的第二版克服了两个大题目,代码以下:

// 第二版
Function.prototype.call2 = function(context) {
    context.fn = this;
    var args = [];
    for(var i = 1, len = arguments.length; i < len; i++) {
        args.push('arguments[' + i + ']');
    }
    eval('context.fn(' + args +')');
    delete context.fn;
}

// 测试一下
var foo = {
    value: 1
};

function bar(name, age) {
    console.log(name)
    console.log(age)
    console.log(this.value);
}

bar.call2(foo, 'kevin', 18); 
// kevin
// 18
// 1

(๑•̀ㅂ•́)و✧

模仿完成第三步

模仿代码已完成 80%,另有两个小点要注重:

1.this 参数能够传 null,当为 null 的时刻,视为指向 window

举个例子:


var value = 1;

function bar() {
    console.log(this.value);
}

bar.call(null); // 1

虽然这个例子自身不运用 call,效果依旧一样。

2.函数是能够有返回值的!

举个例子:


var obj = {
    value: 1
}

function bar(name, age) {
    return {
        value: this.value,
        name: name,
        age: age
    }
}

console.log(bar.call(obj, 'kevin', 18));
// Object {
//    value: 1,
//    name: 'kevin',
//    age: 18
// }

不过都很好处理,让我们直接看第三版也就是末了一版的代码:

// 第三版
Function.prototype.call2 = function (context) {
    var context = context || window;
    context.fn = this;

    var args = [];
    for(var i = 1, len = arguments.length; i < len; i++) {
        args.push('arguments[' + i + ']');
    }

    var result = eval('context.fn(' + args +')');

    delete context.fn
    return result;
}

// 测试一下
var value = 2;

var obj = {
    value: 1
}

function bar(name, age) {
    console.log(this.value);
    return {
        value: this.value,
        name: name,
        age: age
    }
}

bar.call(null); // 2

console.log(bar.call2(obj, 'kevin', 18));
// 1
// Object {
//    value: 1,
//    name: 'kevin',
//    age: 18
// }

到此,我们完成了 call 的模仿完成,给本身一个赞 b( ̄▽ ̄)d

apply的模仿完成

apply 的完成跟 call 相似,在这里直接给代码,代码来自于知乎 @郑航的完成:

Function.prototype.apply = function (context, arr) {
    var context = Object(context) || window;
    context.fn = this;

    var result;
    if (!arr) {
        result = context.fn();
    }
    else {
        var args = [];
        for (var i = 0, len = arr.length; i < len; i++) {
            args.push('arr[' + i + ']');
        }
        result = eval('context.fn(' + args + ')')
    }

    delete context.fn
    return result;
}

下一篇文章

JavaScript深切之bind的模仿完成

主要参考

知乎题目 不能运用call、apply、bind,如何用 js 完成 call 或许 apply 的功用?

深切系列

JavaScript深切系列目次地点:https://github.com/mqyqingfeng/Blog

JavaScript深切系列估计写十五篇摆布,旨在帮人人捋顺JavaScript底层学问,重点解说如原型、作用域、实行上下文、变量对象、this、闭包、按值通报、call、apply、bind、new、继续等难点观点。

假如有毛病或许不严谨的处所,请务必赋予斧正,非常谢谢。假如喜好或许有所启示,迎接star,对作者也是一种勉励。

    原文作者:冴羽
    原文地址: https://segmentfault.com/a/1190000009257663
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞