gpt4 book ai didi

javascript - React Native Button onPress 函数示例

转载 作者:行者123 更新时间:2023-12-05 09:03:34 25 4
gpt4 key购买 nike

使用两者有什么区别,什么时候应该使用一个

<Button onPress={this.refreshData}>
<Button onPress={()=>this.refreshData()}>

最佳答案

如果您不需要将参数传递给您的函数,您应该这样做:

<Button onPress={this.refreshData}>

这样做 <Button onPress={()=>this.refreshData()}>可能会破坏优化。
来自 React 文档:

Using an arrow function in render creates a new function each time the component renders, which may break optimizations based on strict identity comparison.

关于javascript - React Native Button onPress 函数示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69846105/

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