gpt4 book ai didi

javascript - 错误 错误 : Uncaught (in promise): invalid link: SosPopPage

转载 作者:行者123 更新时间:2023-12-03 02:21:20 26 4
gpt4 key购买 nike

我正在编写一个 SOS 页面,当我单击按钮时,我希望它显示这样的弹出页面。然后用户可以选择电话号码。

enter image description here

sos.html 页面

<button ion-button color="light" (click)="openSosPop()">Call</button>

sos.ts 页面

openSosPop() {
this.openModal('SosPopPage');
// let contactModal = this.modalCtrl.create(SosPopPage);
// contactModal.present();
}

openModal(pageName) {
this.modalCtrl.create(pageName, null, { cssClass: 'inset-modal' })
.present();
}

sos.css 页面

ion-modal.inset-modal {
// transparent black background overlay
background-color: rgba(0, 0, 0, .5) !important;
transition: opacity .25s ease-in-out;
padding: 20vh 10vw;
}

最佳答案

I am not using lazy loading

如果您不使用延迟加载,则它不是 IonicPage 。添加 IonicPage 装饰器允许您使用字符串名称来处理页面。

This will automatically create a link to the MyPage component using the same name as the class, name: 'MyPage'. The page can now be navigated to by using this name.

由于您不是延迟加载,因此您无法使用字符串来导航或创建模式和弹出窗口。您必须使用实际的页面/组件。

导入页面。

import <path_to_page>;

this.openModal(SosPopPage);//create the modal.

关于javascript - 错误 错误 : Uncaught (in promise): invalid link: SosPopPage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49145729/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com