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 }