使用对象中的键从对象列表中创建映射

create a map out of list of objects using a key found in the object

本文关键字:对象 列表 创建 映射      更新时间:2023-09-26

本质上,我有一个像这样的对象-

var data= [ 
{ id: 1,
objectType: 'Workstation',
isUp: true 
},
{ id: 2,
objectType: 'Workstation',
isUp: true 
},
{ id: 3,
objectType: 'Workstation',
isUp: false 
},
{ id: 4,
  objectType: 'Workstation',
  isUp: true 
},
{ id: 5,
  objectType: 'Workstation',
  isUp: false 
},
{ id: 6,
  objectType: 'Server',
  isUp: true 
},
{ id: 7,
  objectType: 'Server',
  isUp: true 
},
{ id: 8,
  objectType: 'Server',
  isUp: false 
},
{ id: 9,
  objectType: 'Server',
  isUp: false 
}
]

其中"isUp"是联机或脱机对象状态。

我想把它转换成-

{
'Workstation':{online_count:3, offline_count:2},
'Server':{online_count:2, offline_count:2}
}

感谢您的帮助!

我为您准备了dis脚本:

var data= [ 
    { id: 1,
    objectType: 'Workstation',
    isUp: true 
    },
    { id: 2,
    objectType: 'Workstation',
    isUp: true 
    },
    { id: 3,
    objectType: 'Workstation',
    isUp: false 
    },
    { id: 4,
      objectType: 'Workstation',
      isUp: true 
    },
    { id: 5,
      objectType: 'Workstation',
      isUp: false 
    },
    { id: 6,
      objectType: 'Server',
      isUp: true 
    },
    { id: 7,
      objectType: 'Server',
      isUp: true 
    },
    { id: 8,
      objectType: 'Server',
      isUp: false 
    },
    { id: 9,
      objectType: 'Server',
      isUp: false 
    }
    ]
var finalData = new Array();
data.forEach(function (item) {
    var found = false;
    for (var i = 0; i < finalData.length; i++) {
        if (finalData[i].objType == item.objectType) {
            if (item.isUp)
                finalData[i].online_count++;
            else
                finalData[i].offline_count++;
            found = true;
        }
    }
    if (!found) {
        var newObj = new Object();
        newObj.objType = item.objectType;
        newObj.online_count = item.isUp ? 1 : 0;
        newObj.offline_count = item.isUp ? 0 : 1;        
        finalData.push(newObj);
    }    
});
console.log(finalData);

我认为这可以做到:

var result = {
    Workstation: {
        online_count: 0,
        offline_count: 0
    },
    Server: {
        online_count: 0,
        offline_count: 0
    }
};
data.forEach(function (item) {
    item.isUp ? result[item.objectType]['online_count']++ : result[item.objectType]['offline_count']++;
});