我想比较 2 个对象数组(产品)并将所有更改保存到数组中changes。
我正在寻找带有循环的答案,以便即使我内部有 20 个键products并且newProducts.
产品
products: [
{ id: "A32S", title: "Car" },
{ id: "D12E", title: "Rabbit" },
{ id: "A32S", title: "Ghost" },
]
新产品
newProducts: [
{ id: "A32S", title: "Ferrari" }, // <--- Change title "Car -> Ferrari"
{ id: "D12E", title: "Rabbit" },
{ id: "A32S", title: "Ghost" }
]
变化(期望的输出)
changes: [
{ id: "A32S", title: "Ferrari" }
]
慕尼黑的夜晚无繁华
千巷猫影
相关分类