离子/角度对话框错误-无效链接:DialogView

时间:2018-07-19 15:38:15

标签: angular typescript ionic-framework ionic2 ionic3

我正在通过创建stackblitz演示应用程序来调试应用程序中的问题。我被卡住了,无法弄清楚为什么当我单击以打开对话框时,出现此问题标题中提到的错误。

我正在home.ts中打开这样的对话框:

 openDialog(){
    const resetModal : Modal = this.modal.create('DialogView', { arr: this.arr, callback: this.theCallback.bind(this) });
    resetModal.present();
  }

它说DialogView是无效的链接,尽管我已经正确地(貌似)导入了它。怎么了?

以下是堆叠闪电战的链接:

https://stackblitz.com/edit/ionic-kdzcwt?file=pages/home/home.ts

1 个答案:

答案 0 :(得分:1)

您应从'DialogView'DialogView删除单引号。单引号仅用于具有自己模块的延迟加载的页面