IONIC4-关闭“内部”模态后关闭模态

时间:2020-02-27 08:01:51

标签: modal-dialog ionic4

我对Ionic 4有以下问题。

我在另一个模式中创建了一个模式。从第二个模态中进行选择应关闭两个模态。不幸的是,这不起作用。 “调用”模式不会关闭。有什么想法吗?

async openDetailSelection(category:string) {
  const modal = await this.modalController.create({
    component: IconDetailSelectionPage,
    componentProps: {
      'category': category
    }
  });
  modal.onDidDismiss().then((dataReturned) => {
    if (dataReturned !== null) {
    this.selectedIcon=dataReturned.data.icon  
            console.log("Returned Icon: "+this.selectedIcon.icon)
            this.modalController.dismiss({
              'icon': this.selectedIcon

            });

    }
  });

return  await modal.present();
 }

0 个答案:

没有答案