时间:2021-05-18
在本章节中我们将讨论 React 组件的生命周期。
组件的生命周期可分成三个状态:
生命周期的方法有:
这些方法的详细说明,可以参考官方文档。
实例
以下实例在 Hello 组件加载以后,通过 componentDidMount 方法设置一个定时器,每隔100毫秒重新设置组件的透明度,并重新渲染:
class Hello extends React.Component { constructor(props) { super(props); this.state = {opacity: 1.0}; } componentDidMount() { this.timer = setInterval(function () { var opacity = this.state.opacity; opacity -= .05; if (opacity < 0.1) { opacity = 1.0; } this.setState({ opacity: opacity }); }.bind(this), 100); } render () { return ( <div style={{opacity: this.state.opacity}}> Hello {this.props.name} </div> ); }} ReactDOM.render( <Hello name="world"/>, document.body);运行结果
以下实例初始化 state , setNewnumber 用于更新 state。所有生命周期在 Content 组件中。
class Button extends React.Component { constructor(props) { super(props); this.state = {data: 0}; this.setNewNumber = this.setNewNumber.bind(this); } setNewNumber() { this.setState({data: this.state.data + 1}) } render() { return ( <div> <button onClick = {this.setNewNumber}>INCREMENT</button> <Content myNumber = {this.state.data}></Content> </div> ); }} class Content extends React.Component { componentWillMount() { console.log('Component WILL MOUNT!') } componentDidMount() { console.log('Component DID MOUNT!') } componentWillReceiveProps(newProps) { console.log('Component WILL RECEIVE PROPS!') } shouldComponentUpdate(newProps, newState) { return true; } componentWillUpdate(nextProps, nextState) { console.log('Component WILL UPDATE!'); } componentDidUpdate(prevProps, prevState) { console.log('Component DID UPDATE!') } componentWillUnmount() { console.log('Component WILL UNMOUNT!') } render() { return ( <div> <h3>{this.props.myNumber}</h3> </div> ); }}ReactDOM.render( <div> <Button /> </div>, document.getElementById('example'));运行结果
以上就是实例讲解React 组件生命周期的详细内容,更多关于React 组件生命周期的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了React生命周期原理与用法。分享给大家供大家参考,具体如下:React生命周期生命周期概览生命周期的状态组件的生命周期可分成三个状态:Mount
本文实例讲述了react生命周期。分享给大家供大家参考,具体如下:组件挂载:componentWillMount(组件将要挂载到页面)->render(组件挂载
SupportLibrary26.1+直接支持生命周期架构组件。使用该组件,Android生命周期的梦魇已经成为过去。再也不用担心出现Cannotperform
本文介绍了浅谈angular2组件的生命周期钩子,分享给大家,具体如下:按照生命周期执行的先后顺序,Angular生命周期接口如下所示名称时机接口范围ngOnC
本文实例讲述了Vue的生命周期操作。分享给大家供大家参考,具体如下:Vue的生命周期Vue的生命周期{{count}}Add销毁varapp=newVue({e