web-dev-qa-db-ja.com

angle2のangle.equalsと同等

angular 1プロジェクトをangular 2に移行しています。 angular 1プロジェクトでは、オブジェクト比較angular.equals($ctrl.obj1, $ctrl.newObj);にangle.equalsを使用していましたが、angular 2で同等のメソッドをオンラインで検索しましたが、一致する結果が見つかりませんでした。

21
Dmehro

@Günterはい、angular2には同等のものはありません。さらに検索している間に、angular.equalsおよびsyntexと同じ仕事をするサードパーティのライブラリloadashが見つかりました。これはangularと同じです。ライブラリは私の問題を解決します

Loadashドキュメントからのコードの抜粋

var object = { 'a': 1 };
var other = { 'a': 1 };

_.isEqual(object, other);
// => true

object === other;
// => false
14
Dmehro

私はアリエルの答えを書き直し(ありがとう!)、TSLINTフレンドリーになりました。 else ifを使用して継続を保存することもできますが、これはより明確だと思います。たぶん他の誰かがそれを必要としています:

export function deepEquals(x, y) {
  if (x === y) {
    return true; // if both x and y are null or undefined and exactly the same
  } else if (!(x instanceof Object) || !(y instanceof Object)) {
    return false; // if they are not strictly equal, they both need to be Objects
  } else if (x.constructor !== y.constructor) {
    // they must have the exact same prototype chain, the closest we can do is
    // test their constructor.
    return false;
  } else {
    for (const p in x) {
      if (!x.hasOwnProperty(p)) {
        continue; // other properties were tested using x.constructor === y.constructor
      }
      if (!y.hasOwnProperty(p)) {
        return false; // allows to compare x[ p ] and y[ p ] when set to undefined
      }
      if (x[p] === y[p]) {
        continue; // if they have the same strict value or identity then they are equal
      }
      if (typeof (x[p]) !== 'object') {
        return false; // Numbers, Strings, Functions, Booleans must be strictly equal
      }
      if (!deepEquals(x[p], y[p])) {
        return false;
      }
    }
    for (const p in y) {
      if (y.hasOwnProperty(p) && !x.hasOwnProperty(p)) {
        return false;
      }
    }
    return true;
  }
}
12
Phil

オブジェクトを反復処理する関数を記述する代わりに、JSON.stringifyを使用して2つの文字列を比較できますか?

例:

var obj1 = {
  title: 'title1',
  tags: []
}

var obj2 = {
  title: 'title1',
  tags: ['r']
}


console.log(JSON.stringify(obj1));
console.log(JSON.stringify(obj2));


console.log(JSON.stringify(obj1) === JSON.stringify(obj2));
6
Stephen Kaiser

Angular 2では、純粋なJavaScript/TypeScriptを使用して、このメソッドをサービスに追加できるようにする必要があります

private static equals(x, y) {
    if (x === y)
        return true;
    // if both x and y are null or undefined and exactly the same
    if (!(x instanceof Object) || !(y instanceof Object))
        return false;
    // if they are not strictly equal, they both need to be Objects
    if (x.constructor !== y.constructor)
        return false;
    // they must have the exact same prototype chain, the closest we can do is
    // test there constructor.

    let p;
    for (p in x) {
        if (!x.hasOwnProperty(p))
            continue;
        // other properties were tested using x.constructor === y.constructor
        if (!y.hasOwnProperty(p))
            return false;
        // allows to compare x[ p ] and y[ p ] when set to undefined
        if (x[p] === y[p])
            continue;
        // if they have the same strict value or identity then they are equal
        if (typeof (x[p]) !== "object")
            return false;
        // Numbers, Strings, Functions, Booleans must be strictly equal
        if (!RXBox.equals(x[p], y[p]))
            return false;
    }
    for (p in y) {
        if (y.hasOwnProperty(p) && !x.hasOwnProperty(p))
            return false;
    }
    return true;
}
4
Ariel Henryson
a = { name: 'me' }
b = { name: 'me' }
a == b // false
a === b // false
JSON.stringify(a) == JSON.stringify(b) // true
JSON.stringify(a) === JSON.stringify(b) // true
1
Mr.Zon