如何在React Native中使用索引更改数组中的值

时间:2018-08-29 14:11:17

标签: javascript arrays react-native

我的状态中有一个数组:

state = {
  some_array: [1,1,1,3,6,3,6,23], // sorry for the syntax it's changed
 }
 
 

现在,我想更改索引为4的数组中的值,在这种情况下,该值为6,或者如果要更改索引1,则为第二个数字或数组。
我知道这很简单,但我很困惑。

如果您需要更多信息,请发表评论。

谢谢!

1 个答案:

答案 0 :(得分:3)

我认为您可以使用下一个代码:

const some_array = [...this.state.some_array]
some_array[indexHere] = yourValue
this.setState({some_array:some_array})

此示例--- FP反应的正确方法。