在React Native中使用组件来封装界面模块时,整个界面就是一个大的组件,开发过程就是不断优化和拆分界面组件、构造整个组件树的过程。react
咱们先来看初始化,在初始化的过程当中,会按顺序调用下面5个函数。redux
getDefaultProps:组件实例建立前调用,多个实例间共享引用。注意:若是父组件传递过来的Props和你在该函数中定义的Props的key同样,将会被覆盖。
在组件中,咱们能够利用this.props获取在这里初始化它的属性,因为组件初始化后,再次使用该组件不会调用getDefaultProps函数,因此组件本身不能够修改props,只可由其余组件调用它时再外部进行修改。
getInitalState:组件示例建立的时候调用的第一个函数。主要用于初始化state。注意:为了在使用中不出现空值,建议初始化state的时候尽量给每个可能用到的值都赋一个初始值。
render:组件渲染函数,会返回一个Virtual DOM,只容许返回一个最外层容器组件。render函数尽可能保持纯净,只渲染组件,不修改状态,不执行副操做(好比计时器)。 componentDidMount:在render渲染以后,React会根据Virtual DOM来生成真实DOM,生成完毕后会调用该函数。
在浏览器端(React),咱们能够经过this.getDOMNode()来拿到相应的DOM节点。然而咱们在RN中并用不到,在RN中主要在该函数中执行网络请求,定时器开启等相关操做
在调用了render方法,组件加载成功并被成功渲染出来以后,所要执行的后续操做,通常都会在这个函数中进行,好比常常要面对的网络请求等加载数据操做
初始化完成以后,组件将会进入到运行中状态,运行中状态咱们将会遇到以下几个函数:react-native
componentWillReceiveProps(nextProps):props改变(父容器来更改或是redux),将会调用该函数。新的props将会做为参数传递进来,老的props能够根据this.props来获取。咱们能够在该函数中对state做一些处理。注意:在该函数中更新state不会引发二次渲染。
boolean shouldComponentUpdate(object nextProps, object nextState):该函数传递过来两个参数,新的state和新的props。state和props的改变都会调到该函数。该函数主要对传递过来的nextProps和nextState做判断。若是返回true则从新渲染,若是返回false则不从新渲染。在某些特定条件下,咱们能够根据传递过来的props和state来选择更新或者不更新,从而提升效率。
componentWillUpdate(object nextProps, object nextState):与componentWillMount方法相似,组件上会接收到新的props或者state渲染以前,调用该方法。可是不能够在该方法中更新state和props。
render:跟初始化的时候功能同样。
componentDidUpdate(object prevProps,object prevState):和初始化时期的componentDidMount相似,在render以后,真实DOM生成以后调用该函数。传递过来的是当前的props和state。在该函数中一样可使用this.getDOMNode()来拿到相应的DOM节点。若是你须要在运行中执行某些副操做,请在该函数中完成。
销毁阶段只有一个函数,很简单浏览器
componentWillUnmount:组件DOM中移除的时候调用。在这里进行一些相关的销毁操做,好比定时器,监听等等。
import React, {Component} from 'react'; import { View, Text, StyleSheet, TouchableOpacity } from 'react-native'; import {Actions} from 'react-native-router-flux'; import Student from './Student'; export default class Home extends Component { constructor(props) { super(props); this.state = { clickText: "开始点击按钮", count: 1, detailContent: true } } componentWillMount() { console.log("componentWillMount1111"); } shouldComponentUpdate(nextProps, nextState){ console.log(this.state.detailContent,'detailContent'); if (this.state.count !== nextState.count) { console.log("shouldComponentUpdate1111---组件须要更新"); return true; } return false; } componentWillUpdate(){ console.log("componentWillUpdate1111---组件将要更新"); } componentDidUpdate(){ console.log("componentDidUpdate1111---组件更新完毕"); } componentDidMount() { console.log("componentDidMount1111"); } componentWillUnmount() { console.log("componentWillUnmount1111"); } clickButton(){ const { count } = this.state; this.setState({ clickText: "我点击了按钮", count: count + 1, detailContent: false }) } render() { console.log("render1111"); return ( <View style={styles.container}> <Text>欢迎来到首页</Text> <TouchableOpacity onPress={() => Actions.notice()} > <Text>跳转到公告页</Text> </TouchableOpacity> <Text style={{color: 'blue', fontSize: 40}}>{this.state.count}</Text> <TouchableOpacity style={styles.button} onPress={() => this.clickButton()} > <Text>{this.state.clickText}</Text> </TouchableOpacity> <Student detailContent={this.state.detailContent}/> </View> ) } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center", justifyContent: "center" }, button: { width: 250, height: 60, backgroundColor: 'red', borderRadius: 10, alignItems: 'center', justifyContent: 'center' } });
import React, {Component} from 'react'; import { View, Text, StyleSheet } from 'react-native'; export default class Student extends Component { constructor(props) { super(props); this.state = {} } componentWillMount() { } componentWillReceiveProps(nextProps){ console.log(this.props.detailContent,'this--->>componentWillReceiveProps'); console.log(nextProps.detailContent,'next--->>componentWillReceiveProps') } componentDidMount() { } componentWillUnmount() { } render() { return ( <View style={styles.container}> <Text>欢迎HomeDetails</Text> </View> ) } } const styles = StyleSheet.create({ container: { flex: 1, alignItems: "center", justifyContent: "center" } });