我们有一个名称值字段,它不接受重复的名称。但是,在集成中,它使用重复的名称创建记录。我们如何验证它以忽略请求中的重复名称
答案 0 :(得分:0)
使用数组过滤器删除已删除的重复值
const array = ["test", "test1", "test2", "test", "test", "test1", "test", "test2", "test"];
var uniqueArray = array.filter(function(elem, index, self) {
return index === self.indexOf(elem);
})
console.log(uniqueArray);