react 用es6写法 以及问题

  class Count extends React.Component{
      constructor(props){
         super(props)
         this.state={count:5}
      }
      handleClick(event) {
        this.setState({count: ++this.state.count});
      }
      render() {
        return (
          

{this.state.count}点击我,递增

); } } ReactDOM.render(,document.getElementById('example'));

注意:点击事件,要使用bind(this) ,改变this指向 或者使用箭头函数

你可能感兴趣的:(react 用es6写法 以及问题)