Ho combinato le risposte di palpebra e KimKha.
Quello che segue è un servizio angularjs e supporta numeri, stringhe e oggetti.
exports.Hash = () => {
let hashFunc;
function stringHash(string, noType) {
let hashString = string;
if (!noType) {
hashString = `string${string}`;
}
var hash = 0;
for (var i = 0; i < hashString.length; i++) {
var character = hashString.charCodeAt(i);
hash = ((hash<<5)-hash)+character;
hash = hash & hash; // Convert to 32bit integer
}
return hash;
}
function objectHash(obj, exclude) {
if (exclude.indexOf(obj) > -1) {
return undefined;
}
let hash = '';
const keys = Object.keys(obj).sort();
for (let index = 0; index < keys.length; index += 1) {
const key = keys[index];
const keyHash = hashFunc(key);
const attrHash = hashFunc(obj[key], exclude);
exclude.push(obj[key]);
hash += stringHash(`object${keyHash}${attrHash}`, true);
}
return stringHash(hash, true);
}
function Hash(unkType, exclude) {
let ex = exclude;
if (ex === undefined) {
ex = [];
}
if (!isNaN(unkType) && typeof unkType !== 'string') {
return unkType;
}
switch (typeof unkType) {
case 'object':
return objectHash(unkType, ex);
default:
return stringHash(String(unkType));
}
}
hashFunc = Hash;
return Hash;
};
Esempio di utilizzo:
Hash('hello world'), Hash('hello world') == Hash('hello world')
Hash({hello: 'hello world'}), Hash({hello: 'hello world'}) == Hash({hello: 'hello world'})
Hash({hello: 'hello world', goodbye: 'adios amigos'}), Hash({hello: 'hello world', goodbye: 'adios amigos'}) == Hash({goodbye: 'adios amigos', hello: 'hello world'})
Hash(['hello world']), Hash(['hello world']) == Hash(['hello world'])
Hash(1), Hash(1) == Hash(1)
Hash('1'), Hash('1') == Hash('1')
Produzione
432700947 true
-411117486 true
1725787021 true
-1585332251 true
1 true
-1881759168 true
Spiegazione
Come puoi vedere, il cuore del servizio è la funzione hash creata da KimKha. Ho aggiunto tipi alle stringhe in modo che la struttura dell'oggetto abbia un impatto anche sul valore finale dell'hash. Le chiavi sono sottoposte a hash per impedire collisioni di array | oggetti.
la comparazione di oggetti senza palpebre viene utilizzata per prevenire la ricorsione infinita da oggetti autoreferenziali.
uso
Ho creato questo servizio in modo da poter avere un servizio di errore a cui si accede con oggetti. In modo che un servizio possa registrare un errore con un determinato oggetto e un altro può determinare se sono stati rilevati errori.
vale a dire
JsonValidation.js
ErrorSvc({id: 1, json: '{attr: "not-valid"}'}, 'Invalid Json Syntax - key not double quoted');
UserOfData.js
ErrorSvc({id: 1, json: '{attr: "not-valid"}'});
Ciò restituirebbe:
['Invalid Json Syntax - key not double quoted']
Mentre
ErrorSvc({id: 1, json: '{"attr": "not-valid"}'});
Questo sarebbe tornato
[]