gpt4 book ai didi

angular - 页面有一个@IonicPage 装饰器,但它没有对应的 "NgModule"

转载 作者:太空狗 更新时间:2023-10-29 16:53:13 26 4
gpt4 key购买 nike

我正在使用 Ionic 进行页面导航。使用 ionic serve 后,我得到了这个错误:

扩展名为 .ts 的页面有一个 @IonicPage 装饰器,但它没有相应的“NgModule”

任何人都可以解释为什么我会收到此错误。

最佳答案

这是因为 @IonicPage() 装饰器用于深度链接,这会将页面注册到 ionic 的深度链接系统

如果您不想在该页面上进行深层链接,您可以删除装饰器。

或者您可以使用以下代码在您的 YOURPAGE.module.ts 中注册该页面:

@NgModule({
declarations: [
MyPage
],
imports: [
IonicPageModule.forChild(MyPage)
],
entryComponents: [
MyPage
]
})

您可以在 docs 中找到更多信息

关于angular - 页面有一个@IonicPage 装饰器,但它没有对应的 "NgModule",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43428528/

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