React事件綁定的方式詳解
一、是什麼
在react
應用中,事件名都是用小駝峰格式進行書寫,例如onclick
要改寫成onClick
最簡單的事件綁定如下:
class ShowAlert extends React.Component { showAlert() { console.log("Hi"); } render() { return <button onClick={this.showAlert}>show</button>; } }
從上面可以看到,事件綁定的方法需要使用{}
包住
上述的代碼看似沒有問題,但是當將處理函數輸出代碼換成console.log(this)
的時候,點擊按鈕,則會發現控制臺輸出undefined
二、如何綁定
為瞭解決上面正確輸出this
的問題,常見的綁定方式有如下:
- render方法中使用bind
- render方法中使用箭頭函數
- constructor中bind
- 定義階段使用箭頭函數綁定
render方法中使用bind
如果使用一個類組件,在其中給某個組件/元素一個onClick
屬性,它現在並會自定綁定其this
到當前組件,解決這個問題的方法是在事件函數後使用.bind(this)
將this
綁定到當前組件中
class App extends React.Component { handleClick() { console.log('this > ', this); } render() { return ( <div onClick={this.handleClick.bind(this)}>test</div> ) } }
這種方式在組件每次render
渲染的時候,都會重新進行bind
的操作,影響性能
render方法中使用箭頭函數
通過ES6
的上下文來將this
的指向綁定給當前組件,同樣在每一次render
的時候都會生成新的方法,影響性能
class App extends React.Component { handleClick() { console.log('this > ', this); } render() { return ( <div onClick={e => this.handleClick(e)}>test</div> ) } }
constructor中bind
在constructor
中預先bind
當前組件,可以避免在render
操作中重復綁定
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> ) } }
定義階段使用箭頭函數綁定
跟上述方式三一樣,能夠避免在render
操作中重復綁定,實現也非常的簡單,如下:
class App extends React.Component { constructor(props) { super(props); } handleClick = () => { console.log('this > ', this); } render() { return ( <div onClick={this.handleClick}>test</div> ) } }
三、區別
上述四種方法的方式,區別主要如下:
- 編寫方面:方式一、方式二寫法簡單,方式三的編寫過於冗雜
- 性能方面:方式一和方式二在每次組件render的時候都會生成新的方法實例,性能問題欠缺。若該函數作為屬性值傳給子組件的時候,都會導致額外的渲染。而方式三、方式四隻會生成一個方法實例
綜合上述,方式四是最優的事件綁定方式
到此這篇關於React事件綁定的方式的文章就介紹到這瞭,更多相關React事件綁定內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- React的三大屬性你都知道嗎
- TS裝飾器bindThis優雅實現React類組件中this綁定
- React中DOM事件和狀態介紹
- React的組件協同使用實現方式
- React父子組件傳值(組件通信)的實現方法