您的位置:首页 > Web前端 > React

React总结3:ES6下React组件的写法示例代码

2017-07-02 22:57 831 查看
一:定义React组件

class Hello extends React.Component {
render() {
return <h1>Hello, {this.props.value}</h1>;
}
}


二:声明prop类型与默认prop

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


三、设置初始state

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


四、自动绑定

lass SayHello extends React.Component {
constructor(props) {
super(props);
this.state = {message: 'Hello!'};
// 这行很重要
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>
);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: