“pesanan dengan naik turun di sudut 6 pada klik tombol” Kode Jawaban

pesanan dengan naik turun di sudut 6 pada klik tombol

private isAscendingSort: boolean = false;

sortUser() {
  console.log('sorting!'); // just to check if sorting is being called
  this.isAscendingSort = !this.isAscendingSort; // you missed this

  this.items.sort((item1: any, item2: any) => this.compare(item1, item2));
}
Precious Puffin

pesanan dengan naik turun di sudut 6 pada klik tombol

<button (click)="sortData()">Sort Data</button>
<div *ngFor="let item of items">
{{items.attributes.fullName}}
</div>
Precious Puffin

pesanan dengan naik turun di sudut 6 pada klik tombol

let isAscendingSort: Boolean = true;
sortUser() {
    console.log('sorting!'); //just to check if sorting is beng called
    this.items.sort((item1: any, item2: any) => this.compare(item1, item2));
  }
  // Sort
  compare(item1: any, item2: any): number {
    let compValue = 0;
      compValue = item1.attributes.fullName.localeCompare(item2.attributes.fullName, 'en', {
        sensitivity: 'base'
      });
    console.log(compValue);
    if (!this.isAscendingSort) {
      compValue = compValue * -1;
    }
    return compValue;
  }
Precious Puffin

Jawaban yang mirip dengan “pesanan dengan naik turun di sudut 6 pada klik tombol”

Pertanyaan yang mirip dengan “pesanan dengan naik turun di sudut 6 pada klik tombol”

Lebih banyak jawaban terkait untuk “pesanan dengan naik turun di sudut 6 pada klik tombol” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya