您好,登錄后才能下訂單哦!
今天小編給大家分享一下React事件綁定的方式有哪些的相關(guān)知識點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
在react
應(yīng)用中,事件名都是用小駝峰格式進(jìn)行書寫,例如onclick
要改寫成onClick
最簡單的事件綁定如下:
class ShowAlert extends React.Component { showAlert() { console.log("Hi"); } render() { return <button onClick={this.showAlert}>show</button>; } }
從上面可以看到,事件綁定的方法需要使用{}
包住
上述的代碼看似沒有問題,但是當(dāng)將處理函數(shù)輸出代碼換成console.log(this)
的時候,點(diǎn)擊按鈕,則會發(fā)現(xiàn)控制臺輸出undefined
為了解決上面正確輸出this
的問題,常見的綁定方式有如下:
render方法中使用bind
render方法中使用箭頭函數(shù)
constructor中bind
定義階段使用箭頭函數(shù)綁定
render方法中使用bind
如果使用一個類組件,在其中給某個組件/元素一個onClick
屬性,它現(xiàn)在并會自定綁定其this
到當(dāng)前組件,解決這個問題的方法是在事件函數(shù)后使用.bind(this)
將this
綁定到當(dāng)前組件中
class App extends React.Component { handleClick() { console.log("this > ", this); } render() { return ( <div onClick={this.handleClick.bind(this)}>test</div> ) } }
這種方式在組件每次render
渲染的時候,都會重新進(jìn)行bind
的操作,影響性能
render方法中使用箭頭函數(shù)
通過ES6
的上下文來將this
的指向綁定給當(dāng)前組件,同樣在每一次render
的時候都會生成新的方法,影響性能
class App extends React.Component { handleClick() { console.log("this > ", this); } render() { return ( <div onClick={e => this.handleClick(e)}>test</div> ) } }
constructor中bind
在constructor
中預(yù)先bind
當(dāng)前組件,可以避免在render
操作中重復(fù)綁定
class App extends React.Component { constructor(props) { super(props); this.handleClick = this.handleClick.bind(this); } handleClick() { console.log("this > ", this); } render() { return ( <div onClick={this.handleClick}>test</div> ) } }
定義階段使用箭頭函數(shù)綁定
跟上述方式三一樣,能夠避免在render
操作中重復(fù)綁定,實(shí)現(xiàn)也非常的簡單,如下:
class App extends React.Component { constructor(props) { super(props); } handleClick = () => { console.log("this > ", this); } render() { return ( <div onClick={this.handleClick}>test</div> ) } }
上述四種方法的方式,區(qū)別主要如下:
編寫方面:方式一、方式二寫法簡單,方式三的編寫過于冗雜
性能方面:方式一和方式二在每次組件render的時候都會生成新的方法實(shí)例,性能問題欠缺。若該函數(shù)作為屬性值傳給子組件的時候,都會導(dǎo)致額外的渲染。而方式三、方式四只會生成一個方法實(shí)例
綜合上述,方式四是最優(yōu)的事件綁定方式
以上就是“React事件綁定的方式有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。