gpt4 book ai didi

javascript:当我知道 id 时从数组中获取对象

转载 作者:行者123 更新时间:2023-11-28 14:11:56 24 4
gpt4 key购买 nike

这是我在 js 中的数组:

const array = [
{
id: 1,
userId: 1,
title: 'test1',
},
{
id: 2,
userId: 1,
title: 'test2',
},
{
id: 3,
userId: 1,
title: 'test3',
},
{
id: 4,
userId: 1,
title: 'test4',
}
]

我只需要获取我知道其 id 的对象并将其分配给一个变量。我知道我需要一个 id 号为 1 的对象,所以我想:

const item = {
id: 1,
userId: 1,
title: 'test1',
},

最佳答案

使用Array.find :

const array = [
{
id: 1,
userId: 1,
title: "test1"
},
{
id: 2,
userId: 1,
title: "test2"
},
{
id: 3,
userId: 1,
title: "test3"
},
{
id: 4,
userId: 1,
title: "test4"
}
];

const item = array.find(({ id }) => id === 1);

console.log(item);

关于javascript:当我知道 id 时从数组中获取对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59141756/

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