当前位置:   article > 正文

箭头函数_settimeout的参数是一个箭头函数,这个箭头函数的定义是在foo函数生成时生效的

settimeout的参数是一个箭头函数,这个箭头函数的定义是在foo函数生成时生效的

箭头函数

基本用法

ES6 允许使用“箭头”(=>)定义函数。

 
 
  1. var f = v => v;

上面的箭头函数等同于:

 
 
  1. var f = function(v) {
  2. return v;
  3. };

如果箭头函数不需要参数或需要多个参数,就使用一个圆括号代表参数部分。

 
 
  1. var f = () => 5;
  2. // 等同于
  3. var f = function () { return 5 };
  4. var sum = (num1, num2) => num1 + num2;
  5. // 等同于
  6. var sum = function(num1, num2) {
  7. return num1 + num2;
  8. };

如果箭头函数的代码块部分多于一条语句,就要使用大括号将它们括起来,并且使用return语句返回。

 
 
  1. var sum = (num1, num2) => { return num1 + num2; }

由于大括号被解释为代码块,所以如果箭头函数直接返回一个对象,必须在对象外面加上括号,否则会报错。

 
 
  1. // 报错
  2. let getTempItem = id => { id: id, name: "Temp" };
  3. // 不报错
  4. let getTempItem = id => ({ id: id, name: "Temp" });

如果箭头函数只有一行语句,且不需要返回值,可以采用下面的写法,就不用写大括号了。

 
 
  1. let fn = () => void doesNotReturn();

箭头函数可以与变量解构结合使用。

 
 
  1. const full = ({ first, last }) => first + ' ' + last;
  2. // 等同于
  3. function full(person) {
  4. return person.first + ' ' + person.last;
  5. }

箭头函数使得表达更加简洁。

 
 
  1. const isEven = n => n % 2 == 0;
  2. const square = n => n * n;

上面代码只用了两行,就定义了两个简单的工具函数。如果不用箭头函数,可能就要占用多行,而且还不如现在这样写醒目。

箭头函数的一个用处是简化回调函数。

 
 
  1. // 正常函数写法
  2. [1,2,3].map(function (x) {
  3. return x * x;
  4. });
  5. // 箭头函数写法
  6. [1,2,3].map(x => x * x);

另一个例子是

 
 
  1. // 正常函数写法
  2. var result = values.sort(function (a, b) {
  3. return a - b;
  4. });
  5. // 箭头函数写法
  6. var result = values.sort((a, b) => a - b);

下面是 rest 参数与箭头函数结合的例子。

 
 
  1. const numbers = (...nums) => nums;
  2. numbers(1, 2, 3, 4, 5)
  3. // [1,2,3,4,5]
  4. const headAndTail = (head, ...tail) => [head, tail];
  5. headAndTail(1, 2, 3, 4, 5)
  6. // [1,[2,3,4,5]]

使用注意点

箭头函数有几个使用注意点。

(1)函数体内的this对象,就是定义时所在的对象,而不是使用时所在的对象。

(2)不可以当作构造函数,也就是说,不可以使用new命令,否则会抛出一个错误。

(3)不可以使用arguments对象,该对象在函数体内不存在。如果要用,可以用 rest 参数代替。

(4)不可以使用yield命令,因此箭头函数不能用作 Generator 函数。

上面四点中,第一点尤其值得注意。this对象的指向是可变的,但是在箭头函数中,它是固定的。

 
 
  1. function foo() {
  2. setTimeout(() => {
  3. console.log('id:', this.id);
  4. }, 100);
  5. }
  6. var id = 21;
  7. foo.call({ id: 42 });
  8. // id: 42

上面代码中,setTimeout的参数是一个箭头函数,这个箭头函数的定义生效是在foo函数生成时,而它的真正执行要等到 100 毫秒后。如果是普通函数,执行时this应该指向全局对象window,这时应该输出21。但是,箭头函数导致this总是指向函数定义生效时所在的对象(本例是{id: 42}),所以输出的是42

箭头函数可以让setTimeout里面的this,绑定定义时所在的作用域,而不是指向运行时所在的作用域。下面是另一个例子。

 
 
  1. function Timer() {
  2. this.s1 = 0;
  3. this.s2 = 0;
  4. // 箭头函数
  5. setInterval(() => this.s1++, 1000);
  6. // 普通函数
  7. setInterval(function () {
  8. this.s2++;
  9. }, 1000);
  10. }
  11. var timer = new Timer();
  12. setTimeout(() => console.log('s1: ', timer.s1), 3100);
  13. setTimeout(() => console.log('s2: ', timer.s2), 3100);
  14. // s1: 3
  15. // s2: 0

上面代码中,Timer函数内部设置了两个定时器,分别使用了箭头函数和普通函数。前者的this绑定定义时所在的作用域(即Timer函数),后者的this指向运行时所在的作用域(即全局对象)。所以,3100 毫秒之后,timer.s1被更新了 3 次,而timer.s2一次都没更新。

箭头函数可以让this指向固定化,这种特性很有利于封装回调函数。下面是一个例子,DOM 事件的回调函数封装在一个对象里面。

 
 
  1. var handler = {
  2. id: '123456',
  3. init: function() {
  4. document.addEventListener('click',
  5. event => this.doSomething(event.type), false);
  6. },
  7. doSomething: function(type) {
  8. console.log('Handling ' + type + ' for ' + this.id);
  9. }
  10. };

上面代码的init方法中,使用了箭头函数,这导致这个箭头函数里面的this,总是指向handler对象。否则,回调函数运行时,this.doSomething这一行会报错,因为此时this指向document对象。

this指向的固定化,并不是因为箭头函数内部有绑定this的机制,实际原因是箭头函数根本没有自己的this,导致内部的this就是外层代码块的this。正是因为它没有this,所以也就不能用作构造函数。

所以,箭头函数转成 ES5 的代码如下。

 
 
  1. // ES6
  2. function foo() {
  3. setTimeout(() => {
  4. console.log('id:', this.id);
  5. }, 100);
  6. }
  7. // ES5
  8. function foo() {
  9. var _this = this;
  10. setTimeout(function () {
  11. console.log('id:', _this.id);
  12. }, 100);
  13. }

上面代码中,转换后的 ES5 版本清楚地说明了,箭头函数里面根本没有自己的this,而是引用外层的this

请问下面的代码之中有几个this

 
 
  1. function foo() {
  2. return () => {
  3. return () => {
  4. return () => {
  5. console.log('id:', this.id);
  6. };
  7. };
  8. };
  9. }
  10. var f = foo.call({id: 1});
  11. var t1 = f.call({id: 2})()(); // id: 1
  12. var t2 = f().call({id: 3})(); // id: 1
  13. var t3 = f()().call({id: 4}); // id: 1

上面代码之中,只有一个this,就是函数foothis,所以t1t2t3都输出同样的结果。因为所有的内层函数都是箭头函数,都没有自己的this,它们的this其实都是最外层foo函数的this

除了this,以下三个变量在箭头函数之中也是不存在的,指向外层函数的对应变量:argumentssupernew.target

 
 
  1. function foo() {
  2. setTimeout(() => {
  3. console.log('args:', arguments);
  4. }, 100);
  5. }
  6. foo(2, 4, 6, 8)
  7. // args: [2, 4, 6, 8]

上面代码中,箭头函数内部的变量arguments,其实是函数fooarguments变量。

另外,由于箭头函数没有自己的this,所以当然也就不能用call()apply()bind()这些方法去改变this的指向。

 
 
  1. (function() {
  2. return [
  3. (() => this.x).bind({ x: 'inner' })()
  4. ];
  5. }).call({ x: 'outer' });
  6. // ['outer']

上面代码中,箭头函数没有自己的this,所以bind方法无效,内部的this指向外部的this

长期以来,JavaScript 语言的this对象一直是一个令人头痛的问题,在对象方法中使用this,必须非常小心。箭头函数”绑定”this,很大程度上解决了这个困扰。

嵌套的箭头函数

箭头函数内部,还可以再使用箭头函数。下面是一个 ES5 语法的多重嵌套函数。

 
 
  1. function insert(value) {
  2. return {into: function (array) {
  3. return {after: function (afterValue) {
  4. array.splice(array.indexOf(afterValue) + 1, 0, value);
  5. return array;
  6. }};
  7. }};
  8. }
  9. insert(2).into([1, 3]).after(1); //[1, 2, 3]

上面这个函数,可以使用箭头函数改写。

 
 
  1. let insert = (value) => ({into: (array) => ({after: (afterValue) => {
  2. array.splice(array.indexOf(afterValue) + 1, 0, value);
  3. return array;
  4. }})});
  5. insert(2).into([1, 3]).after(1); //[1, 2, 3]

下面是一个部署管道机制(pipeline)的例子,即前一个函数的输出是后一个函数的输入。

 
 
  1. const pipeline = (...funcs) =>
  2. val => funcs.reduce((a, b) => b(a), val);
  3. const plus1 = a => a + 1;
  4. const mult2 = a => a * 2;
  5. const addThenMult = pipeline(plus1, mult2);
  6. addThenMult(5)
  7. // 12

如果觉得上面的写法可读性比较差,也可以采用下面的写法。

 
 
  1. const plus1 = a => a + 1;
  2. const mult2 = a => a * 2;
  3. mult2(plus1(5))
  4. // 12

箭头函数还有一个功能,就是可以很方便地改写 λ 演算。

 
 
  1. // λ演算的写法
  2. fix = λf.(λx.f(λv.x(x)(v)))(λx.f(λv.x(x)(v)))
  3. // ES6的写法
  4. var fix = f => (x => f(v => x(x)(v)))
  5. (x => f(v => x(x)(v)));

上面两种写法,几乎是一一对应的。由于 λ 演算对于计算机科学非常重要,这使得我们可以用 ES6 作为替代工具,探索计算机科学。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/115798?site
推荐阅读
相关标签
  

闽ICP备14008679号