양식 페이지를 만들 때 두 js 개체가 정확히 동일한지 확인하고 싶습니다.
여기 stackoverflow에 대한 솔루션이 있습니다. 여기에 기록하세요.
Object.prototype.equals = function(x )
{
var p;
for(p in this) {
if(typeof(x[p])=='undefine') {return false;}
}
for( p in this) {
if (this[p]) {
switch(typeof(this[p])) {
case 'object':
if (!this[p ].equals (x[p])) { return false; } break;
case '함수':
if (typeof(x[p])=='undefine' ||
(p ! = 'equals' && this[p].toString() != x[p].toString()))
return false
break
기본값:
if(this[p] != x [p]) { false 반환 }
}
} else {
if (x[p])
false 반환
}
}
(p in x) {
if(typeof(this[p])=='undefine') {return false;}
}
return true
}