react新版本生命周期钩子函数及用法详解
和旧的生命周期相比
准备废弃三个钩子,已经新增了两个钩子
React16 之后有三个生命周期被废弃(但并没有删除)
- ponentWillMount( 组件将要挂载的钩子)
- ponentWillReceiveProps(组件将要接收一个新的参数时的钩子)
- ponentWillUpdate(组件将要更新的钩子)
新版本的生命周期新增的钩子
- getDerivedStateFromProps
- 通过参数可以获取新的属性和状态
- 该函数是静态的
- 该函数的返回值会覆盖掉组件状态
getSnapshotBeforeUpdate
- 真实的DOM构建完成,但还未实际渲染到页面中。
- 在该函数中,通常用于实现一些附加的dom操作
- 该函数的返回值,会作为ponentDidUpdate的第三个参数
getDerivedStateFromProps
getDerivedStateFromProps不是给实例用的,需要将它定义为一个静态方法。且需要给一个返回值
返回值可以使 state Obj 也可以是null
返回值是 state Obj 的话直接将之前的覆盖 且无法改变
返回null 对其他任何功能都没有影响
// 从props哪里得到一个派生的状态 static getDerivedStateFromProps(props,state){ return props }
若 state的值 在人和时候都取决与 props 时,可以使用getDerivedStateFromProps
<div id="test"></div> <!-- 引入react核心库 --> <script src="../js/17.0.1/react.development.js"></script> <!-- 引入react-dom,用于支持react操作dom --> <script src="../js/17.0.1/react-dom.development.js"></script> <!-- 引入babel 用于将jsx 转换为 js --> <script src="../js/17.0.1/babel.min.js"></script> <script type='text/babel'> // 创建组件 class Count extends React.Component{ // 构造器 constructor(props){ console.log('Count---constructor') super(props) // 初始化状态 this.state = {count:0} } // 挂载完成的钩子 ponentDidMount(){ console.log('Count---ponentDidMount') } // 卸载组件按钮的回调 death=()=>{ ReactDOM.unmountComponentAtNode(document.getElementById('test')) } // 实现 +1 add =()=>{ // 获取原状态 const {count} = this.state // 更新状态 this.setState({count:count+1}) } // 强制更新按钮的回调 force=()=>{ this.forceUpdate() } static getDerivedStateFromProps(props,state){ console.log('getDerivedStateFromProps',props,state) return props } // 控制组件更新的阀门 shouldComponentUpdate(){ console.log('Count---shouldComponentUpdate') // 如果返回值为false阀门关闭 默认为true return true } // 组件更新完毕的钩子 ponentDidUpdate(){ console.log('Count---ponentDidUpdate') } // 组件将要卸载的钩子 ponentWillUnmount(){ console.log('Count---ponentWillUnmount'); } 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={166}/>,document.getElementById('test')) </script>
执行结果
getSnapshotBeforeUpdate
返回值可以是null 或者 一个快照
如果是null 则没有任何影响
如果是一个快照则可以将返回值传递给ponentDidUpdate 的第三个参数
ponentDidUpdate 能接收的三个参数
分别是
先前的props、先前的state和getSnapshotBeforeUpdate返回的快照
prevprops、 prevstate、snapshotValue
<div id="test"></div> <!-- 引入react核心库 --> <script src="../js/17.0.1/react.development.js"></script> <!-- 引入react-dom,用于支持react操作dom --> <script src="../js/17.0.1/react-dom.development.js"></script> <!-- 引入babel 用于将jsx 转换为 js --> <script src="../js/17.0.1/babel.min.js"></script> <script type='text/babel'> // 创建组件 class Count extends React.Component{ // 构造器 constructor(props){ console.log('Count---constructor') super(props) // 初始化状态 this.state = {count:0} } // 挂载完成的钩子 ponentDidMount(){ console.log('Count---ponentDidMount') } // 卸载组件按钮的回调 death=()=>{ ReactDOM.unmountComponentAtNode(document.getElementById('test')) } // 实现 +1 add =()=>{ // 获取原状态 const {count} = this.state // 更新状态 this.setState({count:count+1}) } // 强制更新按钮的回调 force=()=>{ this.forceUpdate() } static getDerivedStateFromProps(props,state){ console.log('getDerivedStateFromProps',props,state) return null } getSnapshotBeforeUpdate(){ console.log('getSnapshotBeforeUpdate'); return "eee" } // 控制组件更新的阀门 shouldComponentUpdate(){ console.log('Count---shouldComponentUpdate') // 如果返回值为false阀门关闭 默认为true return true } // 组件更新完毕的钩子 ponentDidUpdate(preProps,preState,snapshotValue){ console.log('Count---1ponentDidUpdate',preProps,preState,snapshotValue); } // 组件将要卸载的钩子 ponentWillUnmount(){ console.log('Count---ponentWillUnmount'); } 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={166}/>,document.getElementById('test')) </script>
生命周期的三个阶段(新)
一、 初始化阶段: 由ReactDOM.render()触发—初次渲染
constructor()getDerivedStateFromPropsrender()ponentDidMount()
二、 更新阶段: 由组件内部this.setSate()或父组件重新render触发
getDerivedStateFromPropsshouldComponentUpdate()render()getSnapshotBeforeUpdateponentDidUpdate()
三、卸载组件: 由ReactDOM.unmountComponentAtNode()触发
ponentWillUnmount()
重要的勾子
render初始化渲染或更新渲染调用ponentDidMount开启监听, 发送ajax请求ponentWillUnmount做一些收尾工作, 如: 清理定时器
即将废弃的勾子
- ponentWillMount
- ponentWillReceiveProps
- ponentWillUpdate
现在使用会出现警告,下一个大版本需要加上UNSAFE_前缀才能使用,以后可能会被彻底废弃,不建议使用。
到此这篇关于react新版本生命周期钩子函数的文章就介绍到这了,更多相关react 生命周期 钩子函数内容请搜索狼蚁SEO以前的文章或继续浏览狼蚁网站SEO优化的相关文章希望大家以后多多支持狼蚁SEO!
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程