react中三種函式呼叫方法總結
隔壁大神剛剛跟我說了一個知識點,總結如下,以備後查!
方式一:內聯呼叫法
import React, { Component } from 'react';
class func extends Component{
constructor(porps){
super(props);
}
funcOne(){
console.log('內聯呼叫法')
}
render(){
return (
<button onClick={this.funcOne.bind(this)}></button>
)
}
}
方式二:配置中呼叫法
import React, { Component } from 'react';
class func extends Component{
constructor(porps){
super(props);
this.funcTwo = this.funcTwo.bind(this)
}
funcTwo(){
console.log('配置中呼叫法')
}
render(){
return (
<button onClick={this.funcTwo}></button>
)
}
}
方式三:箭頭函式呼叫法(最推薦)
import React, { Component } from 'react';
class func extends Component{
constructor(porps){
super(props);
}
funcThree:() => {
console.log('箭頭函式呼叫法')
}
render(){
return (
<button onClick={this.funcThree}></button>
)
}
}
THE END!
相關文章
- 函式呼叫規則總結函式
- 幾種函式呼叫方式函式
- 各種內建函式技巧總結函式
- Android總結之鏈式呼叫(方法鏈)Android
- JS的五種函式呼叫方式JS函式
- caffe中各種cblas的函式使用總結函式
- ORACLE常用結構和函式使用方法總結Oracle函式
- Java中三種常用的排序方法Java排序
- php函式總結PHP函式
- Oracle 函式總結Oracle函式
- js裡函式呼叫的四種模式JS函式模式
- python函式與方法的區別總結Python函式
- 淺談API函式呼叫的方法API函式
- React | ref三種使用方式總結React
- React Native 樣式總結React Native
- 函式呼叫的三種方式 __cdecl、__stdcall、__fastcall函式AST
- mysql日期函式總結MySql函式
- PHP常用函式總結PHP函式
- Oracle常用函式總結Oracle函式
- php 常用函式總結PHP函式
- SQL Server函式總結SQLServer函式
- Python | Python常用函式、方法示例總結(API)Python函式API
- JS函式的定義與呼叫方法JS函式
- SAP ABAP 函式總結 常用函式解釋函式
- 建構函式,拷貝賦值函式的N種呼叫情況函式賦值
- 元素水平垂直居中三種方法實現
- ASP.NET Core端點路由中三種讓人困惑的路由函式ASP.NET路由函式
- Python透過函式名呼叫函式的幾種場景Python函式
- python中list方法與函式的學習總結Python函式
- Sigmoid函式總結Sigmoid函式
- 總結常用的字串函式字串函式
- mysql函式全面總結KSVMMySql函式
- ORACLE 實用函式總結Oracle函式
- loadrunner常用函式總結函式
- Oracle分析函式使用總結Oracle函式
- [28期] 字串函式總結字串函式
- JavaScript Function 函式深入總結JavaScriptFunction函式
- JS函式驗證總結JS函式