Caso d'uso
Il caso d'uso è convertire una matrice di oggetti in una mappa hash basata su stringa o funzione fornita per valutare e utilizzare come chiave nella mappa hash e valore come oggetto stesso. Un caso comune di utilizzo di questo è la conversione di una matrice di oggetti in una mappa hash di oggetti.
Codice
Di seguito è riportato un piccolo frammento in JavaScript per convertire una matrice di oggetti in una mappa hash, indicizzata dal valore dell'attributo dell'oggetto. È possibile fornire una funzione per valutare dinamicamente la chiave della mappa hash (tempo di esecuzione). Spero che questo aiuti qualcuno in futuro.
function isFunction(func) {
return Object.prototype.toString.call(func) === '[object Function]';
}
/**
* This function converts an array to hash map
* @param {String | function} key describes the key to be evaluated in each object to use as key for hashmap
* @returns Object
* @Example
* [{id:123, name:'naveen'}, {id:345, name:"kumar"}].toHashMap("id")
* Returns :- Object {123: Object, 345: Object}
*
* [{id:123, name:'naveen'}, {id:345, name:"kumar"}].toHashMap(function(obj){return obj.id+1})
* Returns :- Object {124: Object, 346: Object}
*/
Array.prototype.toHashMap = function(key) {
var _hashMap = {}, getKey = isFunction(key)?key: function(_obj){return _obj[key];};
this.forEach(function (obj){
_hashMap[getKey(obj)] = obj;
});
return _hashMap;
};
Puoi trovare l'essenza qui: Converte Array of Objects in HashMap .