1.2推荐语法
this.setState((sate,props)=>{
})
参数state:表示最新的state
参数props:表示最新的props
//导入react
import React from 'react'
import ReactDOM from 'react-dom'
//导入组件
// 约定1:类组件必须以大写字母开头
// 约定2:类组件应该继承react父类 从中可以使用父类的方法和属性
// 约定3:组件必须提供render方法
// 约定4:render方法必须有返回值
class App extends React {
constructor(props) {
super(props)
console.log('生命周期钩子函数:construtor')
}
state={
count:1
}
//异步操作
handleClick=()=>{
// this.setState({
// count:this.state.count+1
// })
this.setState((state,props)=>{
return {
count:state.count+1
}
})
console.log(this.state.count)//1
}
//初始化state
//1进行dom操作
//2发送网络请求
render() {
console.log('生命周期钩子函数:render')
console.log(this.props,"props")
return (
<div id="title">
<h1>计数器:{this.state.count}</h1>
<button onClick={this.handleClick}>+1</button>
</div>
)
}
}
ReactDOM.render(<App></App>, document.getElementById('root'))