Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
angular 2でpbを持っています
<div *ngFor="let elm of elements"> <h1> {{elm["0"].value}}</h1> </div>
配列の場合、「elm」の値にアクセスするにはどうすればよいですか? ご協力ありがとうございました。
elm が配列の場合、次のようにアクセスできます。
<div *ngFor="let elm of elements"> <h1> {{elm[0]}}</h1> </div>
しかし、これも機能します:
<div *ngFor="let elm of elements"> <h1> {{elm["0"]}}</h1> </div>