Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

React ES6 箭头函数


箭头函数

箭头函数允许我们编写更短的函数语法。

示例

之前

hello = function() {
  return "Hello World!";
}

自己试一试 »

示例

使用箭头函数

hello = () => {
  return "Hello World!";
}

自己试一试 »

它变得更短了!如果函数只有一个语句,并且该语句返回一个值,则可以删除括号return关键字。

示例

箭头函数默认返回值

hello = () => "Hello World!";

自己试一试 »

注意:这仅在函数只有一个语句时有效。

如果您有参数,则将它们传递到括号内。

示例

带参数的箭头函数

hello = (val) => "Hello " + val;

自己试一试 »

事实上,如果您只有一个参数,您也可以跳过括号。

示例

不带括号的箭头函数

hello = val => "Hello " + val;
this

自己试一试 »


w3schools CERTIFIED . 2022

获取认证!

完成 React 模块,做练习,参加考试并获得 w3schools 认证!!

$95 报名

this 怎么样?

与普通函数相比,箭头函数中this的处理方式也不同。

简而言之,在箭头函数中,没有this的绑定。

在普通函数中,this关键字表示调用该函数的对象,该对象可以是窗口、文档、按钮或任何其他对象。

使用箭头函数时,this关键字始终表示定义箭头函数的对象。

让我们来看两个例子来理解其中的区别。

这两个示例都调用了一个方法两次,第一次是在页面加载时,第二次是在用户点击按钮时。

第一个示例使用普通函数,第二个示例使用箭头函数。

结果表明,第一个示例返回两个不同的对象(窗口和按钮),第二个示例两次返回 Header 对象。

示例

使用普通函数时,this表示调用该函数的对象。

class Header {
  constructor() {
    this.color = "Red";
  }

//Regular function:
  changeColor = function() {
    document.getElementById("demo").innerHTML += this;
  }
}

const myheader = new Header();

//The window object calls the function:
window.addEventListener("load", myheader.changeColor);

//A button object calls the function:
document.getElementById("btn").addEventListener("click", myheader.changeColor);

自己试一试 »

示例

使用箭头函数时,this表示 Header 对象,无论谁调用该函数。

class Header {
  constructor() {
    this.color = "Red";
  }

//Arrow function:
  changeColor = () => {
    document.getElementById("demo").innerHTML += this;
  }
}

const myheader = new Header();


//The window object calls the function:
window.addEventListener("load", myheader.changeColor);

//A button object calls the function:
document.getElementById("btn").addEventListener("click", myheader.changeColor);

自己试一试 »

在使用函数时,请记住这些差异。有时普通函数的行为是您想要的,如果不是,请使用箭头函数。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.