How to retrieve the selected options of a multiple <ion-select>?

Hi there,

I’m using the following code:

<ion-list class="options">
        <ion-item>
          <ion-label>Available Tags</ion-label>
          <ion-select white_label [(ngModel)]="tags" multiple="true" cancelText="Cancel" okText="Select">
            <ion-option *ngFor="let tag of tagContainer"> {{tag}} </ion-option>
          </ion-select>
        </ion-item>
</ion-list>

I’m trying to bind the selected options to typescript so I can save them to an array and manipulate. What would be the best way to approach this?

Thanks

Bump. Anybody have any suggestions?

Never mind, I solved the issue.

Can you post the solution please?

Could you please share your solution?? I have same issue…