事件处理程序单击而不是选择

时间:2018-07-09 05:21:37

标签: javascript

我有一个带有用户列表的离子选择, 在此列表中,我有一个选项可以将我重定向到另一个页面: 在我的列表中,我有一个项目在选择并重定向我时会像按钮一样工作,我只希望它像按钮一样工作并且不被选中

  

我的列表:

enter image description here

请问有办法解决吗?

  <ion-select interface="popover" [ngModel]="selecteduser._id" (ngModelChange)="selectUser($event)" (ionChange)="onChange($event)">
    <ion-option *ngFor="let user of users" [value]="user._id">
      </ion-content>{{ getUserNickname(user }} </ion-option>
    <ion-option>Go To Modal</ion-option>
  </ion-select>

所以我想当我单击“转到模态”时,它将重定向到我的模态。 而不选择它。

有我的ts

  onChange(value: any) {
    if (value === 'Go To Modal') {
      this.openConfig()
    }
  }

  openConfig() {
    this.modalCtrl.create(configModal).present()
    console.log('heeey')
  }

  selectUser(userId: string) {
    this.selectedUser = this.users.find(b => b._id === userId)
    this.onSelect.emit(this.selectedUser)
  }

0 个答案:

没有答案