gpt4 book ai didi

javascript - 如何从数组 typescript 中删除基于 id 的 JSON 对象

转载 作者:行者123 更新时间:2023-11-30 08:28:01 26 4
gpt4 key购买 nike

<分区>

我有一个购物车数组,我将元素插入其中:

 cart = [];
this.cart.push(item);

我还想根据 id 从这个 cart[] 数组中删除元素,对象结构如下所示:

[
{
id:1,
imageUrl: "http://lorempixel.com/100/100/people?1",
author: "Windward",
handle: "@windwardstudios",
body: "Looking for a better company reporting or docgen app?",
totalLikes: 0,
iLike: false
},
{
id:2,
imageUrl: "http://lorempixel.com/100/100/people?1",
author: "Windward",
handle: "@windwardstudios",
body: "Looking for a better company reporting or docgen app?",
totalLikes: 0,
iLike: false
}
]

我正在执行 pop 操作来删除添加到数组的对象,但不幸的是,这是删除最后插入的项目。这是我不想要的。

this.cart.pop(); 

我如何在 typescript 中做到这一点?

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