//导入react
import React from 'react'
import ReactDOM from 'react-dom'
//导入组件
// 约定1:类组件必须以大写字母开头
// 约定2:类组件应该继承react.component父类 从中可以使用父类的方法和属性
// 约定3:组件必须提供render方法
// 约定4:render方法必须有返回值
class App extends React.Component {
constructor(props) {
super(props)
console.log('生命周期钩子函数:construtor')
}
state={
number:0
}
shouldComponentUpdate(nextProps,nextState){
//根据条件判断渲染true或者false
//如果前后两次数据相同就不用render
if(nextState.number===this.state.number){
return false
}
return true
}
handleClick=()=>{
this.setState(()=>{
return {
number:Math.floor(Math.random()*3)
}
}
)
}
render() {
console.log('生命周期钩子函数:render')
console.log(this.props,"props")
return (
<div id="title">
<h1>随机数:{this.state.number}</h1>
<button onClick={this.handleClick}>重新生成</button>
</div>
)
}
}
ReactDOM.render(<App></App>, document.getElementById('root'))
运行结果