文章首发于个人博客
记得差不多在两年多之前写过一篇文章 两句话理解js中的this,当时总结的两句话原话是这样的:
{}
构成作用域,对象的{}
以及 if(){}
都不构成作用域;
当时对this的内部原理什么的都理解的不是很深刻,就只能凭借遇到很多坑之后,总结了出了那时候自己用来判断的标准。这里会再次略微深入的说一下。思路还是围绕上面总结的那两句话。.
运算符调用了 foo(),所以指向的值 obj。位置②,是把 obj.foo赋值给了 bar,实际上是把 foo函数赋值给了bar, bar() 调用的时候,没有调用者,所以使用的是默认绑定规则。
位置③,是把 obj.foo赋值给了 setTimeout,实际上调用的还是 foo函数,调用的时候,没有调用者,所以使用的是默认绑定规则。
位置②和位置 位置③ 的一定要注意。
function _new(constructor, ...arg) {
// ① 创建一个新的空对象 obj
const obj = {};
// ② 将新对象的的原型指向当前函数的原型
obj.__proto__ = constructor.prototype;
// ③ 新创建的对象绑定到当前this上
const result = constructor.apply(obj, arg);
// ④ 如果没有返回其他对象,就返回 obj,否则返回其他对象
return typeof result === 'object' ? result : obj;
}
function Foo(name) {
this.name = name;
}
var luckyStar = _new(Foo, 'luckyStar');
luckyStar.name; //luckyStar
箭头函数中其实没有 this 绑定,因为箭头函数中this指向函数所在的所用域。箭头函数不能作为构造函数
const obj = {
name: 'litterStar',
say() {
console.log(this.name);
},
read: () => {
console.log(this.name);
}
}
obj.say(); // litterStar
obj.read(); // undefined
call,apply,bind 这三个函数是 Function原型上的方法 Function.prototype.call()
,Function.prototype.apply
,Function.prototype.bind()
,所有的函数都是 Funciton
的实例,因此所有的函数可以调用call,apply,bind 这三个方法。
call,apply,bind 这三个方法的第一个参数,都是this。如果你使用的时候不关心 this是谁的话,可以直接设置为 null
但是有了 ES6引入的 ...
展开运算符,其实很多情况下使用 call和apply没有什么太大的区别。
举个例子,找到数组中最大的值
const arr = [1, 2, 3, 5];
Math.max.call(null, ...arr);
Math.max.apply(null, arr);
Math.max
是数字的方法,数组上并没有,但是我们可以通过 call, apply 来使用 Math.max
方法来计算当前数组的最大值。
实现一个call:
Function.prototype.myCall = function(thisArg = window) {
// thisArg.fn 指向当前函数 fn (fn.myCall)
thisArg.fn = this;
// 第一个参数为 this,所以要取剩下的参数
const args = [...arguments].slice(1);
// 执行函数
const result = thisArg.fn(...args);
// thisArg上并不存在fn,所以需要移除
delete thisArg.fn;
return result;
}
function foo() {
console.log(this.name);
}
const obj = {
name: 'litterStar'
}
const bar = function() {
foo.myCall(obj);
}
bar();
// litterStar
实现一个apply
过程很call类似,只是参数不同,不再赘述
Function.prototype.myApply = function(thisArg = window) {
thisArg.fn = this;
let result;
// 判断是否有第二个参数
if(arguments[1]) {
// apply方法调用的时候第二个参数是数组,所以要展开arguments[1]之后再传入函数
result = thisArg.fn(...arguments[1]);
} else {
result = thisArg.fn();
}
delete thisArg.fn;
return result;
}
function foo() {
console.log(this.name);
}
const obj = {
name: 'litterStar'
}
const bar = function() {
foo.myApply(obj);
}
bar();
// litterStar
实现一个bind
MDN上的解释:bind() 方法创建一个新的函数,在 bind() 被调用时,这个新函数的 this 被指定为 bind() 的第一个参数,而其余参数将作为新函数的参数,供调用时使用。
Function.prototype.myBind = function(thisArg) {
// 保存当前函数的this
const fn = this;
// 保存原先的参数
const args = [...arguments].slice(1);
// 返回一个新的函数
return function() {
// 再次获取新的参数
const newArgs = [...arguments];
/**
* 1.修改当前函数的this为thisArg
* 2.将多次传入的参数一次性传入函数中
*/
return fn.apply(thisArg, args.concat(newArgs))
}
}
const obj1 = {
name: 'litterStar',
getName() {
console.log(this.name)
}
}
const obj2 = {
name: 'luckyStar'
}
const fn = obj1.getName.myBind(obj2)
fn(); // luckyStar
手写部分的代码大部分参考了网上比较多的一些写法。手写代码的前提是一定要搞清楚这个函数是什么,怎么用,干了什么。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。