JavaScript深入系列第十篇,通过call和apply的模拟实现,带你揭开call和apply改变this的真相

call

一句话介绍 call:

call() 方法在使用一个指定的 this 值和若干个指定的参数值的前提下调用某个函数或方法。

举个例子:

  1. var foo = {
  2. value: 1
  3. };
  4. function bar() {
  5. console.log(this.value);
  6. }
  7. bar.call(foo); // 1

注意两点:

  1. call 改变了 this 的指向,指向到 foo
  2. bar 函数执行了

    模拟实现第一步

    那么我们该怎么模拟实现这两个效果呢?
    试想当调用 call 的时候,把 foo 对象改造成如下: ```javascript var foo = { value: 1, bar: function() {
    1. console.log(this.value)
    } };

foo.bar(); // 1

  1. 这个时候 this 就指向了 foo,是不是很简单呢?<br />但是这样却给 foo 对象本身添加了一个属性,这可不行呐!<br />不过也不用担心,我们用 delete 再删除它不就好了~<br />所以我们模拟的步骤可以分为:
  2. 1. 将函数设为对象的属性
  3. 1. 执行该函数
  4. 1. 删除该函数
  5. 以上个例子为例,就是:
  6. ```javascript
  7. // 第一步
  8. foo.fn = bar
  9. // 第二步
  10. foo.fn()
  11. // 第三步
  12. delete foo.fn

fn 是对象的属性名,反正最后也要删除它,所以起成什么都无所谓。
根据这个思路,我们可以尝试着去写第一版的 call2 函数:

  1. // 第一版
  2. Function.prototype.call2 = function(context) {
  3. // 首先要获取调用call的函数,用this可以获取
  4. context.fn = this;
  5. context.fn();
  6. delete context.fn;
  7. }
  8. // 测试一下
  9. var foo = {
  10. value: 1
  11. };
  12. function bar() {
  13. console.log(this.value);
  14. }
  15. bar.call2(foo); // 1

正好可以打印 1 哎!是不是很开心!(~ ̄▽ ̄)~

模拟实现第二步

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

  1. var foo = {
  2. value: 1
  3. };
  4. function bar(name, age) {
  5. console.log(name)
  6. console.log(age)
  7. console.log(this.value);
  8. }
  9. bar.call(foo, 'kevin', 18);
  10. // kevin
  11. // 18
  12. // 1

注意:传入的参数并不确定,这可咋办?
不急,我们可以从 Arguments 对象中取值,取出第二个到最后一个参数,然后放到一个数组里。
比如这样:

  1. // 以上个例子为例,此时的arguments为:
  2. // arguments = {
  3. // 0: foo,
  4. // 1: 'kevin',
  5. // 2: 18,
  6. // length: 3
  7. // }
  8. // 因为arguments是类数组对象,所以可以用for循环
  9. var args = [];
  10. for(var i = 1, len = arguments.length; i < len; i++) {
  11. args.push('arguments[' + i + ']');
  12. }
  13. // 执行后 args为 ["arguments[1]", "arguments[2]", "arguments[3]"]

不定长的参数问题解决了,我们接着要把这个参数数组放到要执行的函数的参数里面去。

  1. // 将数组里的元素作为多个参数放进函数的形参里
  2. context.fn(args.join(','))
  3. // (O_o)??
  4. // 这个方法肯定是不行的啦!!!

也许有人想到用 ES6 的方法,不过 call 是 ES3 的方法,我们为了模拟实现一个 ES3 的方法,要用到ES6的方法,好像……,嗯,也可以啦。但是我们这次用 eval 方法拼成一个函数,类似于这样:

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

这里 args 会自动调用 Array.toString() 这个方法。
所以我们的第二版克服了两个大问题,代码如下:

  1. // 第二版
  2. Function.prototype.call2 = function(context) {
  3. context.fn = this;
  4. var args = [];
  5. for(var i = 1, len = arguments.length; i < len; i++) {
  6. args.push('arguments[' + i + ']');
  7. }
  8. eval('context.fn(' + args +')');
  9. delete context.fn;
  10. }
  11. // 测试一下
  12. var foo = {
  13. value: 1
  14. };
  15. function bar(name, age) {
  16. console.log(name)
  17. console.log(age)
  18. console.log(this.value);
  19. }
  20. bar.call2(foo, 'kevin', 18);
  21. // kevin
  22. // 18
  23. // 1

(๑•̀ㅂ•́)و✧

模拟实现第三步

模拟代码已经完成 80%,还有两个小点要注意:
1.this 参数可以传 null,当为 null 的时候,视为指向 window
举个例子:

  1. var value = 1;
  2. function bar() {
  3. console.log(this.value);
  4. }
  5. bar.call(null); // 1

虽然这个例子本身不使用 call,结果依然一样。
2.函数是可以有返回值的!
举个例子:

  1. var obj = {
  2. value: 1
  3. }
  4. function bar(name, age) {
  5. return {
  6. value: this.value,
  7. name: name,
  8. age: age
  9. }
  10. }
  11. console.log(bar.call(obj, 'kevin', 18));
  12. // Object {
  13. // value: 1,
  14. // name: 'kevin',
  15. // age: 18
  16. // }

不过都很好解决,让我们直接看第三版也就是最后一版的代码:

  1. // 第三版
  2. Function.prototype.call2 = function (context) {
  3. var context = context || window;
  4. context.fn = this;
  5. var args = [];
  6. for(var i = 1, len = arguments.length; i < len; i++) {
  7. args.push('arguments[' + i + ']');
  8. }
  9. var result = eval('context.fn(' + args +')');
  10. delete context.fn
  11. return result;
  12. }
  13. // 测试一下
  14. var value = 2;
  15. var obj = {
  16. value: 1
  17. }
  18. function bar(name, age) {
  19. console.log(this.value);
  20. return {
  21. value: this.value,
  22. name: name,
  23. age: age
  24. }
  25. }
  26. bar.call(null); // 2
  27. console.log(bar.call2(obj, 'kevin', 18));
  28. // 1
  29. // Object {
  30. // value: 1,
  31. // name: 'kevin',
  32. // age: 18
  33. // }

到此,我们完成了 call 的模拟实现,给自己一个赞 b( ̄▽ ̄)d

apply的模拟实现

apply 的实现跟 call 类似,在这里直接给代码,代码来自于知乎 @郑航的实现:

  1. Function.prototype.apply = function (context, arr) {
  2. var context = Object(context) || window;
  3. context.fn = this;
  4. var result;
  5. if (!arr) {
  6. result = context.fn();
  7. }
  8. else {
  9. var args = [];
  10. for (var i = 0, len = arr.length; i < len; i++) {
  11. args.push('arr[' + i + ']');
  12. }
  13. result = eval('context.fn(' + args + ')')
  14. }
  15. delete context.fn
  16. return result;
  17. }