最佳答案
在 AppComponent 中,我在 HTML 代码中使用了 nav 组件。用户界面看起来不错。发球没有失误。当我查看应用程序时,控制台没有错误。
但当我为我的项目运行 Karma 时,出现了一个错误:
Failed: Template parse errors:
'app-nav' is not a known element:
1. If 'app-nav' is an Angular component, then verify that it is part of this module.
2. If 'app-nav' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
在我的 应用程序模块中:
有:
import { NavComponent } from './nav/nav.component';
它也在 NgModule 的声明部分中
@NgModule({
declarations: [
AppComponent,
CafeComponent,
ModalComponent,
NavComponent,
NewsFeedComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
JsonpModule,
ModalModule.forRoot(),
ModalModule,
NgbModule.forRoot(),
BootstrapModalModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
我在我的 AppComponent
中使用 NavComponent
应用程序组件
import { Component, ViewContainerRef } from '@angular/core';
import { Overlay } from 'angular2-modal';
import { Modal } from 'angular2-modal/plugins/bootstrap';
import { NavComponent } from './nav/nav.component';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'Angela';
}
App.Component. html
<app-nav></app-nav>
<div class="container-fluid">
</div>
我见过一个类似的问题,但是这个问题的答案是,我们应该在导航组件中添加 NgModule,这个组件中有一个导出,但是这样做的时候会出现编译错误。
还有: App.Component. spec.ts
import {NavComponent} from './nav/nav.component';
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';