Sample Code for writing React components in ES6, es6react

Source: Internet
Author: User

Sample Code for writing React components in ES6, es6react

This article mainly shares with you the React component writing examples under ES6. Let's take a look at the detailed introduction below:

I. Define React Components

class Hello extends React.Component { render() {  return 

Ii. Declare the prop type and default prop

class Hello extends React.Component { // ...}Hello.propTypes = { value: React.PropTypes.string};Hello.defaultProps = { value: 'world'};

3. Set the initial state

class Hello extends React.Component { constructor(props) {  super(props);  this.state = {count: props.initialCount}; } // ...}

4. Automatic Binding

Class SayHello extends React. Component {constructor (props) {super (props); this. state = {message: 'Hello! '}; // This line is very important this. handleClick = this. handleClick. bind (this);} handleClick () {alert (this. state. message);} render () {// Because 'this. handleclick' is bound, we can use it as an event handler. return (<button onClick = {this. handleClick}> Say hello </button> );}}

Summary

The above is all the content of this article. I hope the content of this article will help you in your study or work. If you have any questions, please leave a message, thank you for your support.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.