打字稿(IONIC)-如何检查离子选择是否为空或为空

时间:2018-10-08 10:40:17

标签: typescript ionic2 typescript2.0

PS: its okay to display it to console for now.

用户应先从选择选项中进行选择,然后才能单击按钮,我要显示的是提醒用户,他/她首先需要选择一个项目。我尝试使用不同的代码,但仍然失败,需要时间寻求帮助,这是我的代码

HTML

    <ion-select [(ngModel)]="sProducts">
<ion-option *ngFor="let product of products" >
{{product.productName}}
</ion-option></ion-select>

TS

if (this.sProducts == ""){
   error => console.log("naay wrong")
 }
 else {
  //proceed to next form }

0 个答案:

没有答案