最近整理了一些ES5和ES6的寫法對照表鹊汛,希望大家以后讀到ES5的代碼,也能通過對照州丹,在ES6下實現(xiàn)相同的功能醋安,希望大家有用杂彭。
模塊
引用
在ES5里,如果使用CommonJS標準吓揪,引入React包基本通過require進行亲怠,代碼類似這樣:
//ES5
var React = require("react");
var {
Component,
PropTypes
} = React; //引用React抽象組件
var ReactNative = require("react-native");
var {
Image,
Text,
} = ReactNative; //引用具體的React Native組件
在ES6里,import寫法更為標準
//ES6
import React, {
Component,
PropTypes,
} from 'react';
import {
Image,
Text
} from 'react-native'
導出單個類
在ES5里柠辞,要導出一個類給別的模塊用团秽,一般通過module.exports來導出
//ES5
var MyComponent = React.createClass({
...
});
module.exports = MyComponent;
在ES6里,通常用export default來實現(xiàn)相同的功能:
//ES6
export default class MyComponent extends Component{
...
}
引用的時候也類似:
//ES5
var MyComponent = require('./MyComponent');
//ES6
import MyComponent from './MyComponent';
注意導入和導出的寫法必須配套叭首,不能混用习勤!
定義組件
在ES5里,通常通過React.createClass來定義一個組件類焙格,像這樣:
//ES5
var Photo = React.createClass({
render: function() {
return (
<View>
<Image source={this.props.source} />
</View>
);
},
});
在ES6里图毕,我們通過定義一個繼承自React.Component的class來定義一個組件類,像這樣:
//ES6
class Photo extends Component {
render() {
return (
<View>
<Image source={this.props.source} />
</View>
);
}
}
給組件定義方法
從上面的例子里可以看到眷唉,給組件定義方法不再用 名字: function()的寫法予颤,而是直接用名字(),在方法的最后也不能有逗號了厢破。
//ES5
var Photo = React.createClass({
componentWillMount: function(){
},
render: function() {
return (
<View>
<Image source={this.props.source} />
</View>
);
},
});
//ES6
class Photo extends Component {
componentWillMount() {
}
render() {
return (
<View>
<Image source={this.props.source} />
</View>
);
}
}
定義組件的屬性類型和默認屬性
在ES5里荣瑟,屬性類型和默認屬性分別通過propTypes成員和getDefaultProps方法來實現(xiàn)
//ES5
var Video = 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 (
<View>
</View>
);
},
});
在ES6里,可以統(tǒng)一使用static成員來實現(xiàn)
//ES6
class Video extends 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>
</View>
);
} // 注意這里既沒有分號也沒有逗號
}
也有人這么寫摩泪,雖然不推薦笆焰,但讀到代碼的時候你應當能明白它的意思:
//ES6
class Video extends Component {
render() {
return (
<View>
</View>
);
}
}
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,
};
注意: 對React開發(fā)者而言,static成員在IE10及之前版本不能被繼承见坑,而在IE11和其它瀏覽器上可以嚷掠,這有時候會帶來一些問題。React Native開發(fā)者可以不用擔心這個問題荞驴。
初始化STATE
ES5下情況類似不皆,
//ES5
var Video = React.createClass({
getInitialState: function() {
return {
loopsRemaining: this.props.maxLoops,
};
},
})
ES6下,有兩種寫法:
//ES6
class Video extends Component {
state = {
loopsRemaining: this.props.maxLoops,
}
}
不過我們推薦更易理解的在構造函數(shù)中初始化(這樣你還可以根據(jù)需要做一些計算):
//ES6
class Video extends Component {
constructor(props){
super(props);
this.state = {
loopsRemaining: this.props.maxLoops,
};
}
}
把方法作為回調提供
很多習慣于ES6的用戶反而不理解在ES5下可以這么做:
//ES5
var PostInfo = React.createClass({
handleOptionsButtonClick: function(e) {
// Here, 'this' refers to the component instance.
this.setState({showOptionsModal: true});
},
render: function(){
return (
<TouchableHighlight onPress={this.handleOptionsButtonClick}>
<Text>{this.props.label}</Text>
</TouchableHighlight>
)
},
});
在ES5下熊楼,React.createClass會把所有的方法都bind一遍霹娄,這樣可以提交到任意的地方作為回調函數(shù),而this不會變化鲫骗。但官方現(xiàn)在逐步認為這反而是不標準犬耻、不易理解的。
在ES6下执泰,你需要通過bind來綁定this引用枕磁,或者使用箭頭函數(shù)(它會綁定當前scope的this引用)來調用
//ES6
class PostInfo extends 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>
)
},
}
箭頭函數(shù)實際上是在這里定義了一個臨時的函數(shù),箭頭函數(shù)的箭頭=>之前是一個空括號术吝、單個的參數(shù)名计济、或用括號括起的多個參數(shù)名茸苇,而箭頭之后可以是一個表達式(作為函數(shù)的返回值),或者是用花括號括起的函數(shù)體(需要自行通過return來返回值沦寂,否則返回的是undefined)学密。
// 箭頭函數(shù)的例子
()=>1
v=>v+1
(a,b)=>a+b
()=>{
alert("foo");
}
e=>{
if (e == 0){
return 0;
}
return 1000/e;
}
需要注意的是,不論是bind還是箭頭函數(shù)凑队,每次被執(zhí)行都返回的是一個新的函數(shù)引用则果,因此如果你還需要函數(shù)的引用去做一些別的事情(譬如卸載監(jiān)聽器),那么你必須自己保存這個引用
// 錯誤的做法
class PauseMenu extends Component{
componentWillMount(){
AppStateIOS.addEventListener('change', this.onAppPaused.bind(this));
}
componentDidUnmount(){
AppStateIOS.removeEventListener('change', this.onAppPaused.bind(this));
}
onAppPaused(event){
}
}
// 正確的做法
class PauseMenu extends 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 Component{
componentWillMount(){
AppStateIOS.addEventListener('change', this.onAppPaused);
}
componentDidUnmount(){
AppStateIOS.removeEventListener('change', this.onAppPaused);
}
onAppPaused = (event) => {
//把方法直接作為一個arrow function的屬性來定義漩氨,初始化的時候就綁定好了this指針
}
}
Mixins
在ES5下西壮,我們經(jīng)常使用mixin來為我們的類添加一些新的方法,譬如PureRenderMixin
var PureRenderMixin = require('react-addons-pure-render-mixin');
React.createClass({
mixins: [PureRenderMixin],
render: function() {
return <div className={this.props.className}>foo</div>;
}
});
然而現(xiàn)在官方已經(jīng)不再打算在ES6里繼續(xù)推行Mixin叫惊,應當盡快放棄Mixin的編寫方式款青。
//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";
MyComponent extends Component {
render() {
if (!this.data) return <div>Waiting...</div>;
return <div>{this.data}</div>;
}
}
export default Enhance(MyComponent); // Enhanced component
用一個“增強函數(shù)”,來某個類增加一些方法霍狰,并且返回一個新類抡草,這無疑能實現(xiàn)mixin所實現(xiàn)的大部分需求。
ES6+帶來的其它好處
解構&屬性延展
結合使用ES6+的解構和屬性延展蔗坯,我們給孩子傳遞一批屬性更為方便了康震。這個例子把className以外的所有屬性傳遞給div標簽:
class AutoloadingPostsGrid extends Component {
render() {
const {
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,則提供默認的值绘梦,而如果屬性中已經(jīng)包含了橘忱,則使用屬性中的值
<div className="base" {...this.props}>
…
</div>
以后收集到就繼續(xù)更新上去,方便學習語法