函数绑定
2017-01-06 本文已影响14人
冷洪林
// 有函数
sayHello(str){
console.log(str)
}
// 在onPress中使用箭头函数调用
// onPress={() => this.sayHello('Hello')}
// 等同于
//onPress={sayHello('hello').bind(this)}
// 等同于
// onPress={print('hello',this)}