シンプルなコンポーネントを作成し、それをページに含める必要がありました。 ionic g component my-header
(ionic-cli v3 beta)で作成し、IonicPageModuleのバグを修正して、別のページに追加しました。ionic v3のカスタムコンポーネント
Error: Uncaught (in promise): Error: Template parse errors:
'my-header' is not a known element:
1. If 'my-header' is an Angular component, then verify that it is part of this module.
2. If 'my-header' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
"MyHeaderComponent"が自動的に@NgModule宣言に追加されました。
ありがとうございました。
EDIT:
成分が私のcomponents
フォルダ内に配置されている:
コンポーネント/私のヘッダ/ MY-header.html
<div>
{{text}}
</div>
コンポーネント/私のヘッダ/私のヘッダ.module.ts
import { NgModule } from '@angular/core';
import { IonicModule } from 'ionic-angular';
import { MyHeaderComponent } from './my-header';
@NgModule({
declarations: [
MyHeaderComponent,
],
imports: [
IonicModule,
],
exports: [
MyHeaderComponent
],
entryComponents:[
MyHeaderComponent
]
})
export class MyHeaderComponentModule {}
コンポーネント/ my-header/my-header.scss
my-header {}
コンポーネント/私のヘッダ/私の-header.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-header',
templateUrl: 'my-header.html'
})
export class MyHeaderComponent {
text: string;
constructor() {
console.log('Hello MyHeaderComponent Component');
this.text = 'Hello World';
}
}
アプリ/
/* imports */
import { MyHeaderComponent } from '../components/my-header/my-header';
@NgModule({
declarations: [
MyApp,
MyHeaderComponent
],
...
ページ/ホーム/ home.html
をapp.module.ts
コンポーネント用に個別のmodule.tsファイルがありますか? –
はい、コンポーネントに関連するコード全体を追加しました –