合并两个对象数组后,我得到一个结构如下的数组。我想将具有相同ID的对象分组并添加到它们的数量
[
{
id : 1
nome : T.SHIRT
quantita : 2
},
{
id : 2
nome : Sweatshirt
quantita : 4
},
{
id : 1
nome : T.SHIRT
quantita : 4
}
]
我想得到一个这样的数组。
[
{
id : 1
nome : T.SHIRT
quantita : 6
},
{
id : 2
nome : Sweatshirt
quantita : 4
},
]
我该怎么做?
1条答案
按热度按时间oymdgrw71#
下面的逻辑可能会帮助你:
$store
将包含每个“id”具有累积“quantita”的重构数组。工作demo