当前位置:   article > 正文

1.10函数_duplicate parameter name not allowed in this conte

duplicate parameter name not allowed in this context

函数参数的扩展

默认参数

  1. function fn(name,age=17){
  2. console.log(name+","+age);
  3. }
  4. fn("Amy",18); // Amy,18
  5. fn("Amy",""); // Amy,
  6. fn("Amy"); // Amy,17

注意点:使用函数默认参数时,不允许有同名参数。

  1. // 不报错
  2. function fn(name,name){
  3. console.log(name);
  4. }
  5. // 报错
  6. //SyntaxError: Duplicate parameter name not allowed in this context
  7. function fn(name,name,age=17){
  8. console.log(name+","+age);
  9. }

只有未传递参数,或者参数为 undefined 时,才会使用默认参数,null 值被认为有效值传递

  1. function fn(name,age=17){
  2. console.log(name+","+age);
  3. }
  4. fn("Amy",null); // Amy,null

 函数参数默认值存在暂时性死区,在函数参数默认值表达式中,还未初始化赋值的参数值无法作为其他参数的默认值。

  1. function f(x,y=x){
  2. console.log(x,y);
  3. }
  4. f(1); // 1 1
  5. function f(x=y){
  6. console.log(x);
  7. }
  8. f(); // ReferenceError: y is not defined

不定参数

形如,...变量名,由...加上一个具名参数标识符组成。具名参数只能放在参数组的最后,并且有且只有一个不定参数。

  1. function f(...values){
  2. console.log(values.length);
  3. }
  4. f(1,2); //2
  5. f(1,2,3,4); //4

箭头函数

1、相比普通函数,箭头函数有更加简洁的语法。

  1. var f = v => v;
  2. //等于
  3. var f = function(v){
  4. return v;
  5. }
  6. f(1); //1

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

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

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

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

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

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

2、箭头函数不绑定this,会捕获其所在上下文的this,作为自己的this。

箭头函数的外层如果有普通函数,那么箭头函数的this就是这个外层的普通函数的this

箭头函数的外层如果没有普通函数,那么箭头函数的this就是全局变量

下面所示:外层是普通函数

下面所示:外层不是普通函数

  1. var func = () => {
  2. // 箭头函数里面没有 this 对象,
  3. // 此时的 this 是外层的 this 对象,即 Window
  4. console.log(this)
  5. }
  6. func(55) // Window

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

  1. function fn(){
  2. setTimeout(()=>{
  3. // 定义时,this 绑定的是 fn 中的 this 对象
  4. console.log(this.a);
  5. },0)
  6. }
  7. var a = 20;
  8. // fn 的 this 对象为 {a: 18}
  9. fn.call({a: 18}); // 18

3、注意:箭头函数不绑定arguments,取而代之用rest参数解决,同时没有super和new.target。

箭头函数没有arguments、super、new.target的绑定,这些值由外围最近一层非箭头函数决定。 

  1. var func = () => {
  2. console.log(arguments)
  3. }
  4. func(55); // ReferenceError: arguments is not defined

箭头函数可以通过拓展运算符获取传入的参数。

 

4、注意:使用call,apply,bind并不会改变箭头函数中的this指向

  1. window.name = "window_name";
  2. let f1 = function () {
  3. return this.name;
  4. };
  5. let f2 = () => this.name;
  6. let obj = { name: "obj_name" };
  7. console.log(f1.call(obj)); //obj_name
  8. console.log(f2.call(obj)); // window_name
  9. console.log(f1.apply(obj)); // obj_name
  10. console.log(f2.apply(obj)); // window_name
  11. console.log(f1.bind(obj)()); // obj_name
  12. console.log(f2.bind(obj)()); // window_name

5、注意:箭头函数是匿名函数,不能作为构造函数,不可以使用new命令,否则后抛出错误。

6、箭头函数没有原型对象prototype这个属性 

由于不可以通过new关键字调用,所以没有构建原型的需求,所以箭头函数没有prototype这个属性。

7. 不能使用yield关键字,不能用作Generator函数

箭头函数适合使用的场景

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

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

  1. // 回调函数
  2. var Person = {
  3. 'age': 18,
  4. 'sayHello': function () {
  5. setTimeout(function () {
  6. console.log(this.age);
  7. });
  8. }
  9. };
  10. var age = 20;
  11. Person.sayHello(); // 20
  12. var Person1 = {
  13. 'age': 18,
  14. 'sayHello': function () {
  15. setTimeout(()=>{
  16. console.log(this.age);
  17. });
  18. }
  19. };
  20. var age = 20;
  21. Person1.sayHello(); // 18

不适合使用的场景(两种场景)

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

  1. var Person = {
  2. 'age': 18,
  3. 'sayHello': ()=>{
  4. console.log(this.age);
  5. }
  6. };
  7. var age = 20;
  8. Person.sayHello(); // 20
  9. // 此时 this 指向的是全局对象
  10. var Person1 = {
  11. 'age': 18,
  12. 'sayHello': function () {
  13. console.log(this.age);
  14. }
  15. };
  16. var age = 20;
  17. Person1.sayHello(); // 18
  18. // 此时的 this 指向 Person1 对象

2、需要动态 this 的时候

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

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


arguments辨析

arguments对象是所有非箭头函数中都可用的局部变量

如何将arguments对象转换为数组

  1. 通过slice
  2. 通过拓展运算符
  3. 通过Array.from
  1. var args = Array.prototype.slice.call(arguments);
  2. var args = [].slice.call(arguments);
  3. const args = [...arguments];
  4. const args = Array.from(arguments);

 arguments函数如何调用自身函数?

以下是可以正常运行的

  1. function factorial (n) {
  2. return !(n > 1) ? 1 : factorial(n - 1) * n;
  3. }
  4. [1,2,3,4,5].map(factorial);

但是作为匿名函数则不行 

  1. [1,2,3,4,5].map(function (n) {
  2. return !(n > 1) ? 1 : /* what goes here? */ (n - 1) * n;
  3. });

解决:arguments.callee

arguments要想调用自身的匿名函数,可以通过arguments.callee来调用。

  1. [1,2,3,4,5].map(function (n) {
  2. return !(n > 1) ? 1 : arguments.callee(n - 1) * n;
  3. });

 


这一次,彻底搞懂箭头函数_Always--Learning的博客-CSDN博客_箭头函数

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

闽ICP备14008679号