离子列表上的EventHandler

时间:2018-07-06 14:59:52

标签: javascript

我有一个离子列表,我想对最后两个项目进行事件处理。

并希望我的选择器对他们两个采取不同的行动,

目前它将选择它们,我希望它只像单击按钮一样起作用

这是我的HTML:

 <ion-select interface="popover" [ngModel]="selectedUser._id" (ngModelChange)="selectUser($event)" >
   <ion-option *ngFor="let user of users" [value]="user._id">
     <ion-content>{{ getUserName(user) }}</ion-option>
     <ion-option>Configuration</ion-option> 
     <ion-option>Pairing</ion-option>
 </ion-select>

我的TS

selectUser(userId: string) {
    if (userId === 'Configuration' ) {
      this.openConfigPage()
    } else if (userId === 'Pairing') {
      this.openPairing()
    } else {
      this.selectedUser = this.users.find(b => b._id === userId)
      this.onSelect.emit(this.selectedUser)
    }

  }

我希望它在选择“配置”而不在选择器上选择它时像按钮一样

My popover

0 个答案:

没有答案