微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

前端框架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>;
  }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐