美文网首页
箭头函数

箭头函数

作者: 小泡_08f5 | 来源:发表于2019-06-26 19:14 被阅读0次

先来看看箭头函数的基本语法:

let func = value => value;

// 相当于
let func = function (value) {
    return value;
};

如果需要给函数传入多个参数:

let func = (value, num) => value * num;

如果函数的代码块需要多条语句:

let func = (value, num) => {
    return value * num
};

如果需要直接返回一个对象:

let func = (value, num) => ({total: value * num})

与变量解构结合:

let func = ({value, num}) => ({total: value * num})

// 使用
var result = func({
    value: 10,
    num: 10
})

console.log(result); // {total: 100}
比较

比较一下箭头函数与普通函数的区别:
1. 没有this
2. 没有 arguments
3. 不能通过new 关键字调用
4. 没有new.target
5. 没有原型
6. 没有 super

1. 没有this
箭头函数没有this,所以需要通过查找作用域链来确定this的值。

这就意味着箭头函数被非箭头函数包含,this绑定的就是最近一层非箭头函数的this

模拟一个例子:
点击一个按钮,改变该按钮的背景色

为了方便开发, 我们抽离了一个Button组件,当需要使用的时候,直接可以用下面代码调用:

// 传入元素 id 值即可绑定该元素点击时改变背景色的事件
new Button("button")

HTML代码如下:

<button id="button">点击变色</button>

js代码如下:

// 箭头函数没有this,所以需要通过查找作用域链来确定this的值
        function Button(id) {
            this.element = document.querySelector("#" + id);
            this.bindEvent();
        }
        
        Button.prototype.bindEvent = function() {
           this.element.addEventListener("click", this.setBgColor, false); 
            // this.element.addEventListener("click", this.setBgColor.bind(this), false); // es5的解决办法
            // this.element.addEventListener("click", (e) => {this.setBgColor(e)}, false);
        };
        
        Button.prototype.setBgColor = function() {
            console.log(this);
            this.element.style.backgroundColor = '#1abc9c'
        };
        
        var button = new Button("button");

点击按钮报错了


image.png

看着好像没有问题, 结果却是报错。
打印一下代码里的this


image.png

这是因为当使用addEventListener() 为一个元素注册事件的时候, 事件函数里的this值是该元素的引用, 所以如果我们在setBgColor中 console.log(this), this指向的是按钮元素, 那this.element就是undefined了,所以报错了

既然this都指向了按钮元素, 那我们直接修改setBgColor函数为

Button.prototype.setBgColor = function() {
    this.style.backgroundColor = '#1abc9c'
};

问题确实可以解决了, 但是在实际的开发中,可能会在setBgColor中还调用其他的函数, 比如写成这种:

Button.prototype.setBgColor = function() {
    this.setElementColor();
    this.setOtherElementColor();
};

所以还是希望setBgColor中的this是指向实例对象的, 这样就可以调用其他的函数,
可以利用bind显式绑定setBgColor()的this为实例对象

Button.prototype.bindEvent = function() {
    this.element.addEventListener("click", this.setBgColor.bind(this), false);
};

现在用ES6, 可以更好的解决这个问题:

this.element.addEventListener("click", (e) => {this.setBgColor(e)}, false);

由于箭头函数没有this, 所以会向外层查找this的值, 即bindEvent中的this, 此时this指向实例对象,所以可以正确的调用this.setBgColor方法, 而this.setBgColor中的this也会正确指向实例对象。

在这里再额外提一点, 就是注意bindEvent和setBgColor在这里使用的是普通函数的形式,而非箭头函数, 如果我们改成箭头函数, 会导致函数里的this指向window(非严格模式下)

最后,因为箭头函数没有this, 所以也不能用call(), apply(), bind()这些方法改变this指向,

var value = 1;
var result = (() => this.value).bind({value: 2})();
console.log(result); // 1

2. 没有arguments
箭头函数没有自己的arguemnts, 不过箭头函数可以访问外围函数的arguments对象

constant = () => {
    console.log(arguments);
}

var result = constant(1);
console.log(result()); 
image.png
function constant() {
    return () => arguments[0]
}

var result = constant(1);
console.log(result()); // 1
image.png

此时的箭头函数访问的是外围函数constant的arguments

那如果我们就是要访问箭头函数的参数呢?
可以通过命名参数或者rest参数的形式访问参数

let nums = (...nums) => console.log(nums);
nums(1,2,3)
image.png

3. 不能通过new关键字调用

var Foo = () => {};
var foo = new Foo(); // TypeError: Foo is not a constructor

箭头函数没有[[Construct]]方法,不能被用作构造函数,如果通过new的方式调用,会报错。

因为JavaScript函数有两个内部方法: [[Call]] 和 [[Construct]],
当通过new 调用函数时, 执行 [[Construct]]方法,创建一个实例对象,然后再执行函数体, 将this绑定到实例上。
当直接调用的时候, 执行[[Call]] 方法,直接执行函数体。

4. 没有new.target
因为不能使用new调用,所以也没有new.target值

5. 没有原型
由于不能使用new调用箭头函数, 所以也没有构建原型的需求,于是箭头函数也不存在prototype这个属性

var Foo = () => {};
console.log(Foo.prototype); // undefined

6. 没有super
连原型都没有,自然也不能通过super来访问原型的属性,所以箭头函数也是没有super的,不过很this,arguments,new.targer由于,这些值由外围最近一层非箭头函数决定。

总结

箭头函数表达式的语法比函数表达式更端,并且不绑定自己的this,arguments, super或new.target. 这些函数表达式最适合用于非方法函数,并且它们不能用作构造函数。

那什么是非方法函数?
对象属性中的函数被称为方法, 那么非方法函数就是指不被用作对象属性中的函数了。

var obj = {
  i: 10,
  b: () => console.log(this.i, this),
  c: function() {
    console.log( this.i, this)
  }
}
obj.b();
// undefined Window
obj.c();
// 10, Object {...}

自执行函数
自执行函数形式为:

image.png
最后改成
((() => {
    console.log(1)
})()) // 1

相关文章

  • ES6~箭头函数

    什么是箭头函数 单表达式箭头函数 相当于 多表达式箭头函数 箭头函数相当于匿名函数,并且简化了函数定义。箭头函数有...

  • 箭头函数和立即执行函数

    箭头函数 箭头函数和普通函数有什么区别?如果把箭头函数转换为不用箭头函数的形式,如何转换主要是this的差别,箭头...

  • 学习 ES 6 箭头函数

    箭头函数的用法 ES6 允许使用“箭头”(=>)定义函数。 箭头函数的一个用处是简化回调函数。 箭头函数 this...

  • 箭头函数

    箭头函数 箭头函数能让this的指向固定化 分析:1)第一个setInterval()中使用了箭头函数,箭头函数使...

  • TS  笔记this

    this 箭头函数在箭头函数创建的地方获得this;非箭头函数,在调用函数的地方获得this如图

  • 箭头函数和数组

    箭头函数&数组 箭头函数 特点: 没有 this 没有 arguments 没有prototype在箭头函数中使用...

  • 箭头函数

    箭头函数 为什么使用箭头函数

  • 箭头函数中this的指向

    箭头函数在平时开发中用着非常爽,箭头函数有什么特点呢 箭头函数不能够当做构造函数使用 箭头函数没有argument...

  • js学习笔记4(函数)

    1.箭头函数 ES6新增属性。箭头函数特别适合嵌入函数的场景。 箭头函数虽然语法简介,但是很多场合不适用。箭头函数...

  • js理解普通函数和箭头函数

    普通函数: 箭头函数: 区别: 构造函数和原型 箭头函数不能作为构造函数 不能new。会报错 箭头函数没有原型属性...

网友评论

      本文标题:箭头函数

      本文链接:https://www.haomeiwen.com/subject/djvqcctx.html