Select 在 Ionic2 中打开弹出窗口时如何检测事件?

How to detect event when Select open popup in Ionic2?

        <ion-select [(ngModel)]="outletId" (ionChange)="selectDt($event)">
            <ion-option *ngFor="let o of outlets" [value]="o.id" >{{o.outletNameKh}}</ion-option>
        </ion-select>

通过这个我只能在我们 select 之后检测到 select 列表中的选项。

当 select 弹出窗口出现在屏幕上时,我如何检测它的事件?

ion-select 元素添加一个 click 事件侦听器。

<ion-select (click)="onSelectClicked()" [(ngModel)]="outletId" (ionChange)="selectDt($event)">
    <ion-option *ngFor="let o of outlets" [value]="o.id" >{{o.outletNameKh}}</ion-option>
</ion-select>