React使用setState更改数组中某一个值

记录问题,在react-native中使用FlatList渲染每个Item的时候,item中的一个值需要来判断这个文字显示,是关注还是已关注,所以点击时需要直接更改数组中的一个属性值。

 state = {
        UserList : []
    }
  const UserList = [...this.state.UserList] //复制数组
        const index = item.index
        this.setState({
            UserList: UserList.map((item, idx) => idx === index ? {...item, fansId: ""} : item)
        })

你可能感兴趣的:(React使用setState更改数组中某一个值)