ES5 ES6寫(xiě)法對(duì)照表

前言:這篇是完全復(fù)制React/React Native 的ES5 ES6寫(xiě)法對(duì)照表這篇文章的,因?yàn)閯倓倢W(xué)習(xí)rn知識(shí),需要經(jīng)?;仡櫍越o搬到這里了,方便我自己的查閱。

很多React/React Native的初學(xué)者都被ES6的問(wèn)題迷惑:各路大神都建議我們直接學(xué)習(xí)ES6的語(yǔ)法(class Foo extends React.Component),然而網(wǎng)上搜到的很多教程和例子都是ES5版本的,所以很多人在學(xué)習(xí)的時(shí)候連照貓畫(huà)虎都不知道怎么做。今天在此整理了一些ES5和ES6的寫(xiě)法對(duì)照表,希望大家以后讀到ES5的代碼,也能通過(guò)對(duì)照,在ES6下實(shí)現(xiàn)相同的功能

模塊

引用

在ES5里,如果使用CommonJS標(biāo)準(zhǔn),引入React包基本通過(guò)require進(jìn)行,代碼類似這樣:

//ES5
var React = require("react");
var {
    Component,
    PropTypes
} = React;  //引用React抽象組件

var ReactNative = require("react-native");
var {
    Image,
    Text,
} = ReactNative;  //引用具體的React Native組件

在ES6里,import寫(xiě)法更為標(biāo)準(zhǔn)

//ES6
import React, { 
    Component,
    PropTypes,
} from 'react';
import {
    Image,
    Text
} from 'react-native'

導(dǎo)出單個(gè)類

在ES5里,要導(dǎo)出一個(gè)類給別的模塊用,一般通過(guò)module.exports來(lái)導(dǎo)出

//ES5
var MyComponent = React.createClass({
    ...
});
module.exports = MyComponent;

在ES6里,通常用export default來(lái)實(shí)現(xiàn)相同的功能:

//ES6
export default class MyComponent extends Component{
    ...
}

引用的時(shí)候也類似:

//ES5
var MyComponent = require('./MyComponent');

//ES6
import MyComponent from './MyComponent';

注意導(dǎo)入和導(dǎo)出的寫(xiě)法必須配套,不能混用!

定義組件

在ES5里,通常通過(guò)React.createClass來(lái)定義一個(gè)組件類,像這樣:

//ES5
var Photo = React.createClass({
    render: function() {
        return (
            <Image source={this.props.source} />
        );
    },
});

在ES6里,我們通過(guò)定義一個(gè)繼承自React.Component的class來(lái)定義一個(gè)組件類,像這樣

//ES6
class Photo extends React.Component {
    render() {
        return (
            <Image source={this.props.source} />
        );
    }
}

給組件定義方法

從上面的例子里可以看到,給組件定義方法不再用 名字: function()的寫(xiě)法,而是直接用名字(),在方法的最后也不能有逗號(hào)了。

//ES5 
var Photo = React.createClass({
    componentWillMount: function(){

    },
    render: function() {
        return (
            <Image source={this.props.source} />
        );
    },
});
//ES6
class Photo extends React.Component {
    componentWillMount() {

    }
    render() {
        return (
            <Image source={this.props.source} />
        );
    }
}

定義組件的屬性類型和默認(rèn)屬性

在ES5里,屬性類型和默認(rèn)屬性分別通過(guò)propTypes成員和getDefaultProps方法來(lái)實(shí)現(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 />
        );
    },
});

在ES6里,可以統(tǒng)一使用static成員來(lái)實(shí)現(xiàn)

//ES6
class Video extends React.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 (
            <View />
        );
    } // 注意這里既沒(méi)有分號(hào)也沒(méi)有逗號(hào)
}

初始化STATE

ES5下情況類似,

//ES5 
var Video = React.createClass({
    getInitialState: function() {
        return {
            loopsRemaining: this.props.maxLoops,
        };
    },
})

ES6下,有兩種寫(xiě)法:

//ES6
class Video extends React.Component {
    state = {
        loopsRemaining: this.props.maxLoops,
    }
}

不過(guò)我們推薦更易理解的在構(gòu)造函數(shù)中初始化(這樣你還可以根據(jù)需要做一些計(jì)算

//ES6
class Video extends React.Component {
    constructor(props){
        super(props);
        this.state = {
            loopsRemaining: this.props.maxLoops,
        };
    }
}

把方法作為回調(diào)提供

很多習(xí)慣于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會(huì)把所有的方法都bind一遍,這樣可以提交到任意的地方作為回調(diào)函數(shù),而this不會(huì)變化。但官方現(xiàn)在逐步認(rèn)為這反而是不標(biāo)準(zhǔn)、不易理解的。

在ES6下,你需要通過(guò)bind來(lái)綁定this引用,或者使用箭頭函數(shù)(它會(huì)綁定當(dāng)前scope的this引用)來(lái)調(diào)用

//ES6
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>
        )
    },
}

箭頭函數(shù)實(shí)際上是在這里定義了一個(gè)臨時(shí)的函數(shù),箭頭函數(shù)的箭頭=>之前是一個(gè)空括號(hào)、單個(gè)的參數(shù)名、或用括號(hào)括起的多個(gè)參數(shù)名,而箭頭之后可以是一個(gè)表達(dá)式(作為函數(shù)的返回值),或者是用花括號(hào)括起的函數(shù)體(需要自行通過(guò)return來(lái)返回值,否則返回的是undefined)。

// 箭頭函數(shù)的例子
()=>1
v=>v+1
(a,b)=>a+b
()=>{
    alert("foo");
}
e=>{
    if (e == 0){
        return 0;
    }
    return 1000/e;
}

需要注意的是,不論是bind還是箭頭函數(shù),每次被執(zhí)行都返回的是一個(gè)新的函數(shù)引用,因此如果你還需要函數(shù)的引用去做一些別的事情(譬如卸載監(jiān)聽(tīng)器),那么你必須自己保存這個(gè)引用

// 錯(cuò)誤的做法
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) => {
        //把方法直接作為一個(gè)arrow function的屬性來(lái)定義,初始化的時(shí)候就綁定好了this指針
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容