js判断数组元素是否重复,方便简洁
解决方法:
self.cutes是一个数组,元素是一个json,格式{“cited_qid”:“123”,“cited_type”:“1”},下面根据json的属性来判断是否重复数据
const map = new Map();
var new_cutes= self.cutes.filter((o) => !map.has(o.cited_qid+o.cited_type) && map.set(o.cited_qid+o.cited_type, 1));
if(new_cutes.length<self.cutes.length){
flag=false;
showWarnTips('不能重复');
}