React/React Native 的ES5 ES6寫法對照表

不少React/React Native的初學者都被ES6的問題迷惑:各路大神都建議咱們直接學習ES6的語法(class Foo extends React.Component),然而網上搜到的不少教程和例子都是ES5版本的,因此不少人在學習的時候連照貓畫虎都不知道怎麼作。今天在此整理了一些ES5和ES6的寫法對照表,但願你們之後讀到ES5的代碼,也能經過對照,在ES6下實現相同的功能。javascript

模塊

引用

在ES5裏,若是使用CommonJS標準,引入React包基本經過require進行,代碼相似這樣:java

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

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

在ES6裏,import寫法更爲標準react

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

注意在React Native裏,import直到0.12+才能正常運做。git

導出單個類

在ES5裏,要導出一個類給別的模塊用,通常經過module.exports來導出github

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

在ES6裏,一般用export default來實現相同的功能:react-native

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

引用的時候也相似:瀏覽器

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

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

定義組件

在ES5裏,一般經過React.createClass來定義一個組件類,像這樣:ide

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

在ES6裏,咱們經過定義一個繼承自React.Component的class來定義一個組件類,像這樣:函數

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

給組件定義方法

從上面的例子裏能夠看到,給組件定義方法再也不用 名字: function()的寫法,而是直接用名字(),在方法的最後也不能有逗號了。oop

//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} />
        );
    }
}

定義組件的屬性類型和默認屬性

在ES5裏,屬性類型和默認屬性分別經過propTypes成員和getDefaultProps方法來實現

//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裏,能夠統一使用static成員來實現

//ES6
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 />
        );
    } // 注意這裏既沒有分號也沒有逗號
}

也有人這麼寫,雖然不推薦,但讀到代碼的時候你應當能明白它的意思:

//ES6
class Video extends React.Component {
    render() {
        return (
            <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開發者而言,static成員在IE10及以前版本不能被繼承,而在IE11和其它瀏覽器上能夠,這有時候會帶來一些問題。React Native開發者能夠不用擔憂這個問題。

初始化STATE

ES5下狀況相似,

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

ES6下,有兩種寫法:

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

不過咱們推薦更易理解的在構造函數中初始化(這樣你還能夠根據須要作一些計算):

//ES6
class Video extends React.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一遍,這樣能夠提交到任意的地方做爲回調函數,而this不會變化。但官方如今逐步認爲這反而是不標準、不易理解的。

在ES6下,你須要經過bind來綁定this引用,或者使用箭頭函數(它會綁定當前scope的this引用)來調用

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

箭頭函數其實是在這裏定義了一個臨時的函數,箭頭函數的箭頭=>以前是一個空括號、單個的參數名、或用括號括起的多個參數名,而箭頭以後能夠是一個表達式(做爲函數的返回值),或者是用花括號括起的函數體(須要自行經過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指針
    }
}

Mixins

在ES5下,咱們常常使用mixin來爲咱們的類添加一些新的方法,譬如PureRenderMixin

var PureRenderMixin = require('react-addons-pure-render-mixin');
React.createClass({
  mixins: [PureRenderMixin],

  render: function() {
    return <div className={this.props.className}>foo</div>;
  }
});

然而如今官方已經再也不打算在ES6裏繼續推行Mixin,他們說:Mixins Are Dead. Long Live Composition

儘管若是要繼續使用mixin,仍是有一些第三方的方案能夠用,譬如這個方案

不過官方推薦,對於庫編寫者而言,應當儘快放棄Mixin的編寫方式,上文中提到Sebastian Markbåge的一段代碼推薦了一種新的編碼方式:

//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所實現的大部分需求。

ES6+帶來的其它好處

解構&屬性延展

結合使用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>
相關文章
相關標籤/搜索