// 有函数
sayHello(str){
console.log(str)
}
// 在onPress中使用箭头函数调用
// onPress={() => this.sayHello('Hello')}
// 等同于
//onPress={sayHello('hello').bind(this)}
// 等同于
// onPress={print('hello',this)}
// 有函数
sayHello(str){
console.log(str)
}
// 在onPress中使用箭头函数调用
// onPress={() => this.sayHello('Hello')}
// 等同于
//onPress={sayHello('hello').bind(this)}
// 等同于
// onPress={print('hello',this)}
本文标题:函数绑定
本文链接:https://www.haomeiwen.com/subject/vjmtbttx.html
网友评论