箭头函数

箭头函数提供了一种更加简洁的函数书写方式。基本语法是

参数 => 函数体

基本用法:

var f = v => v;
//等价于
var f = function(a){
return a;
}
f(1); //1

当箭头函数没有参数或者有多个参数,要用 () 括起来

var f = (a,b) => a+b;
f(6,2); //8

当箭头函数函数体有多行语句,用 {} 包裹起来,表示代码块,当只有一行语句,并且需要返回结果时,可以省略 {} , 结果会自动返回。

var f = (a,b) => {
let result = a+b;
return result;
}
f(6,2); // 8

当箭头函数要返回对象的时候,为了区分于代码块,要用 () 将对象包裹起来

// 报错
var f = (id,name) => {id: id, name: name};
f(6,2); // SyntaxError: Unexpected token : // 不报错
var f = (id,name) => ({id: id, name: name});
f(6,2); // {id: 6, name: 2}

注意点:没有 this、super、arguments 和 new.target 绑定。

var func = () => {
// 箭头函数里面没有 this 对象,
// 此时的 this 是外层的 this 对象,即 Window
console.log(this)
}
func(55) // Window var func = () => {
console.log(arguments)
}
func(55); // ReferenceError: arguments is not defined

箭头函数体中的 this 对象,是定义函数时的对象,而不是使用函数时的对象。

function fn(){
setTimeout(()=>{
// 定义时,this 绑定的是 fn 中的 this 对象
console.log(this.a);
},0)
}
var a = 20;
// fn 的 this 对象为 {a: 19}
fn.call({a: 18}); // 18

不可以作为构造函数,也就是不能使用 new 命令,否则会报错

适合使用的场景

ES6 之前,JavaScript 的 this 对象一直很令人头大,回调函数,经常看到 var self = this 这样的代码,为了将外部 this 传递到回调函数中,那么有了箭头函数,就不需要这样做了,直接使用 this 就行

// 回调函数
var Person = {
'age': 18,
'sayHello': function () {
setTimeout(function () {
console.log(this.age);
});
}
};
var age = 20;
Person.sayHello(); // 20 var Person1 = {
'age': 18,
'sayHello': function () {
setTimeout(()=>{
console.log(this.age);
});
}
};
var age = 20;
Person1.sayHello(); // 18

所以,当我们需要维护一个 this 上下文的时候,就可以使用箭头函数

不适合使用的场景

定义函数的方法,且该方法中包含 this

var Person = {
'age': 18,
'sayHello': ()=>{
console.log(this.age);
}
};
var age = 20;
Person.sayHello(); // 20
// 此时 this 指向的是全局对象 var Person1 = {
'age': 18,
'sayHello': function () {
console.log(this.age);
}
};
var age = 20;
Person1.sayHello(); // 18
// 此时的 this 指向 Person1 对象

需要动态 this 的时候

var button = document.getElementById('userClick');
button.addEventListener('click', () => {
this.classList.toggle('on');
});

button 的监听函数是箭头函数,所以监听函数里面的 this 指向的是定义的时候外层的 this 对象,即 Window,导致无法操作到被点击的按钮对象

最新文章

  1. android
  2. jsgen 搭建
  3. 循环结构——whlie do whlie for for each
  4. [BZOJ 1997][HNOI2010]Planar(2-SAT)
  5. hbase 使用
  6. Linux目录规范和含义(转)
  7. Sqli-labs less 55
  8. hdu 2897(威佐夫博奕变形)
  9. RMQ 与 LCA-ST算法
  10. google jam 比赛题(设计有问题)
  11. Scrapy学习系列(一):网页元素查询CSS Selector和XPath Selector
  12. ZOJ 2866 Overstaffed Company
  13. 如何卸载Centos自带jdk
  14. IBM 3650 M3 yum upgrade后系统无法登陆问题
  15. python---memcache使用操作
  16. IntelliJ常用设置及快捷键
  17. UVALive 6893 The Big Painting hash
  18. UOJ.87.mx的仙人掌(圆方树 虚树)(未AC)
  19. HDU 1698 Just a Hook (线段树)
  20. PyQt的QString 和 QStringList

热门文章

  1. 『动善时』JMeter基础 — 37、将JMeter测试结果写入Excel
  2. “ compiler-rt”运行时runtime库
  3. 编译器设计-RunTime运行时环境
  4. sql server数据库性能优化之2-避免使用CTE公用表达式的递归【by zhang502219048】
  5. ConcurrentSkipListMap - 秒懂
  6. 备份schema并排除大表到ASM磁盘上
  7. perror()函数的使用
  8. MySQL:一条SQL是如何执行的
  9. Apache Hudi在Hopworks机器学习的应用
  10. css input 设置只读样式