Custom Components IONIC 4(定制组件 IONIC 4)
问题描述
我有一个 ionic 应用程序并为 ion-navbar
创建了一个自定义组件,但是,我如何在我的所有页面中使用这个组件?如果我在所有页面上声明他,我会收到此错误
I have an ionic app and created a custom component for ion-navbar
but, how could I use this component in all of my pages? If I declare him on all the pages i get this error
如果你想要 https://github.com/tiagosilveiraa/PManager,这是我的 Githubp>
Here's my Github if u want https://github.com/tiagosilveiraa/PManager
推荐答案
您可以创建一个共享模块,并将该新共享模块作为导入到需要标头的页面模块:
You can create a shared module and include that new shared module as an import for the page modules that need the header:
shared.module.ts
shared.module.ts
import { NgModule } from '@angular/core';
import {CommonModule} from '@angular/common';
import {HeaderComponent} from './header/header.component';
import {IonicModule} from '@ionic/angular';
@NgModule({
imports: [
CommonModule,
IonicModule
],
declarations: [HeaderComponent],
exports: [HeaderComponent]
})
export class SharedModule {}
那么对于 home.module.ts
Then for the home.module.ts
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
SharedModule,
RouterModule.forChild(routes),
],
declarations: [HomePage]
})
export class HomePageModule {}
这篇关于定制组件 IONIC 4的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:定制组件 IONIC 4


- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01