-1
なぜこれが機能しないのですか?私はブラウザのコンソールで "tr"のクローズドタグのエラーを取得します。角2:閉じたtrタグ
Error: Template parse errors:
Unexpected closing tag "tr". It may happen when the tag has already been closed by another tag.
しかし、わかるように、クローズドタグはありません。 私は最初にtrを開き、最後に閉じます。したがって、ngIfのclose-openはどんな場合でも動作するはずです。
import {Component} from '@angular/core';
@Component({
selector: "parent",
template: `
<table border=1>
<tr>
<ng-container *ngFor="let k of [1,2,3,4]">
<td>test</td>
<ng-container *ngIf="true">
</tr><tr>
</ng-container>
</ng-container>
</tr>
</table>
`
})
export class ParentComponent {}
ありがとうございました!
ことでしょう巣 '
@RoddyoftheFrozenPeas良い点。はい、私はコードを誤解しています。その場合、OPはこのコードを元の '
私はテンプレートがとにかくパースエラーがヒットする有効なHTMLまたはOPであることが必要であると考えています。
関連する問題