1.引用
import React,{ Component,PropTypes,} from 'react'; import { Image,Text } from 'react-native'
2.导出单个类
导出一个类给别的模块用
export default class MyComponent extends Component{ ... }
引用时
import MyComponent from './MyComponent';
3.定义组件
通过定义一个继承自React.Component的class来定义一个组件类
class Photo extends React.Component { render() { return ( <Image source={this.props.source} /> ); } }
给组件定义方法
class Photo extends React.Component { componentWillMount() { } render() { return ( <Image source={this.props.source} /> ); } }
统一使用static成员来实现
class Video extends React.Component { static defaultProps = { autoPlay: false,maxLoops: 10,}; // 注意这里有分号 static propTypes = { autoPlay: React.PropTypes.bool.isrequired,maxLoops: React.PropTypes.number.isrequired,posterFrameSrc: React.PropTypes.string.isrequired,videoSrc: React.PropTypes.string.isrequired,}; // 注意这里有分号 render() { return ( <View /> ); } // 注意这里既没有分号也没有逗号 }
5.初始化STATE
class Video extends React.Component { state = { loopsRemaining: this.props.maxLoops,} }或者
class Video extends React.Component { constructor(props){ super(props); this.state = { loopsRemaining: this.props.maxLoops,}; } }
6.把方法作为回调提供
通过bind来绑定this引用,或者使用箭头函数(它会绑定当前scope的this引用)来调用
class PostInfo extends React.Component { handleOptionsButtonClick(e){ this.setState({showOptionsModal: true}); } render(){ return ( <TouchableHighlight onPress={this.handleOptionsButtonClick.bind(this)} onPress={e=>this.handleOptionsButtonClick(e)} > <Text>{this.props.label}</Text> </TouchableHighlight> ) },}
箭头函数实际上是在这里定义了一个临时的函数,箭头函数的箭头
=>
之前是一个空括号、单个的参数名、或用括号括起的多个参数名,而箭头之后可以是一个表达式(作为函数的返回值),或者是用花括号括起的函数体(需要自行通过return来返回值,否则返回的是undefined)。
// 箭头函数的例子 ()=>1 v=>v+1 (a,b)=>a+b ()=>{ alert("foo"); } e=>{ if (e == 0){ return 0; } return 1000/e; }
需要注意的是,不论是bind还是箭头函数,每次被执行都返回的是一个新的函数引用,因此如果你还需要函数的引用去做一些别的事情(譬如卸载监听器),那么你必须自己保存这个引用
// 错误的做法 class PauseMenu extends React.Component{ componentWillMount(){ AppStateIOS.addEventListener('change',this.onAppPaused.bind(this)); } componentDidUnmount(){ AppStateIOS.removeEventListener('change',this.onAppPaused.bind(this)); } onAppPaused(event){ } } // 正确的做法 class PauseMenu extends React.Component{ constructor(props){ super(props); this._onAppPaused = this.onAppPaused.bind(this); } componentWillMount(){ AppStateIOS.addEventListener('change',this._onAppPaused); } componentDidUnmount(){ AppStateIOS.removeEventListener('change',this._onAppPaused); } onAppPaused(event){ } }
从 这个帖子中我们还学习到一种新的做法:
// 正确的做法 class PauseMenu extends React.Component{ componentWillMount(){ AppStateIOS.addEventListener('change',this.onAppPaused); } componentDidUnmount(){ AppStateIOS.removeEventListener('change',this.onAppPaused); } onAppPaused = (event) => { //把方法直接作为一个arrow function的属性来定义,初始化的时候就绑定好了this指针 } }
7.Mixins 代替的实现方式
//Enhance.js import { Component } from "React"; export var Enhance = ComposedComponent => class extends Component { constructor() { this.state = { data: null }; } componentDidMount() { this.setState({ data: 'Hello' }); } render() { return <ComposedComponent {...this.props} data={this.state.data} />; } }; //HigherOrderComponent.js import { Enhance } from "./Enhance"; class MyComponent { render() { if (!this.data) return <div>Waiting...</div>; return <div>{this.data}</div>; } } export default Enhance(MyComponent); // Enhanced component
用一个“增强函数”,来某个类增加一些方法,并且返回一个新类,这无疑能实现mixin所实现的大部分需求。
8.解构&属性延展
结合使用ES6+的解构和属性延展,我们给孩子传递一批属性更为方便了。这个例子把className以外的所有属性传递给div标签:
class AutoloadingPostsGrid extends React.Component { render() { var { className,...others,// contains all properties of this.props except for className } = this.props; return ( <div className={className}> <PostsGrid {...others} /> <button onClick={this.handleLoadMoreClick}>Load more</button> </div> ); } }
下面这种写法,则是传递所有属性的同时,用覆盖新的className值:
<div {...this.props} className="override"> … </div>
这个例子则相反,如果属性中没有包含className,则提供默认的值,而如果属性中已经包含了,则使用属性中的值
<div className="base" {...this.props}> … </div>
文章来自 http://bbs.reactnative.cn/topic/15/react-react-native-%E7%9A%84es5-es6%E5%86%99%E6%B3%95%E5%AF%B9%E7%85%A7%E8%A1%A8/2 的总结
原文链接:https://www.f2er.com/react/305123.html