创建一个Component
一个组件类可以像前面Hello World工程中那样通过 class HelloWorldAppp extends Component 来创建,或者通过React.createClass来创建,并且提供一个render方法以及其他可选的生命周期函数、组件相关的事件或方法定义。
因此,HelloWorldAppp和下面的实现方法是等价的:
var HelloWorldAppp = React.createClass({
render() {
return (
<View
</View>
);
},});
通过继承Component实现的组件中如果实现getDefaultProps getinitialState等方法时,会有下面警告:
Warning: getDefaultProps was defined on HelloWorldAppp,a plain JavaScript class. This is only supported for classes created using React.createClass. Use a static property to define defaultProps instead.
组件生命周期
先来看一段代码:
import React,{ Component } from 'react';
import {
AppRegistry,StyleSheet,Text,View,Image,TouchableHighlight
} from 'react-native';
var clickTime = 0;
var HelloWorldAppp = React.createClass({
getDefaultProps(){
console.log("getDefaultProps")
return {title:"HelloWorld"}
},getinitialState(){
console.log("getinitialState")
return {content:"点击屏幕任意位置"}
},componentwillMount(){
console.log("componentwillMount")
},componentDidMount(){
console.log("componentDidMount")
},shouldComponentUpdate(nextProps,nextState){
console.log("shouldComponentUpdate")
return true
},componentwillUpdate(nextProps,nextState){
console.log("componentwillUpdate")
},componentDidUpdate(prevProps,prevstate){
console.log("componentDidUpdate")
},render() {
console.log("render")
return (
<TouchableHighlight
onPress={() => this.backgorundClicked()}
underlayColor = '#ddd'
style = {styles.container}
>
<Text style={styles.welcome}>{clickTime > 0 ? this.state.content : this.props.title + " \n " + this.state.content}</Text>
</TouchableHighlight>
);
},backgorundClicked(){
clickTime++
this.setState({
content:"第"+clickTime+"次点击"
});
}
});
AppRegistry.registerComponent('AwesomeProject',() => HelloWorldAppp); const styles = StyleSheet.create({ container: { flex: 1,justifyContent: 'center',alignItems: 'center',backgroundColor: '#F5FCFF',},welcome: { fontSize: 20,textAlign: 'center',margin: 10,title_text:{ fontSize:18,} });
然后认识一下组件中的一些函数:
- getDefaultProps: 用来设置组件属性的默认值。通常会将固定的内容放在这个过程中进行初始化和赋值,一个控件可以利用this.props获取在这里初始化它的属性,由于组件初始化后,再次使用该组件不会调用getDefaultProps函数,所以组件自己不可以自己修改props(即:props可认为是只读的),只可由其他组件调用它时在外部修改。
getDefaultProps并不是在组件实例化时被调用,而是在createClass时被调用,返回值会被缓存。也就是说,不能在getDefaultProps中使用任何特定的实例数据。 - getinitialState: 这里是对控件的一些状态进行初始化,由于该函数不同于getDefaultProps,在以后的过程中,会再次调用,所以可以将控制控件的状态的一些变量放在这里初始化,如控件上显示的文字,可以通过this.state来获取值,通过this.setState来修改state值,修改方式如下:
this.setState({ content:"第"+clickTime+"次点击" });
值得注意的是,一旦调用了this.setState方法,控件必将调用render方法,对控件进行再次的渲染,不过,React框架会自动根据DOM的状态来判断是否需要真正的渲染。
生命周期函数
- 装载组件
- 更新组件状态
存在期主要是用来处理与用户的交互,如:点击事件,都比较简单,也不是很常用,具体有以下几个过程:
- 卸载(删除)组件
销毁期,用于清理一些无用的内容,如:点击事件Listener。
- componentwillUnmount
- 创建时
getDefaultProps
getinitialState
componentwillMount
render
componentDidMount - 更新shi
shouldComponentUpdate
componentwillUpdate
render
componentDidUpdate
总得来讲,React Native组件的生命周期,经历了Mount->Update->Unmount这三个大的过程,即从创建到销毁的过程,如果借助Android和iOS的开发思想,那么React Native组件的生命周期就更容易理解了。那么,我们构建一个React Native控件也就能够知道如何下手,如何控制和优化。经过一层一层的封装和调用,一个完整的React Native应用也就构建出来了。
Props(属性)和 State(状态)
Props 就是组件的属性,由外部通过 JSX 属性传入设置,一旦初始设置完成,就可以认为 this.props 是不可更改的,所以不要轻易更改设置 this.props 里面的值(虽然对于一个 JS 对象你可以做任何事)。
class MyText extends Component{
render() {
return(
<Text style={this.props.style}>{this.props.content}</Text>
);
}
}
class HelloWorldAppp extends Component{
render() {
return (
<MyText style={styles.welcome} content="HelloWorld"/>
);
}
}
State 是组件的当前状态,可以把组件简单看成一个“状态机”,根据状态 state 呈现不同的 UI 展示。一旦状态(数据)更改,组件就会自动调用 render 重新渲染 UI,这个更改的动作会通过 this.setState 方法来触发。
class HelloWorldAppp extends Component{
constructor(props) {
super(props);
this.state = {showtext:"Test"};
}
render() {
return (
<View>
<Text style={styles.title_text}>{this.state.showtext}</Text>
</View>
);
}
}