如果文本输入区域为空,ionic2/angular2 中是否有任何简单的方法可以禁用按钮?
Any simple way in ionic2/angular2 to disable button if a text input area is empty?
我正在尝试在按钮上使用 *ngIf 条件,以便在文本输入区域为空时禁用它,但似乎没有直接的方法来访问该输入值。
<ion-item>
<ion-label fixed>Venue</ion-label>
<ion-input type="text" id="venue" [(ngModel)]="event.venue" class="form-control" maxlength="22" required></ion-input>
</ion-item>
<button ion-button block id="addEventButton" *ngIf="//not sure what to do here// " (click)="addEvent();">Add Event</button>
是的,这行得通
<button ion-button block id="addEventButton" [disabled]="!event.venue"></button>
我正在尝试在按钮上使用 *ngIf 条件,以便在文本输入区域为空时禁用它,但似乎没有直接的方法来访问该输入值。
<ion-item>
<ion-label fixed>Venue</ion-label>
<ion-input type="text" id="venue" [(ngModel)]="event.venue" class="form-control" maxlength="22" required></ion-input>
</ion-item>
<button ion-button block id="addEventButton" *ngIf="//not sure what to do here// " (click)="addEvent();">Add Event</button>
是的,这行得通
<button ion-button block id="addEventButton" [disabled]="!event.venue"></button>