React Native 控件生命周期

react native 版本号0.55.4

React Native 生命周期分为三个阶段:

1.初始阶段
2.运行和交互阶段
3.销毁阶段

每个生命周期阶段对应的方法

1.初始阶段

constructor() //构造方法
componentWillMount() //即将记载
componentDidMount() //加载完成

2.运行和交互阶段

componentWillUpdate() //组件个即将更新
render() //组件渲染展示的方法
componentDidUpdate() //组件更新完成

3.销毁阶段

componentWillUnmount()//组件已被卸载

image.png

代码演示以及日志

1.RN控件的生命周期
执行原理:加载一个页面,将这个页面展示出来,观察rn控件生命周期的运行情况。

import React, {Component} from 'react'
import {Text, View} from 'react-native'
export default class Index extends Component {
    constructor(props) {
        super(props);
        console.log('1.constructor');
    }
    componentWillMount(){
        console.log('2.componentWillMount');
    }
    componentWillUpdate(){
        console.log('3.componentWillUpdate');
    }
    render() {
        console.log('4.render');
        return (
            <View>
                <Text>Hello world!</Text>
            </View>
        )
    }
    componentDidUpdate(prevProps, prevState){
        console.log('5.componentDidUpdate');
    }
    componentDidMount(){
        console.log('6.componentDidMount');
    }
    componentWillUnmount(){
        console.log('7.componentWillUnmount');
    }
}

加载Index控件生命周期执行的日志如下:

image.png

2.执行增加一个state属性,在componentDidMount的时机更改值。
执行原理:现在加载组件,再在组件加载完成之后,componentDidMount方法中执行更改state值,让组件更新,以达到执行更新组件生命周期的逻辑。

当组件接收到新的属性和状态改变的话,就会调用componentDidUpdate(prevProps, prevState)这个方法
输入参数 nextProps 是即将被设置的属性,旧的属性还是可以通过 this.props 来获取通过调用 this.setState() 来更新,nextState 表示组件即将更新的状态值。这个函数的返回值决定是否需要更新组件,如果 true 表示需要更新,继续走后面的更新流程。否者,则不更新,直接进入等待状态

import React, {Component} from 'react'
import {Text, View} from 'react-native'
export default class Index extends Component {
    constructor(props) {
        super(props);
        console.log('1.constructor');
        this.state={
            data:'hello world! 123'
        }
    }
    componentWillMount(){
        console.log('2.componentWillMount');
    }
    componentWillUpdate(){
        console.log('3.componentWillUpdate');
    }
    render() {
        console.log('4.render');
        return (
            <View>
                <Text>Hello world! {this.state.data}</Text>
            </View>
        )
    }
    componentDidUpdate(prevProps, prevState){
        console.log('5.componentDidUpdate');
    }
    componentDidMount(){
        console.log('6.componentDidMount');
        this.setState({
            data:'hw 123'
        });
    }
    componentWillUnmount(){
        console.log('7.componentWillUnmount');
    }
}

加载Index控件执行state更新的生命周期流程的日志如下:


image.png

测试卸载的逻辑,增加了一个view
执行原理:讲ViewTest组件显展示出来,在组件加载完成之后,在将状态改变,组件更新,将ViewTest不显示,就会执行ViewTest的卸载逻辑。

当组件要被从界面上移除的时候,就会调用componentWillUnmount()这个方法。在这个函数中,可以做一些组件相关的清理工作,例如取消计时器、网络请求等。

import React, {Component} from 'react'
import {Text, View} from 'react-native'
export default class Index extends Component {
    constructor(props) {
        super(props);
        console.log('1.constructor');
        this.state={
            data:'hello world! 123',
            showViewTest:true
        }
    }
    componentWillMount(){
        console.log('2.componentWillMount');
    }
    componentWillUpdate(){
        console.log('3.componentWillUpdate');
    }
    render() {
        console.log('4.render');
        let v = (<Text>Hello world! </Text>);
        if(this.state.showViewTest){
            v = (<ViewTest/>);
        }
        return (
            <View>
                <Text>Hello world! {this.state.data}</Text>
                {v}
            </View>
        )
    }
    componentDidUpdate(prevProps, prevState){
        console.log('5.componentDidUpdate');
    }
    componentDidMount(){
        console.log('6.componentDidMount');
        this.setState({
            data:'hw 123',
            showViewTest:false
        });
    }
    componentWillUnmount(){
        console.log('7.componentWillUnmount');
    }
}
class ViewTest extends Component {
    constructor(props) {
        super(props);
        console.log('ViewTest---constructor---');
    }
    render() {
        console.log('ViewTest---render---');
        return (<Text>ViewTest! </Text>
        )
    }
    componentWillUnmount(){
        console.log('ViewTest---componentWillUnmount---');
    }
}

加载Index控件执行卸载流程的日志如下:


image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 218,941评论 6 508
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 93,397评论 3 395
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 165,345评论 0 356
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,851评论 1 295
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,868评论 6 392
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,688评论 1 305
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,414评论 3 418
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 39,319评论 0 276
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,775评论 1 315
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,945评论 3 336
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 40,096评论 1 350
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,789评论 5 346
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,437评论 3 331
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,993评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 33,107评论 1 271
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 48,308评论 3 372
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 45,037评论 2 355

推荐阅读更多精彩内容