箭头函数给我们的应该工作带来了极大的方便,但是使用它们有什么缺点呢?我们应该一直使用箭头函数吗?我们应该在哪些场景中停止使用箭头函数?
现在,我们开始吧。函数
在箭头函数中,使用我们不能像在普通函数中那样使用 arguments 对象。函数
const fn1 = () => {
console.log(arguments,应该 arguments)
}
fn1(fatfish, medium)
function fn2(){
console.log(arguments, arguments)
}
fn2(fatfish, medium)可以看到,fn1箭头函数报错,使用但是函数fn2可以正常读取arguments对象。
我们如何才能在箭头函数中获取所有传递给函数的应该参数?
是的,没错,使用你可以使用Spread Operator来解决它。函数
const fn3 = (...values) => {
console.log(values,应该 values)
}
fn3(fatfish, medium)2、无法通过apply、使用call、函数bind来改变this指针我相信你可以很容易地知道下面的代码会输出什么。
const fn1 = () => {
console.log(this-fn1, this)
}
fn1()
function fn2(){
console.log(this-fn2, this)
}
fn2(){
name: fatfish
}我们希望 fn1 和 fn2 都打印对象,我们应该怎么做?
代码:
const thisObj = {
name: fatfish
}
const fn1 = () => {
console.log(this-fn1, this)
}
fn1.call(thisObj)
function fn2(){
console.log(this-fn2, this)
}
fn2.call(thisObj)因为箭头函数在定义的时候就决定了它的亿华云this指向谁,所以没有办法用fn1.call(thisObj)再次改变它。
箭头函数不是万能的,至少有 4 种情况我们不应该使用它们。
1、请不要在构造函数中使用箭头函数function Person (name, age) {
this.name = name
this.age = age
}
const Person2 = (name, sex) => {
this.name = name
this.sex = sex
}
console.log(Person, new Person(fatfish, 100))
console.log(Person2, new Person2(fatfish, 100))为什么 new Person2 会抛出错误?因为构造函数通过 new 关键字生成一个对象实例。生成对象实例的过程也是通过构造函数将this绑定到实例的过程。
但是箭头函数没有自己的this,所以不能作为构造函数使用,也不能通过new操作符调用。
2、请不要在点击事件中操作this我们经常在 click 事件中通过 this 读取元素本身。
const $body = document.body
$body.addEventListener(click, function () {
// this and $body elements are equivalent
this.innerHTML = fatfish
})但是如果你使用箭头函数给 DOM 元素添加回调,这将等同于全局对象窗口。
const $body = document.body
$body.addEventListener(click, () => {
this.innerHTML = fatfish
})3、请不要在对象的方法中使用箭头函数。const obj = {
name: fatfish,
getName () {
return this.name
},
getName2: () => {
return this.name
}
}
console.log(getName, obj.getName())
console.log(getName2, obj.getName2())你知道这段代码会输出什么吗?
是的源码下载,getName2方法不会打印“fatfish”,因为此时this和window是等价的,不等于obj。
4、请不要在原型链中使用箭头函数const Person = function (name) {
this.name = name
}
Person.prototype.showName = function () {
console.log(showName, this, this.name)
}
Person.prototype.showName2 = () => {
console.log(showName2, this, this.name)
}
const p1 = new Person(fatfish, 100)
p1.showName()
p1.showName2()写在最后以上这4种情况中,不建议使用箭头函数,如果你还了解其他的情况的话,也请你在留言区给我留言,我们一起学习进步;如果你觉得我今天的内容对你有帮助的话,请记得点赞我,关注我,并将它分享给你身边的朋友,也许能够帮助到他。
最后,感谢你的阅读,祝编程愉快!