typescript 键值,map.ts

Posted

tags:

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

@Component({
  template: `
    <h1>Map</h1>
    <div *ngFor="let row of rowsMap | keyvalue">
      {{ row | json }}
      {{row.key}}: {{row.value}}
    </div>
  `
})
export class AppComponent {
  rowsMap = new Map([['a', 1], ['b', 2]]);
}

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

Typescript 强类型键值对声明

typescript 键值,numerical.ts

typescript 键值,alpha.ts

typescript 键值,cf.ts

typescript 键值-OBJ-1.ts

typescript 键值,obj.ts