Nativescript 5 + Angular:无法打开模式

时间:2018-11-10 14:19:31

标签: angular nativescript angular2-nativescript nativescript-angular

我没有更改项目,该项目在当前版本(4.XX)之前可以完美运行,但是在将tns cli和tns-core-modules和android运行时更新为最新版本(5.0 .0)之后,我我再也无法打开模态了,我得到这个错误:

  

JS:错误TypeError:无法设置未定义的属性“ showingModal”

im使用以下语句调用模式:

    const options: ModalDialogOptions = {
      viewContainerRef: this.vcRef,
      context: data,
      fullscreen: true
};
return this.modalService.showModal(SomeComponentName, options).then(
      data =>
        console.log(data),
      error => {
        console.log(error);
      }
);

PS 1:我从tabview项(如默认的出口组件here中使用出口组件)中调用此功能。

PS 2:我已经像往常一样导入并注入了所有内容(以前版本中的模式工作方式)。

PS 3:我目前正在使用Android 8(Samsung S7)发行此问题

PS 4:我已经填写了一份有关本机本机角度角度的官方报告的错误报告

0 个答案:

没有答案