typescript 键值,cf.ts

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 键值,cf.ts相关的知识,希望对你有一定的参考价值。

@Component({
  template: `
    <div *ngFor="let row of rows | keyvalue: compareFn">
      {{ row | json }}
      {{row.key}}: {{row.value}}
    </div>
  `
})
export class AppComponent {
  rows = {
    a: 1,
    b: 2
  }

  compareFn = (a, b) => ...
}

以上是关于typescript 键值,cf.ts的主要内容,如果未能解决你的问题,请参考以下文章

Typescript 强类型键值对声明

typescript 键值,numerical.ts

typescript 键值,alpha.ts

typescript 键值,map.ts

typescript 键值-OBJ-1.ts

typescript 键值,obj.ts