web-dev-qa-db-ja.com

タイプスクリプトでオブジェクトの配列をソートしますか?

TypeScriptでオブジェクトの配列を並べ替えるにはどうすればよいですか?

具体的には、1つの特定の属性で配列オブジェクトをソートします。この場合、nome( "name")またはcognome( "surname")?

/* Object Class*/
export class Test{
     nome:String;
     cognome:String;
}

/* Generic Component.ts*/
tests:Test[];
test1:Test;
test2:Test;

this.test1.nome='Andrea';
this.test2.nome='Marizo';
this.test1.cognome='Rossi';
this.test2.cognome='Verdi';

this.tests.Push(this.test2);
this.tests.Push(this.test1);

どうも!

14
Maurizio Rizzo

それはあなたが何をソートしたいかに依存します。 JavaScriptにはArray sの標準のsort関数があり、オブジェクト専用の複雑な条件を記述できます。 f.e

var sortedArray: Test[] = unsortedArray.sort((obj1, obj2) => {
    if (obj1.cognome > obj2.cognome) {
        return 1;
    }

    if (obj1.cognome < obj2.cognome) {
        return -1;
    }

    return 0;
});
28
Jaroslaw K.
    const sorted = unsortedArray.sort((t1, t2) => {
      const name1 = t1.name.toLowerCase();
      const name2 = t2.name.toLowerCase();
      if (name1 > name2) { return 1; }
      if (name1 < name2) { return -1; }
      return 0;
    });
6
rlloyd2001
this.tests.sort(t1,t2)=>(t1:Test,t2:Test) => {
    if (t1.nome > t2.nome) {
        return 1;
    }

    if (t1.nome < t2.nome) {
        return -1;
    }

    return 0;
}

このように試してみましたか?

5
coenni
[{nome:'abc'}, {nome:'stu'}, {nome:'cde'}].sort(function(a, b) {
  if (a.nome < b.nome)
    return -1;
  if (a.nome > b.nome)
    return 1;
  return 0;
});

この方法を使用できます。

let sortedArray: Array<ModelItem>;
sortedArray = unsortedArray.slice(0);
sortedArray.sort((left, right) => {
    if (left.id < right.id) return -1;
    if (left.id > right.id) return 1;
    return 0;
})
2
Mohammad Ahmadi