http://bbs.reactnative.cn/topic/15/
模塊
引用
在ES5里嫁盲,如果使用CommonJS標(biāo)準(zhǔn)篓叶,引入React包基本通過require進(jìn)行,代碼類似這樣:
//ES5varReact =require("react");var{? ? Component,? ? PropTypes} = React;//引用React抽象組件varReactNative =require("react-native");var{? ? Image,? ? Text,} = ReactNative;//引用具體的React Native組件
在ES6里羞秤,import寫法更為標(biāo)準(zhǔn)
//ES6importReact, {? ? Component,? ? PropTypes,}from'react';import{? ? Image,? ? Text}from'react-native'
導(dǎo)出單個(gè)類
在ES5里缸托,要導(dǎo)出一個(gè)類給別的模塊用,一般通過module.exports來導(dǎo)出
//ES5varMyComponent = React.createClass({? ? ...});module.exports = MyComponent;
在ES6里瘾蛋,通常用export default來實(shí)現(xiàn)相同的功能:
//ES6exportdefaultclassMyComponentextendsComponent{? ? ...}
引用的時(shí)候也類似:
//ES5varMyComponent =require('./MyComponent');//ES6importMyComponentfrom'./MyComponent';
注意導(dǎo)入和導(dǎo)出的寫法必須配套俐镐,不能混用!
定義組件
在ES5里哺哼,通常通過React.createClass來定義一個(gè)組件類佩抹,像這樣:
//ES5varPhoto = React.createClass({? ? render:function(){return();? ? },});
在ES6里叼风,我們通過定義一個(gè)繼承自React.Component的class來定義一個(gè)組件類,像這樣:
//ES6classPhotoextendsReact.Component{? ? render() {return();? ? }}
給組件定義方法
從上面的例子里可以看到棍苹,給組件定義方法不再用名字: function()的寫法无宿,而是直接用名字(),在方法的最后也不能有逗號(hào)了枢里。
//ES5varPhoto = React.createClass({? ? componentWillMount:function(){? ? },? ? render:function(){return();? ? },});
//ES6classPhotoextendsReact.Component{? ? componentWillMount() {? ? }? ? render() {return();? ? }}
定義組件的屬性類型和默認(rèn)屬性
在ES5里孽鸡,屬性類型和默認(rèn)屬性分別通過propTypes成員和getDefaultProps方法來實(shí)現(xiàn)
//ES5varVideo = React.createClass({? ? getDefaultProps:function(){return{? ? ? ? ? ? autoPlay:false,? ? ? ? ? ? maxLoops:10,? ? ? ? };? ? },? ? propTypes: {? ? ? ? autoPlay: React.PropTypes.bool.isRequired,? ? ? ? maxLoops: React.PropTypes.number.isRequired,? ? ? ? posterFrameSrc: React.PropTypes.string.isRequired,? ? ? ? videoSrc: React.PropTypes.string.isRequired,? ? },? ? render:function(){return();? ? },});
在ES6里,可以統(tǒng)一使用static成員來實(shí)現(xiàn)
//ES6classVideoextendsReact.Component{? ? static defaultProps = {? ? ? ? autoPlay:false,? ? ? ? maxLoops:10,? ? };// 注意這里有分號(hào)static propTypes = {? ? ? ? autoPlay: React.PropTypes.bool.isRequired,? ? ? ? maxLoops: React.PropTypes.number.isRequired,? ? ? ? posterFrameSrc: React.PropTypes.string.isRequired,? ? ? ? videoSrc: React.PropTypes.string.isRequired,? ? };// 注意這里有分號(hào)render() {return();? ? }// 注意這里既沒有分號(hào)也沒有逗號(hào)}
也有人這么寫栏豺,雖然不推薦彬碱,但讀到代碼的時(shí)候你應(yīng)當(dāng)能明白它的意思:
//ES6classVideoextendsReact.Component{? ? render() {return();? ? }}Video.defaultProps = {? ? autoPlay:false,? ? maxLoops:10,};Video.propTypes = {? ? autoPlay: React.PropTypes.bool.isRequired,? ? maxLoops: React.PropTypes.number.isRequired,? ? posterFrameSrc: React.PropTypes.string.isRequired,? ? videoSrc: React.PropTypes.string.isRequired,};
注意:對(duì)React開發(fā)者而言,static成員在IE10及之前版本不能被繼承奥洼,而在IE11和其它瀏覽器上可以巷疼,這有時(shí)候會(huì)帶來一些問題。React Native開發(fā)者可以不用擔(dān)心這個(gè)問題灵奖。
初始化state
ES5下情況類似皮迟,
//ES5varVideo = React.createClass({? ? getInitialState:function(){return{? ? ? ? ? ? loopsRemaining:this.props.maxLoops,? ? ? ? };? ? },})
ES6下,有兩種寫法:
//ES6classVideoextendsReact.Component{? ? state = {? ? ? ? loopsRemaining:this.props.maxLoops,? ? }}
不過我們推薦更易理解的在構(gòu)造函數(shù)中初始化(這樣你還可以根據(jù)需要做一些計(jì)算):
//ES6classVideoextendsReact.Component{? ? constructor(props){super(props);this.state = {? ? ? ? ? ? loopsRemaining:this.props.maxLoops,? ? ? ? };? ? }}
把方法作為回調(diào)提供
很多習(xí)慣于ES6的用戶反而不理解在ES5下可以這么做:
//ES5varPostInfo = React.createClass({? ? handleOptionsButtonClick:function(e){// Here, 'this' refers to the component instance.this.setState({showOptionsModal:true});? ? },? ? render:function(){return({this.props.label})},});
在ES5下桑寨,React.createClass會(huì)把所有的方法都bind一遍伏尼,這樣可以提交到任意的地方作為回調(diào)函數(shù),而this不會(huì)變化尉尾。但官方現(xiàn)在逐步認(rèn)為這反而是不標(biāo)準(zhǔn)爆阶、不易理解的。
在ES6下沙咏,你需要通過bind來綁定this引用辨图,或者使用箭頭函數(shù)(它會(huì)綁定當(dāng)前scope的this引用)來調(diào)用
//ES6classPostInfoextendsReact.Component{? ? handleOptionsButtonClick(e){this.setState({showOptionsModal:true});? ? }? ? render(){return(this.handleOptionsButtonClick(e)}
>{this.props.label})},}
箭頭函數(shù)實(shí)際上是在這里定義了一個(gè)臨時(shí)的函數(shù),箭頭函數(shù)的箭頭=>之前是一個(gè)空括號(hào)肢藐、單個(gè)的參數(shù)名故河、或用括號(hào)括起的多個(gè)參數(shù)名,而箭頭之后可以是一個(gè)表達(dá)式(作為函數(shù)的返回值)吆豹,或者是用花括號(hào)括起的函數(shù)體(需要自行通過return來返回值鱼的,否則返回的是undefined)。
// 箭頭函數(shù)的例子()=>1v=>v+1(a,b)=>a+b()=>{? ? alert("foo");}e=>{if(e ==0){return0;? ? }return1000/e;}
需要注意的是痘煤,不論是bind還是箭頭函數(shù)凑阶,每次被執(zhí)行都返回的是一個(gè)新的函數(shù)引用,因此如果你還需要函數(shù)的引用去做一些別的事情(譬如卸載監(jiān)聽器)衷快,那么你必須自己保存這個(gè)引用
// 錯(cuò)誤的做法classPauseMenuextendsReact.Component{? ? componentWillMount(){? ? ? ? AppStateIOS.addEventListener('change',this.onAppPaused.bind(this));? ? }? ? componentDidUnmount(){? ? ? ? AppStateIOS.removeEventListener('change',this.onAppPaused.bind(this));? ? }? ? onAppPaused(event){? ? }}
// 正確的做法classPauseMenuextendsReact.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){? ? }}
從這個(gè)帖子中我們還學(xué)習(xí)到一種新的做法:
// 正確的做法classPauseMenuextendsReact.Component{? ? componentWillMount(){? ? ? ? AppStateIOS.addEventListener('change',this.onAppPaused);? ? }? ? componentDidUnmount(){? ? ? ? AppStateIOS.removeEventListener('change',this.onAppPaused);? ? }? ? onAppPaused = (event) => {//把方法直接作為一個(gè)arrow function的屬性來定義宙橱,初始化的時(shí)候就綁定好了this指針}}
Mixins
在ES5下,我們經(jīng)常使用mixin來為我們的類添加一些新的方法,譬如PureRenderMixin
varPureRenderMixin =require('react-addons-pure-render-mixin');React.createClass({? mixins: [PureRenderMixin],? render:function(){returnfoo;}});
然而現(xiàn)在官方已經(jīng)不再打算在ES6里繼續(xù)推行Mixin师郑,他們說:Mixins Are Dead. Long Live Composition环葵。
盡管如果要繼續(xù)使用mixin,還是有一些第三方的方案可以用宝冕,譬如這個(gè)方案
不過官方推薦张遭,對(duì)于庫編寫者而言,應(yīng)當(dāng)盡快放棄Mixin的編寫方式猬仁,上文中提到Sebastian Markb?ge的一段代碼推薦了一種新的編碼方式:
//Enhance.jsimport{ Component }from"React";exportvarEnhance = ComposedComponent =>classextendsComponent{? ? constructor() {this.state = { data:null};? ? }? ? componentDidMount() {this.setState({ data:'Hello'});? ? }? ? render() {return;}};
//HigherOrderComponent.jsimport{ Enhance }from"./Enhance";classMyComponent{? ? render() {if(!this.data)return
用一個(gè)“增強(qiáng)函數(shù)”,來某個(gè)類增加一些方法先誉,并且返回一個(gè)新類湿刽,這無疑能實(shí)現(xiàn)mixin所實(shí)現(xiàn)的大部分需求。
ES6+帶來的其它好處
解構(gòu)&屬性延展
結(jié)合使用ES6+的解構(gòu)和屬性延展褐耳,我們給孩子傳遞一批屬性更為方便了诈闺。這個(gè)例子把className以外的所有屬性傳遞給div標(biāo)簽:
classAutoloadingPostsGridextendsReact.Component{? ? render() {var{? ? ? ? ? ? className,? ? ? ? ? ? ...others,// contains all properties of this.props except for className} =this.props;return(Load more);? ? }}
下面這種寫法,則是傳遞所有屬性的同時(shí)铃芦,用覆蓋新的className值:
這個(gè)例子則相反雅镊,如果屬性中沒有包含className,則提供默認(rèn)的值刃滓,而如果屬性中已經(jīng)包含了仁烹,則使用屬性中的值