8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Angular】ngForでObjectを表示させる際にKey, Valueを利用したい

Last updated at Posted at 2020-01-04

はじめに

今回はObjectをngForで表示する際に、KeyValueを利用する方法を共有していく。

keyvalueパイプを使う

key-value-example.component.ts
import { Component, OnInit } from '@angular/core';

@Component({
    selector: 'app-key-value-example',
    templateUrl: './key-value-example.component.html',
    styleUrls: ['./key-value-example.component.scss'],
})
export class KeyValueExampleComponent implements OnInit {
    public exampleObject = {
        'イリヤ': '丹下桜',
        'シノブ': '大坪由佳',
        'アカリ': '浅倉杏美',
        'ヨリ': '原紗友里',
        'ミヤコ': '雨宮天',
    };

    constructor() {}

    ngOnInit() {}
}
key-value-example.component.html
<ng-container *ngFor="let chara of exampleObject | keyvalue">
    <div>
        <div>キャラクター名:{{chara.key}}</div>
        <div>声優:{{chara.value}}</div>
    </div>
</ng-container>

このように表示された
スクリーンショット 2020-01-04 15.18.14.png

ちなみにObservableの値であれば、

<ng-container *ngFor="let chara of exampleObject | async | keyvalue">
</ng-container>

とすれば良い。

参考

8
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?