gpt4 book ai didi

javascript - 计算,打印更改项目,不重复

转载 作者:行者123 更新时间:2023-12-01 01:15:11 24 4
gpt4 key购买 nike

每次项目列表发生更改时,我都会尝试在表中显示项目。我有一个函数和一个计算函数,但我不确定我是否做得正确。

Function(){
Every time a new value comes in: changeList.push(item);
}

然后我计算了这个

Computed:
changedData: function(){
return this.changeList;
}

HTML

<tr v-for="change in changedData">
<td>change.value</td>
<tr>

它确实会在更改时打印出列表中的每个项目,但问题是我不希望它打印出已打印的项目,而只打印出新项目。

编辑:发现问题(推送功能)

for(index in question.Answers){
if(question.Answers[index].Selected === "selected" &&
question.Answers[index].Value === savedQuestion.Value){
this.myList.push({newValue: question.Answers[index].Value, oldValue:
savedQuestion.Value});
}
}

这将添加所有问题及其值,无论列表是否已包含具有完全相同值的相同问题。

最佳答案

因此,要实现此目的,您可以检查数组中是否存在具有相同值的对象。如果不存在,则仅推送值。

以下是更新后的代码。

const search = (newVal,oldVal) => array.find(element => (element.newValue === newVal && element.oldValue === oldVal));

for(index in question.Answers){
if(!search(question.Answers[index].Value,savedQuestion.Value))
if(question.Answers[index].Selected === "selected" &&
question.Answers[index].Value === savedQuestion.Value){
this.myList.push({newValue: question.Answers[index].Value, oldValue:
savedQuestion.Value});
}
}

关于javascript - 计算,打印更改项目,不重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54825185/

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