鍍金池/ 問答/HTML5  HTML/ ES6中不用匿名函數(shù)如何傳遞參數(shù),而且不立即執(zhí)行呢

ES6中不用匿名函數(shù)如何傳遞參數(shù),而且不立即執(zhí)行呢

  test(...arg) {
        console.log("參數(shù)",arg);
    }
    
 render(){
        return <View style={{flex:1,backgroundColor:"blue"}}>
            <TouchableOpacity activeOpacity={1} 
            onPress={this. test("點(diǎn)擊執(zhí)行這個函數(shù)而不是立即執(zhí)行")}>//不適用箭頭函數(shù) 有沒有其他方式呢?
                <Text>hahahahhahahahahahha</Text>
            </TouchableOpacity>

        </View>
    }
回答
編輯回答
青檸
constructor(){
     ....
    this.test.bind(this)
}
2017年3月23日 08:09
編輯回答
詆毀你
onPress={()=>this. test("點(diǎn)擊執(zhí)行這個函數(shù)而不是立即執(zhí)行")}
2017年6月18日 16:14
編輯回答
做不到
this.test.bind(this, args)
2018年5月3日 13:40