1
テキスト入力エリアが空であれば無効にするために、* ngIf条件をボタン上で使用しようとしていますが、その入力値に簡単にアクセスする方法はないようです。テキスト入力領域が空の場合、ボタンを無効にする簡単な方法はionic2/angular2ですか?
<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>