angular项目报错 ‘router-outlet’ is not a konwn element
解决方案
- 在app.component.spec.ts中
import { RouterTestingModule } from '@angular/router/testing';
describe('AppComponent', () => {beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
RouterTestingModule//引入
],
declarations: [
AppComponent
],
}).compileComponents();
}));
- 在app.module.ts中
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule } from '@angular/router';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
RouterModule
],
providers: [],
bootstrap: [AppComponent]
})
【angular项目报错 ‘router-outlet’ is not a konwn element】就可以了,可以试试,我的是这样解决的
推荐阅读
- angular2内置管道
- 17|17 关山松 第二课作业#公众号项目# D20
- RxJava|RxJava 在Android项目中的使用(一)
- Hacking|Hacking with iOS: SwiftUI Edition - SnowSeeker 项目(一)
- 靠QQ月入上万灰色暴利偏门的项目
- spring|spring boot项目启动websocket
- 接口|axios接口报错-参数类型错误解决
- vuex|vuex 基础结构
- 区块链开发平台(以太坊)
- 如何在手机上查看测试vue-cli构建的项目