用ES6写法,这里的props是获取不到的,需要在constructor里加入
// This binding is necessary to make `this` work in the callback this.handleClick = this.handleClick.bind(this);这句话来绑定自身的事件,才能获取到需要的props
用ES6写法,这里的props是获取不到的,需要在constructor里加入
// This binding is necessary to make `this` work in the callback this.handleClick = this.handleClick.bind(this);这句话来绑定自身的事件,才能获取到需要的props