gpt4 book ai didi

javascript - native react : calling multiple functions onPress

转载 作者:行者123 更新时间:2023-11-30 08:19:20 25 4
gpt4 key购买 nike

是否可以使用按钮onPress调用多个函数(不是箭头函数)

我知道我可以像这样调用多个箭头函数:

onPress={() => { this.functionOne(); this.functionTwo();}}

但是如果我想在没有箭头函数的情况下调用多个函数怎么办?我试过了,但这行不通。

onPress={this.functionOne, this.functionTwo}

最佳答案

最好的方法是使用一个函数来调用所有函数,

func = () => {
this.functionOne();
this.functionTwo();
}

onPress={this.func}

或者您可以传递函数数组并在子组件中调用它们,

父级:

onPress=[this.functionOne, this.functionTwo]

child :

this.props.onPress.map(func=>{
func()
})

关于javascript - native react : calling multiple functions onPress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56590629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com