gpt4 book ai didi

javascript - 检查对象的一个​​属性是否存在,只更新另一个属性

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

我有一个包含如下对象的数组:

    let arr = [
{ taxonomy: 'category', id: [ 10, 100 ] },
{ taxonomy: 'post_tag', id: [ 20 ] },
];

我希望能够在数组中推送一个新对象,如下所示:

    const object = {
taxonomy: 'category',
id: 30
}

我想要的是检查数组中属性值为“taxonomy”的对象是否已经存在,如果存在,我只想将新对象的 id 添加到现有对象中。我知道如何检查该属性是否已存在,但我不完全知道如何将新 ID 添加到数组中。

所以添加上面的对象会得到这个数组:

    [
{ taxonomy: 'category', id: [ 10, 100, 30 ] }, // 30 is added
{ taxonomy: 'post_tag', id: [ 20 ] },
];

如果尚不存在,则应添加。有人可以帮我解决这个问题吗?

最佳答案

使用Array.find() 在数组中定位具有相同分类法的对象。如果存在,将 id 添加到它。如果不是,则将对象的克隆推送到数组中(在将对象的 id 转换为数组之后):

const addUpdate = obj => {
const current = arr.find(o => obj.taxonomy === o.taxonomy);

if(current) current.id.push(obj.id);
else arr.push({
...obj,
id: [obj.id]
})
};

const arr = [
{ taxonomy: 'category', id: [ 10, 100 ] },
{ taxonomy: 'post_tag', id: [ 20 ] },
];

addUpdate({ taxonomy: 'category', id: 30 });

addUpdate({ taxonomy: 'other', id: 50 });

console.log(arr);

关于javascript - 检查对象的一个​​属性是否存在,只更新另一个属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55856894/

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