<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>hello_react</title>
<!-- 引入react,为了使用 React对象 -->
<script src="js/17.0.1/react.development.js"></script>
<!-- 引入 react-dom, 为了使用 ReactDOM 对象 -->
<script src="js/17.0.1/react-dom.development.js"></script>
<!-- 引入 babel, 为了 解析 JSX -->
<script src="js/17.0.1/babel.min.js"></script>
<!-- 引入prop-types,为了对 props属性的类型、必要性、默认值进行限制,全局多了一个 PropTypes对象 -->
<script src="js/17.0.1/prop-types.js"></script>
</head>
<body>
<div id="test"></div>
<script type="text/babel">
// 创建组件
class Count extends React.Component {
constructor(props) {
console.log('Count---constructor')
super(props)
this.state = {count: 0}
}
add = () => {
let {count} = this.state
this.setState({count: count+1})
}
death = () => {
ReactDOM.unmountComponentAtNode(document.getElementById('test'))
}
force = () => {
this.forceUpdate()
}
// Warning: Count: getDerivedStateFromProps() is defined as an instance method and will be ignored. Instead, declare it as a static method
// Warning: Count.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.
// 必须使用static挂在类自身。且必须返回 null 或者一个状态对象。
static getDerivedStateFromProps(props, state) {
// 可以接收到参数props标签属性和初始化的state
console.log('Count---getDerivedStateFromProps', props, state)
// return null
// 如果一旦返回一个状态对象,就会影响状态的更新。
// return {count: 109}
// 把props返回出去,当状态使用-----从props派生的状态
return props
}
// 此方法适用于罕见的用例,即 state 的值在任何时候都取决于 props。
// 派生状态会导致代码冗余,并使组件难以维护。
// 所以,了解即可。
componentDidMount() {
console.log('Count---componentDidMount')
}
componentWillUnmount() {
console.log('Count---componentWillUnmount')
}
shouldComponentUpdate() {
console.log('Count---shouldComponentUpdate')
return true
}
componentDidUpdate() {
console.log('Count---componentDidUpdate')
}
render() {
console.log('Count---render')
const {count} = this.state
return (
<div>
<h2>当前求和为{count}</h2>
<button onClick={this.add}>点我+1</button>
<button onClick={this.death}>卸载组件</button>
<button onClick={this.force}>不更改状态中的任何数据,强制更新一下</button>
</div>
)
}
}
// 挂载组件
ReactDOM.render(<Count count={199}/>,document.getElementById('test'))
</script>
</body>
</html>