タグ付けされた質問 「angular-webpack-starter」

23
Angular 4:コンポーネントファクトリが見つかりません。@ NgModule.entryComponentsに追加しましたか?
Angular 4テンプレートをwebpackで使用していますが、コンポーネント(ConfirmComponent)を使用しようとするとこのエラーが発生します。 ConfirmComponentのコンポーネントファクトリが見つかりません。@ NgModule.entryComponentsに追加しましたか? コンポーネントはで宣言されています app.module.server.ts @NgModule({ bootstrap: [ AppComponent ], imports: [ // ... ], entryComponents: [ ConfirmComponent, ], }) export class AppModule { } 私も持っている app.module.browser.tsし、app.module.shared.ts どうすれば修正できますか?
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.