前端框架React - Components and Props

1.Functional and Class Components

They accept arbitrary inputs (called "props") and return React elements describing what should appear on the screen.
控件可以接受任意输入(叫做props),返回要显示在screen上的React 元素。

function Welcome(props) {
  return <h1>Hello,{props.name}</h1>;
}

This function is a valid React component because it accepts a single "props" object argument with data and returns a React element. We call such components "functional" because they are literally JavaScript functions.

这个组件是好的,因为接受了一个参数,并且返回了一个React元素。
也可以用ES6的class来定义一个组件。
用props来代表这个组件接受到的参数。
class Welcome extends React.Component {
  render() {
    return <h1>Hello,{this.props.name}</h1>;
  }
}

相关文章

一、前言 在组件方面react和Vue一样的,核心思想玩的就是组件...
前言: 前段时间学习完react后,刚好就接到公司一个react项目...
前言: 最近收到组长通知我们项目组后面新开的项目准备统一技...
react 中的高阶组件主要是对于 hooks 之前的类组件来说的,如...
我们上一节了解了组件的更新机制,但是只是停留在表层上,例...
我们上一节了解了 react 的虚拟 dom 的格式,如何把虚拟 dom...