文法,在中括号裡填上html标簽的屬性名稱:

<h2>Products</h2>
<div *ngFor="let product of productsJerry2">
<h3>
<a [title]="product.name + ' details'">
{{ product.name }}
</a>
</h3>
<p *ngIf="product.description">
Description: {{ product.description }}
</p>
<button (click)="share()">
Share
</button>
</div>
最後渲染出來的html源代碼: