我有一个API,可以提取表行中的数据。它具有2个要获取的参数。我有另一个API,该API具有相同的两个参数以及另外4个参数。如果第二个API的任何数据已经存在于第一个API中,我想替换它。
我可以比较表格中的新数据,但不能显示。
res.forEach((el) => {
const index = this.Array.findIndex((pEl) => {
return pEl.Name === el.Name;
});
if (index >= 0) {
this.Array[index] = el;
this.Array[index].Id = el.Id;
this.Array[index].Name = el.Name;
this.Array[index].policy= el.policy;
key.no = el.no;
key.shift = el.shift;
key.shifts = el.shifts;
this.Array[index].checkBox = true;
我应该能够检查并替换数据。