由於類的方法預設不會繫結this,因此在呼叫的時候如果忘記繫結,this的值將會是undefined。
通常如果不是直接呼叫,應該為方法繫結this。繫結方式有以下幾種:
class button extends react.component
handleclick()
render()
}
class button extends react.component
render()
}
class button extends react.component
render() >
click me
);}}
class button extends react.component
render()
}
方式2和方式3都是在呼叫的時候再繫結this。
方式1在類建構函式中繫結this,呼叫的時候不需要再繫結
方式4:利用屬性初始化語法,將方法初始化為箭頭函式,因此在建立函式的時候就繫結了this。
優點:建立方法就繫結this,不需要在類建構函式中繫結,呼叫的時候不需要再作繫結。結合了方式1、方式2、方式3的優點
缺點:目前仍然是實驗性語法,需要用babel轉譯
方式1是官方推薦的繫結方式,也是效能最好的方式。方式2和方式3會有效能影響並且當方法作為屬性傳遞給子元件的時候會引起重渲問題。方式4目前屬於實驗性語法,但是是最好的繫結方式,需要結合bable轉譯
React事件繫結的幾種方式對比
class button extends react.component handleclick render click me button class button extends react.component render click me button class button exten...
js事件繫結的幾種方式
1 點選按鈕 2 使js 與hrml標籤分離,文件結構清晰,便於開發和管理 1 點選按鈕 2 繫結語法 element.attachevent event,function event 必需 事件型別,需要加 on function 必需 指定事件觸發時執行的函式 1 點選按鈕 2 事件處理函式中,...
React事件繫結幾種方法測試
前提 es6寫法的類方法預設沒有繫結this,不手動繫結this值為undefined。因此討論以下幾種繫結方式。一 建構函式constructor中用bind繫結 constructor props this.bind1 this.bind1.bind this 無參寫法 this.bind1 t...