【发布时间】:2017-10-06 22:02:46
【问题描述】:
我有一个动态模板,但我收到一条错误消息:
Template parse errors: Unexpected closing tag "button". It may happen when the tag has already been closed by another tag.
这是我的模板:
<ion-col>
<button *ngIf=!editMode" class="warning-gradient" (click)="toggleEdit()"><i class="fa fa-edit"></i>Update</button>
<button *ngIf="editMode" class="warning-success" (click)="submitForm()"><i class="fa fa-check"></i>Update</button>
</ion-col>
...我应该做一些不同的事情吗?
【问题讨论】:
-
*ngIf="!editMode"你错过了第一个按钮上的"开头 -
@jmw5598 为什么不将其添加为答案?似乎是OP的解决方案
-
天啊...我盯着那个看了这么久
标签: ionic2 angular2-template angular-ng-if