Angular 2 Karma Test 'component-name' 不是一个已知的元素
2022-08-30 02:42:42
在 AppComponent 中,我在 HTML 代码中使用导航组件。用户界面看起来很好。做ng发球时没有错误。当我查看应用程序时,控制台中没有错误。
但是当我为我的项目运行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.
在我的 app.module.ts 中:
有:
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]
})
我正在使用NavComponent
AppComponent
app.component.ts
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';
}
应用程序组件.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';