RN的ES5和ES6的寫法對照表
阿新 • • 發佈:2019-02-03
現在我們搜到的很多例子都都是ES5的寫法,然而現在RN已經在嘗試使用ES6的寫法了,我相信很多人在學習的時候也是一臉的蒙圈,現在就給大家總結一下ES5和ES6的寫法對照表。
模組
引用
在ES5裡面,如果使用commonJS標準,引入React 包基本通過require進行,程式碼類似這樣:
注意:在RN中,import直到0.12+才能正常運作<span style="font-size:12px;">// ES5 var React = require("react-native"); var { Image, Text, ProTypes } = React; // 引用不同的React Native元件 在ES6裡面 // ES6 import React, { Image, Text, ProTypes } from 'react-native';</span>
匯出單個類
在ES5中,要匯出一個類別給模組使用,一般是通過module。exports來匯出的
// ES5
var Mycomponent = React.createClass({
.....
});
module.exports = MyComponent;
// ES6,通常用export default來實現相同的功能
// ES6
export default class MyComponent extends React.Component{
...
}
引用的時候也類似
// ES5 var MyComponent = require('./MyComponent.js'); // ES6 import MyComponent from './MyComponent';
定義元件
在ES5裡,通常使用React.createClass來定義一個元件類,像這樣
// ES5 var Phono = React.createClass({ render:function(){ return ( <Image source = {this.props.source}/> ); }, }); // ES6 class Photo extends React.Component { render(){ return ( <Image source = {this.props.source}/> ); } }
給元件定義方法
從上面的例子我們可以看出,給元件定義方法的時候,不在使用 名字:function() 的寫法了,而是直接使用 名字(),在方法的最後也不能在有逗號了
// ES5
var Photo = React.createClass({
componentWillMount:function(){
},
render:function(){
return(
<Image source = {this.props.source}/>
);
},
});
// ES6
class Photo extends React.Component {
componentWillMount(){
}
render(){
reurn (
<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,
}
}
不過我們推薦更易理解的在建構函式中初始化(這樣你還可以根據需要做一些計算):
<pre><code class="language-javascript">//ES6
class Video extends React.Component {
constructor(props){
super(props);
this.state = {
loopsRemaining: this.props.maxLoops,
};
}
}
</code>
把方法作為回撥提供
//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>;
}
});
儘管如果要繼續使用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";
class MyComponent {
render() {
if (!this.data) return <div>Waiting...</div>;
return <div>{this.data}</div>;
}
}
export default Enhance(MyComponent); // Enhanced component
用一個 ”增強函式“,來給某個類增加一些方法,並且返回一個新類,這無疑能實現mixin所實現的發部分需求