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!
相關文章
- 各種內建函式技巧總結函式
- JS的五種函式呼叫方式JS函式
- caffe中各種cblas的函式使用總結函式
- Python | Python常用函式、方法示例總結(API)Python函式API
- python函式與方法的區別總結Python函式
- React Native 樣式總結React Native
- Sigmoid函式總結Sigmoid函式
- React | ref三種使用方式總結React
- 函式呼叫的三種方式 __cdecl、__stdcall、__fastcall函式AST
- mysql日期函式總結MySql函式
- PHP常用函式總結PHP函式
- python中list方法與函式的學習總結Python函式
- Python透過函式名呼叫函式的幾種場景Python函式
- 建構函式,拷貝賦值函式的N種呼叫情況函式賦值
- 元素水平垂直居中三種方法實現
- ASP.NET Core端點路由中三種讓人困惑的路由函式ASP.NET路由函式
- Python函式引數總結Python函式
- 總結常用的字串函式字串函式
- mysql函式全面總結KSVMMySql函式
- 子函式呼叫函式
- 函式呼叫棧函式
- 結構體三種例項化方法(含成員函式)結構體函式
- 三種方法實現strlen函式函式
- Vue 子元件呼叫父元件方法總結Vue元件
- python呼叫私有屬性的方法總結Python
- React事件繫結幾種方法測試React事件
- React.js繫結this的5種方法ReactJS
- java Stream結合函式方法Java函式
- php之正規表示式函式總結PHP函式
- 你不知道的JavaScript--Item8 函式,方法,建構函式呼叫JavaScript函式
- PHP 學習總結之函式PHP函式
- js常見函式總結(一)JS函式
- spark中的聚合函式總結Spark函式
- MySQL視窗函式用法總結MySql函式
- JS 中的函式 this 指向總結JS函式
- Emgucv使用中常用函式總結函式
- c++函式學習總結C++函式
- php開發常用函式總結PHP函式
- mysql之常用函式(核心總結)MySql函式