比较对象中的键值是否重复

时间:2018-07-30 19:30:47

标签: javascript object ecmascript-6

我有一个对象:

myObj = {
  attendent-0-id:"123",
  attendent-0-name:"Bob Smith",
  attendent-1-id:"1234",
  attendent-1-name:"Alex Smith",
  attendent-2-id:"123",
  attendent-2-name:"Charlie Smith",
  attendent-maxGuest:1,
  attendent-party-name:"",
}

我需要创建一个遍历myObj的循环,找到所有ID,然后将它们进行比较以进行重复。因此,在这种情况下,由于attendent-0-id等于attendent-2-id,因此会记录错误。

如果确实找到重复项,则需要将标志设置为true;

我尝试了很多事情,但现在还停留在这里。谢谢你的帮助。

5 个答案:

答案 0 :(得分:2)

根据您的情况,您可以通过以下方式使用Object.keys()来浏览myObj

for (const key of Object.keys(obj))

使用普通对象作为映射来存储ID的先前值:

const map = {};

使用正则表达式模式来确保仅评估特定的ID:

const pattern = /^attendent-\d+-id$/;

,然后在map的帮助下,将错误记录在重复的ID上:

if (value in map) {
  console.error(`${map[value]} is equal to ${key}, which is ${value}`);        
}

示例:

const myObj = {
  'attendent-0-id': "123",
  'attendent-0-name': "Bob Smith",
  'attendent-1-id': "1234",
  'attendent-1-name': "Alex Smith",
  'attendent-2-id': "123",
  'attendent-2-name': "Charlie Smith",
  'attendent-maxGuest': 1,
  'attendent-party-name': "",
};

function errorOnDuplicateIds(obj) {
  const map = {};
  const pattern = /^attendent-\d+-id$/;
  
  for (const key of Object.keys(obj)) {
    if (pattern.test(key)) {      
      const value = obj[key]
      
      if (value in map) {
        console.error(`${map[value]} is equal to ${key}, which is ${value}`);        
      } else {
        map[value] = key
      }
    }    
  }
}

errorOnDuplicateIds(myObj);

答案 1 :(得分:1)

const ids = []; // keep track of found ids
Object.keys(myObj).forEach(key => { // iterate over all properties of myObj
    // check if property name is in format "attendent-" *some number* "-id"
    if (/^attendent-\d+-id$/.test(key)) {
        // check if the id has already been found
        if (ids.findIndex(id => id === myObj[key]) !== -1) {
            console.log('error');
        } else {
            ids.push(myObj[key]);
        }
    }
});

答案 2 :(得分:1)

您可以为此使用Object.entriesMap(按值键入):

var myObj = {"attendent-0-id":"123","attendent-0-name":"Bob Smith","attendent-1-id":"1234","attendent-1-name":"Alex Smith","attendent-2-id":"123","attendent-2-name":"Charlie Smith","attendent-maxGuest":1, "attendent-party-name":""};

var dupes = [...Object.entries(myObj).reduce(
    (map, [key,val]) => map.set(val, (map.get(val) || []).concat(key)), 
    new Map
).values()].filter(keys => keys.length > 1);

console.log(dupes);

此解决方案对键的格式没有任何特殊意义。

话虽如此,您的对象结构似乎对不良设计有所怀疑:对象键中不应包含枚举。为此,您应该使用数组。

答案 3 :(得分:1)

Object.values(myObj)将创建一个包含所有值的数组,然后您可以使用任何方法在该数组中查找重复的元素。

var myValues = Object.values(myObj); //This will create an array of all values
var uniq = myValues.map((val) => {
  return {count: 1, val: val}
}).reduce((a, b) => {
  a[b.val] = (a[b.val] || 0) + b.count
  return a
}, {});
var duplicates = Object.keys(uniq).filter((a) => uniq[a] > 1)
if (duplicates.length) {
   return true;
} else {
   return false;
}

答案 4 :(得分:1)

我的第一个建议是将您的对象重新定义为更灵活的对象。

let myObject = {
    attendants : [
        { 
            id: "123",
            name: "Bob Smith"
        },
        { 
            id: "456",
            name: "Alex Smith"
        },
        { 
            id: "768",
            name: "Charlie Smith"
        },           
    ],
    maxGuest: 1,
    partyName: ""
};

这将允许您迭代服务员。

for (var attendant in myObject.attendants){
     doSomething(attendant.id, attendant.name);
}

您还可以对话务员进行排序:

// Sort by id 
myObject.attendants.sort(function(left, right){
    return left.value - right.value;
});

// Sort by name
myObject.attendants.sort(function (left, right){
    var leftName = left.name.toLowerCase();
    var rightName = right.name.toLowerCase();

    if (leftName < rightName) return -1;
    if (leftName > rightName) return 1;
    return 0;
});

现在,假设您别无选择。然后变得复杂了。

您需要创建(或修改现有的)排序算法,以便它可以使用按以下方式生成的密钥:

myObject[`attendent-${index}-id`]
myObject[`attendent-${index}-name`]

并保持一对