1推荐使用class的实例方法

//导入react

import React from 'react'


import ReactDOM from 'react-dom'

//导入组件


// 约定1:类组件必须以大写字母开头


// 约定2:类组件应该继承react.component父类 从中可以使用父类的方法和属性


// 约定3:组件必须提供render方法


// 约定4:render方法必须有返回值

class HelloWorld extends React.Component {
//初始化state

state = {
geyao: 0,
}
constructor(){
super()

}
//抽离出来 this报错 事件处理中的this为underfine
handleNum=()=>{
this.setState({
geyao: this.state.geyao + 1,
})
}
render() {
return (
<div>
<h1>{this.state.geyao}</h1>
<button onClick={this.handleNum}>点击加一</button>
</div>
)
}
}

ReactDOM.render(<HelloWorld />, document.getElementById('root'))

2箭头函数

<button onClick={()=>this.handleNum}>点击加一</button>

3bind函数

this.handleNum=this.handleNum.bind(this)