更改数组中对象的属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改数组中对象的属性相关的知识,希望对你有一定的参考价值。

参考技术A 关注需要改变状态时,如果是直接的属性可以直接使用this.article.isFollow = !this.article.isFollow;更改 数组中的属性无法直接更改

点击一个时需要将所有id为这个的全部改变

其中的属性无法直接改变(即无法直接使用this.article.focus.is = !this.article.focus.is;)(在forEach数组中this.article无法直接找到内容)将内容赋值给element.focus.is然后将element.focus.is的内容添加给article,在发送请求之前需要定义一个变量代替this

使用扩展运算符更改数组中的属性返回对象而不是数组

【中文标题】使用扩展运算符更改数组中的属性返回对象而不是数组【英文标题】:Change property in array with Spread Operator returns object instead of array 【发布时间】:2017-06-26 11:57:14 【问题描述】:

我想改变一个类似这样的对象的属性,这是一个简化的对象,具有原始的一些属性:

 state = 
    pivotComuns: [
      
        id: 1,
        enabled : true
      ,
      
      id: 2,
      enabled : true
     
   ],
   otherProperties : "otherProperties"
 

我正在像这样更改启用状态:

 state = 
            ...state,
            pivotColumns: 
              ...state.pivotColumns,
              [2]: 
                ...state.pivotColumns[2], enabled: !state.pivotColumns[2].enabled
              
            
          

它可以工作,但不是像我一样返回一个数组,而是 pivotComuns 属性,它返回一个对象,“注意我将 [] 更改为 ”:

state = 
        pivotComuns: 
          
            id: 1
            enabled : true
          ,
          
          id: 2,
          enabled : true
         
       ,
       otherProperties : "otherProperties"
     

我做错了什么,我需要将该属性保留为数组。

【问题讨论】:

您的原始代码缺少... @Aaron 不仅是,在对象数据中也缺少, 对,我已经更新了代码。 【参考方案1】:

很晚的帖子,但为了将来参考,您可以执行以下操作:

state = 
   ...state,
   pivotColumns: state.pivotColumns.map(pc => 
    pc.id === 2 ? ...pc, enabled:!pc.enabled : pc
  )

优点是您不会更改“旧数组”中引用的对象,而是在其位置插入一个新对象。因此,如果您想在该州来回走动,现在可以这样做。

示例: https://codepen.io/anon/pen/JyXqRe?editors=1111

【讨论】:

【参考方案2】:

我不相信您可以以这种方式使用扩展运算符,如果可以的话,实际上不推荐使用它,因为它会创建非常难以阅读的代码。在更新值为数组的对象上的键/值时,我每天都会使用一个更简单的解决方案:

var state = 
  pivotColumns: [
    
      id: 1,
      enabled : true
    , 
    id: 2,
    enabled : true
   
 ],
 otherProperties : "otherProperties"


var clonedPivotColumns = state.pivotColumns.slice();

clonedPivotColumns[1].enabled = !state.pivotColumns[1].enabled;

state = 
   ...state,
   pivotColumns: clonedPivotColumns
 

这将为您提供正确的结果,并且不会导致任何突变。

工作笔 http://codepen.io/finalfreq/pen/ggdJgQ?editors=1111

【讨论】:

@DiegoUnanue codepen 在我不想要的时候保存了我现在改回来应该很好

以上是关于更改数组中对象的属性的主要内容,如果未能解决你的问题,请参考以下文章

在Javascript中推送不重复的数组并更改对象的属性值?

更改对象属性以匹配给定数组中的值

数组中对象的属性在所有元素都更改时是反应性的,但如果只有一些元素更改则不是

使用Colorpicker更改可观察数组中对象的属性

如何更改数组状态容器中的对象属性? React Hooks 使用状态

如何获得仅在 redux 状态的对象数组中的属性值更改时才发出的 Observable?