1
コンポーネントにオブジェクトを返し、テンプレート内のオブジェクトを反復処理するサービスがあります。プロパティの一部がnullでjsが破損する可能性があります。斜体オブジェクトの配列を型スクリプトのコンポーネントのテンプレートに入れます。angular2
テンプレート:[0]する.url私はカスケード条件を備えた単一のラインに修正することができますどのようにnullの画像ので、エラー "未定義のANNOT読まプロパティ 'URL'" をスロー
<table id="simple-table" class="table table-striped table-bordered table-hover">
<caption>Table of artists</caption>
<thead>
<tr>
<th>id</th>
<th>name</th>
<th>image</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let artist of artists">
<td>{{artist.id}}</td>
<td>{{artist.name}}</td>
<td><img class="img-circle" style="width:100%" src="{{artist.images[0].url}}"></td>
</tr>
</tbody>
</table>
artist.images?
? – echonax
「
@echonaxそのサム、私はサブスクリプション機能でブレークポイントを設定し、アーティストのプロパティの値をチェックし、すべてのオブジェクトがロードされている、何も疑問がありませんそこを見てください – TyForHelpDude