美文网首页@IT·互联网程序员
React native之路(十一)ReactNative组件的

React native之路(十一)ReactNative组件的

作者: Knight_Davion | 来源:发表于2017-05-10 15:01 被阅读272次

    在Android中Activity有七个生命周期方法,ReactNative组件也不例外,合理调用这些生命周期方法是每个项目合理开发的关键。先来看看RN组件的生命周期方法流程图:


    ReactNative组件生命周期.jpg

    开始介绍之前我们先看一下RN中如何在控制台显示打印的调试信息。
    RN中通过console.log();可以用来打印调试信息,在需要调试的地方加入

    console.log('需要显示的具体信息');

    即可。

    运行程序后摇一摇手机
    会出现以下菜单

    device-2017-05-10-132831.png

    选择第二项Debug JS Remotely 。
    打开浏览器并打开开发者控制台,在控制台窗口下即可查看输出的信息,如下图所示:

    下面来分析生命周期方法

    (1)getDefaultProps()

    在组件创建之前,会先调用 getDefaultProps() ,这是全局调用一次,严格地来说,这不是组件的生命周期的一部分。在组件被创建并加载候,首先调用 getInitialState() ,来初始化组件的状态。并且当你调用这个方法时会提示你

    就是说如果需要定义默认属性得通过

    static defaultProps = {
    };

    方式来定义。

    getInitialState也是这样

    所以如果要定义state建议在constructor(props) 中来初始化组件的状态。

    (2)componentWillMount()

    这个函数调用时机是在组件创建,并初始化了状态之后,在第一次绘制 render() 之前。可以在这里做一些业务初始化操作,也可以设置组件状态。这个函数在整个生命周期中只被调用一次。

    (3)componentDidMount()

    在组件第一次绘制之后,会调用 componentDidMount(),通知组件已经加载完成。这个函数调用的时候,其虚拟 DOM 已经构建完成,你可以在这个函数开始获取其中的元素或者子组件了。需要注意的是,RN 框架是先调用子组件的 componentDidMount(),然后调用父组件的函数。从这个函数开始,就可以和 JS 其他框架交互了,例如设置计时 setTimeout 或者 setInterval,或者发起网络请求。这个函数也是只被调用一次。这个函数之后,就进入了稳定运行状态,等待事件触发。

    (4)componentWillReceiveProps(nextProps)

    如果组件收到新的属性(props),就会调用该方法。参数 nextProps 是即将被设置的属性,旧的属性还是可以通过 this.props 来获取。在这个回调函数里面,你可以根据属性的变化,通过调用 this.setState() 来更新你的组件状态,这里调用更新状态是安全的,并不会触发额外的 render() 调用。

    (5)shouldComponentUpdate(nextProps,nextState)

    当组件接收到新的属性和状态改变的话,都会触发调用该方法。参数 nextProps 和上面的 componentWillReceiveProps 函数一样,nextState 表示组件即将更新的状态值。这个函数的返回值决定是否需要更新组件,如果 true 表示需要更新,继续走后面的更新流程。否者,则不更新,直接进入等待状态。
    默认情况下,这个函数永远返回 true 用来保证数据变化的时候 UI 能够同步更新。在大型项目中,你可以自己重载这个函数,通过检查变化前后属性和状态,来决定 UI 是否需要更新,能有效提高应用性能。

    (6)componentWillUpdate(nextProps,nextState)

    如果组件状态或者属性改变,并且上面的 shouldComponentUpdate(...) 返回为 true,就会开始准更新组件,并调用该方法。输入参数与 shouldComponentUpdate 一样,在这个回调中,可以做一些在更新界面之前要做的事情。需要特别注意的是,在这个函数里面,你就不能使用 this.setState 来修改状态。这个函数调用之后,就会把 nextProps 和 nextState 分别设置到 this.props 和 this.state 中。紧接着这个函数,就会调用 render() 来更新界面了。

    (7)componentDidUpdate(prevProps,prevState)

    调用了 render() 更新完成界面之后,会调用该方法来得到通知,因为到这里已经完成了属性和状态的更新了,此函数的输入参数变成了 prevProps 和 prevState。

    (8)componentWillUnmount()

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

    (9)constructor(props)

    初始化时调用一次,并且是在componentWillMount()之前调用。

    完整调试代码如下:

    import React, { Component } from 'react';
    import {
      AppRegistry,
      StyleSheet,
      Text,
      Alert,
      Button,
      View
    } from 'react-native';
    
    
    
    export default class LifeCycle extends Component {
    
       constructor(props) {
        console.log('constructor');
        super(props);
        this.state = {num: 1,}
      }
    
      // getDefaultProps(){
      //   console.log('getDefaultProps');
      // }
    
      // getInitialState(){
      //   console.log('getInitialState');
      // }
    
      componentWillMount(){
        console.log('componentWillMount');
        this.onButtonPressed=this._onButtonPressed.bind(this);
      }
    
      componentDidMount(){
        console.log('componentDidMount');
      }
    
      componentWillReceiveProps(nextProps) {
        console.log('componentWillReceiveProps');
      }
    
      shouldComponentUpdate(nextProps,nextState){
        console.log('shouldComponentUpdate');
        return true;
      }
    
      componentWillUpdate(nextProps,nextState){
        console.log('componentWillUpdate');
      }
    
      componentDidUpdate(prevProps,prevState){
        console.log('componentDidUpdate');
      }
    
      componentWillUnmount(){
        console.log('componentWillUnmount');
      }
    
    
    
      _onButtonPressed(){
          this.setState({num:this.state.num+1});
      };
    
      render() {
        console.log('render');
        return (
          <View style={{margin:32}}>
            <Button style={{width:512,height:48}}title="按钮" color="#841584"onPress={this.onButtonPressed}/>
          </View>
        );
      }
    }
    
    AppRegistry.registerComponent('LifeCycle', () => LifeCycle);
    

    相关文章

      网友评论

        本文标题:React native之路(十一)ReactNative组件的

        本文链接:https://www.haomeiwen.com/subject/qayzzttx.html