gpt4 book ai didi

angular - 如何在 Angular 2/4 的不同 Json 数组中使用相同的模型名称

转载 作者:太空狗 更新时间:2023-10-29 18:24:11 24 4
gpt4 key购买 nike

我有两个 Json 数组,如下所示。

Items: any[]; Item: any = {};

两个数组具有相同的属性名称 ItemName; Items 数组包含项目详细信息列表。如果我从 Items 数组中选择一项并复制到 Item.当我更新 Item 的值时,它也会反射(reflect)在 Items 中。如何在 Angular 2/4 中阻止它

最佳答案

您需要提取所选项目并对其进行深度克隆,然后对其进行操作,而不是对数组中的项目进行操作。你可以这样做:

Items: any[]; // Your original array
Item: any = {}; // One of the items in the previous array

selectedItem: any = Object.assign({}, Item); // use this item instead of the previous one.

希望对您有所帮助! :)

关于angular - 如何在 Angular 2/4 的不同 Json 数组中使用相同的模型名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49317507/

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