1
i는 페이지에서 드롭 다운 메뉴를 설정하지만 선택 값을 얻는 방법. 내가 이렇게ionic에서 드롭 다운에서 선택 값을 얻는 방법 2
<ion-item>
<ion-label>MemberType</ion-label>
<ion-select [(ngModel)]="selectedvalue" #item >
<ion-option *ngFor="let item of items" value="{{item.value}}" checked="{{item.checked}}">{{item.text}}</ion-option>
</ion-select>
</ion-item>
items: Array<{ value: number, text: string, checked: boolean }> = [];
this.items.push({ value: 1, text: 'Super Distributor', checked: false });
this.items.push({ value: 2, text: 'Distributor', checked: false });
this.items.push({ value: 3, text: 'Retailer', checked: false });
this.items.push({ value: 4, text: 'End User', checked: false });