我有一個表,我在一個數組迭代。在某些情況下,我想添加額外的<tr>
。我在尋找這樣的事情:ngIf用於關閉/打開標籤
<table>
<tr *ngFor="let element in array">
<td>
some content
</td>
//Starting block that will only be activated if some variable is true
</tr>
<tr>
<td>
some extra content
</td>
//End of the block that will only be activated if some variable is true
</tr>
</table>
有沒有一種方法來創建一個巨石HTML,可以把它包裝這樣的嗎?
選項我試過到目前爲止正在改變數據結構(陣列),所以它包括我在尋找的元素,但我並不高興有額外的數據存在只是爲了顯示的目的。
'* ngIf'不是一個迭代器,你需要使用'* ngFor'代替。 – Erevald
這是一個錯字。這是一個* ngFor – ZanattMan