gpt4 book ai didi

javascript - react native 如何动态识别哪个列表项处于事件状态?

转载 作者:行者123 更新时间:2023-11-30 14:12:46 25 4
gpt4 key购买 nike

我正在使用它们的索引呈现项目列表,并希望单独设置和检索这些项目的状态。例如,如果我正在渲染的特定项目未激活,我会渲染持续时间文本。

我的问题在下面的例子中:我如何评估像 this.state.[index]'started' 这样的东西,其中索引实际上是平面列表的索引,而不是值索引在状态对象中?我需要将其评估为 this.state.1startedthis.state.2started .... this.state.nstarted 自动。

 {!this.state.index && (
<Text style = {styles.timertext}>
{this.state.duration}:00
</Text>
)}

最佳答案

尝试使用括号表示法访问对象的属性:

this.state[`${index + 1}started`]

关于javascript - react native 如何动态识别哪个列表项处于事件状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54123112/

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