您好,登錄后才能下訂單哦!
前言
本文主要給大家介紹了關(guān)于React事件綁定的幾種方法對(duì)比的相關(guān)呢榮,分享出來(lái)供大家參考學(xué)習(xí),下面話(huà)不多說(shuō)了,來(lái)一起看看詳細(xì)的介紹吧。
React事件綁定
由于類(lèi)的方法默認(rèn)不會(huì)綁定this,因此在調(diào)用的時(shí)候如果忘記綁定,this的值將會(huì)是undefined。
通常如果不是直接調(diào)用,應(yīng)該為方法綁定this。綁定方式有以下幾種:
1. 在構(gòu)造函數(shù)中使用bind綁定this
class Button extends React.Component { constructor(props) { super(props); this.handleClick = this.handleClick.bind(this); } handleClick(){ console.log('this is:', this); } render() { return ( <button onClick={this.handleClick}> Click me </button> ); } }
2. 在調(diào)用的時(shí)候使用bind綁定this
class Button extends React.Component { handleClick(){ console.log('this is:', this); } render() { return ( <button onClick={this.handleClick.bind(this)}> Click me </button> ); } }
3. 在調(diào)用的時(shí)候使用箭頭函數(shù)綁定this
class Button extends React.Component { handleClick(){ console.log('this is:', this); } render() { return ( <button onClick={()=>this.handleClick()}> Click me </button> ); } }
4. 使用屬性初始化器語(yǔ)法綁定this(實(shí)驗(yàn)性)
class Button extends React.Component { handleClick=()=>{ console.log('this is:', this); } render() { return ( <button onClick={this.handleClick}> Click me </button> ); } }
比較
方式2和方式3都是在調(diào)用的時(shí)候再綁定this。
方式1在類(lèi)構(gòu)造函數(shù)中綁定this,調(diào)用的時(shí)候不需要再綁定
方式4:利用屬性初始化語(yǔ)法,將方法初始化為箭頭函數(shù),因此在創(chuàng)建函數(shù)的時(shí)候就綁定了this。
總結(jié)
方式1是官方推薦的綁定方式,也是性能最好的方式。方式2和方式3會(huì)有性能影響并且當(dāng)方法作為屬性傳遞給子組件的時(shí)候會(huì)引起重渲問(wèn)題。方式4目前屬于實(shí)驗(yàn)性語(yǔ)法,但是是最好的綁定方式,需要結(jié)合bable轉(zhuǎn)譯
好了,以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。