加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

前端框架React - Components and Props

发布时间:2020-12-15 07:28:10 所属栏目:百科 来源:网络整理
导读: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(p

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>;
  }
}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读