深入理解React中es6建立組件this的方法_javascript技巧

來源:互聯網
上載者:User

首發於:https://mingjiezhang.github.io/。

在JavaScript中,this對象是運行時基於函數的執行環境(也就是上下文)綁定的。

從react中的demo說起

Facebook最近一次更新react時,將es6中的class加入了組件的建立方式當中。Facebook也推薦組件建立使用通過定義一個繼承自 React.Component 的class來定義一個組件類。官方的demo:

class LikeButton extends React.Component {constructor() {super();this.state = {liked: false};this.handleClick = this.handleClick.bind(this);}handleClick() {this.setState({liked: !this.state.liked});}render() {const text = this.state.liked ? 'liked' : 'haven\'t liked';return (<div onClick={this.handleClick}>You {text} this. Click to toggle.</div>);}}ReactDOM.render(<LikeButton />,document.getElementById('example'));

上面的demo中有大量this的使用,在 class LikeButton extends React.Component 中我們是聲明該class,因為this具體是由其上下文決定的,因此在類定義中我們無法得知this用法。 相當於是new了上面定義的類,首先調用 constructor() 函數, this.state 的this上下文就是該執行個體對象;同理,render() 函數中 this.state.liked 的this上下文也是該對象。問題在於 onClick={this.handleClick} ,擷取該函數引用是沒有問題,這裡的this上下文就是該對象。

這時問題來了,在原來 React.createClass 中, handleClick() 在onClick事件觸發的時候,會自動綁定到LikeButton執行個體上,這時候該函數的this的上下文就是該執行個體。不過在ES6的class的寫法中,Facebook取消了自動綁定,執行個體化LikeButton後,handleClick()的上下文是div的支撐執行個體( backing instance ),而 handleClick() 原本要綁定的上下文是LikeButton的執行個體。對於該問題,我們有多種解決方案。

使用bind()函數改變this的上下文

可以在class聲明中的constructor()函數中,使用

this.handleClick = this.handleClick.bind(this);

該方法是一個bind()綁定,多次使用。在該方法中,我們在聲明該執行個體後,可以在該執行個體任何地方使用 handleClick() 函數,並且該 handleClick() 函數的this的上下文都是LikeButton執行個體對象。

除此我們也可以在具體使用該函數的地方綁定this的上下文到LikeButton執行個體對象,代碼如下

<div onClick={this.handleClick.bind(this)}>You {text} this. Click to toggle.</div>

這種方法需要我們每次使用bind()函數綁定到組件對象上。

es6的箭頭函數

es6中新加入了箭頭函數=>,箭頭函數除了方便之外還有而一個特徵就是將函數的this綁定到其定義時所在的上下文。這個特徵也可以協助我們解決這個問題。使用如下代碼:

<div onClick={() => this.handleClick()}>You {text} this. Click to toggle.</div>

這樣該 this.handleClick() 的上下文就會被綁定到LikeButton的執行個體對象上。個人認為,使用箭頭函數使得JavaScript更加接近物件導向的編程風格。

this的總結

this的本質就是:this跟範圍無關的,只跟執行內容有關。

以上所述是小編給大家介紹的React中es6建立組件this的方法,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.