방금 Angular 2 rc4에서 rc6으로 업그레이드하여 문제가 발생했습니다.
콘솔에 다음 오류가 표시됩니다.
Unhandled Promise rejection: Template parse errors:
'cl-header' is not a known element:
1. If 'cl-header' is an Angular component, then verify that it is part of this module.
2. If 'cl-header' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@NgModule.schema' of this component to suppress this message. ("<main>
[ERROR ->]<cl-header>Loading Header...</cl-header>
<div class="container-fluid">
<cl-feedbackcontai"): AppComponent@1:4
내 헤더 구성 요소는 다음과 같습니다.
import { Component } from '@angular/core';
import { Router } from '@angular/router';
// own service
import { AuthenticationService } from '../../../services/authentication/authentication.service.ts';
import '../../../../../public/css/styles.css';
@Component({
selector: 'cl-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.css']
})
export class HeaderComponent { // more code here... }
여기 내 헤더 모듈이 있습니다 :
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { RouterModule } from '@angular/router';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { HeaderComponent } from './../../../components/util_components/header/header.component.ts';
@NgModule({
declarations: [ HeaderComponent ],
bootstrap: [ HeaderComponent ],
imports: [ RouterModule, CommonModule, FormsModule ],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class HeaderModule { }
HeaderModule을 가져 오는 util 모듈이라는 래퍼 모듈을 만들었습니다.
import { NgModule } from '@angular/core';
import {HeaderModule} from "./header/header.module";
// ...
@NgModule({
declarations: [ ],
bootstrap: [ ],
imports: [ HeaderModule]
})
export class UtilModule { }
마지막으로 AppModule에서 가져옵니다.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import {UtilModule} from "./modules/util_modules/util.module";
import {RoutingModule} from "./modules/routing_modules/routing.module";
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, UtilModule, RoutingModule]
})
export class AppModule { }
내 이해를 위해 SCHEMA를 사용하여 오류 메시지의 지시를 따라 오류를 억제하고 있습니다. 그러나 작동하지 않는 것 같습니다. 내가 뭘 잘못하고 있죠? (저는 지금 보지 못하는 것이 분명하지 않기를 바랍니다. 지난 6 시간 동안이 버전으로 업그레이드했습니다 …)
답변
이것에 조금 더 추가하고 싶었습니다.
새로운 앵귤러 2.0.0 최종 릴리스 (2016 년 9 월 14 일)에서 사용자 정의 html 태그를 사용하는 경우이를보고합니다 Template parse errors
. 맞춤 태그는 이러한 태그 중 하나가 아닌 HTML에서 사용 하는 태그 입니다.
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
사용자 정의 HTML 태그를 사용하는 각 구성 요소에 행 을 추가해야합니다.
편집 :schemas
선언은에 있어야 @NgModule
장식. 아래 예제 CustomComponent
는 하나의 컴포넌트에 대한 html 템플리트의 html 태그를 허용 하는 사용자 정의 컴포넌트가있는 사용자 정의 모듈을 보여줍니다 .
custom.module.ts
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { CustomComponent } from './custom.component';
@NgModule({
declarations: [ CustomComponent ],
exports: [ CustomComponent ],
imports: [ CommonModule ],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
export class CustomModule {}
custom.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-custom-component',
templateUrl: 'custom.component.html'
})
export class CustomComponent implements OnInit {
constructor () {}
ngOnInit () {}
}
custom.component.html
여기에서 원하는 HTML 태그를 사용할 수 있습니다.
<div class="container">
<boogey-man></boogey-man>
<my-minion class="one-eyed">
<job class="plumber"></job>
</my-minion>
</div>
답변
이것은 다음에 의해 수정됩니다.
a) schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
모든 구성 요소에 추가 또는
b) 추가
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
과
schemas: [
CUSTOM_ELEMENTS_SCHEMA
],
모듈에.
답변
사용자 지정 요소를 사용하여 구성 요소를 테스트하는 경우 단위 테스트를 실행할 때 발생할 수도 있습니다. 이 경우 해당 구성 요소의 .spec.ts 파일 시작 부분에서 설정을 가져 오는 testingModule에 custom_elements_schema를 추가해야합니다. header.component.spec.ts 설정이 시작되는 방법의 예는 다음과 같습니다.
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
describe('HeaderComponent', () => {
let component: HeaderComponent;
let fixture: ComponentFixture<HeaderComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [PrizeAddComponent],
schemas: [
CUSTOM_ELEMENTS_SCHEMA
],
})
.compileComponents();
}));
답변
@NgModule({})
‘app.module.ts’에 다음을 추가하십시오 .
import {CUSTOM_ELEMENTS_SCHEMA} from `@angular/core`;
그리고
schemas: [
CUSTOM_ELEMENTS_SCHEMA
]
‘app.module.ts’는 다음과 같아야합니다.
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
@NgModule({
declarations: [],
imports: [],
schemas: [ CUSTOM_ELEMENTS_SCHEMA],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
답변
그것은 나에게도 효과가 없었다. 나는 바꿨다
CUSTOM_ELEMENTS_SCHEMA
…에 대한
NO_ERRORS_SCHEMA
이 기사에서 제안 된 것은
https://scotch.io/tutorials/angular-2-transclusion-using-ng-content
이제 작동합니다.
답변
util.component.ts
@Component({
selector: 'app-logout',
template: `<button class="btn btn-primary"(click)="logout()">Logout</button>`
})
export class LogoutComponent{}
util.module.ts
@NgModule({
imports: [...],
exports: [
LogoutComponent
],
declarations: [LogoutComponent]
})
export class AccountModule{};
LogoutComponent를 내 보내야합니다
‘util.module’에서 import {AccountModule} 을 사용하려는 모듈에서 dashboard.module.ts
가져 오기AccountModule
<app-logout>
;
@NgModule({
imports: [
CommonModule, AccountModule
],
declarations: [DashboardComponent]
})
export class DashboardModule { }
dashboard.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-dashboard',
template: `<div><app-logout></app-logout></div>`
})
export class DashboardComponent implements OnInit {
constructor() {}
ngOnInit() {}
}
가져 와서 사용할 필요는 없습니다 CUSTOM_ELEMENTS_SCHEMA
.
그러나 dashboard.module이 느리게로드되면 작동하지 않습니다. 지연 로딩의 경우에
사용하면 CUSTOM_ELEMENTS_SCHEMA
오류가 억제되지만 구성 요소는 dom에 추가되지 않습니다.
답변
Angular Material을 포함하는 구성 요소에서도 비슷한 단위 오류가 발생했습니다. 위의 @ Dan Stirling-Talbert의 답변에 따라이를 내 구성 요소 .spec 파일에 추가하고 오류가 단위 테스트에서 지워졌습니다.
Import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
그런 다음 생성 된 beforeEach () 문에 스키마를 추가하십시오.
beforeEach(asyn(() => {
declarations: [ AboutComponent ],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
})
.compileComponents();
}));
내 카르마 오류는 ‘mat-panel-title’이 웹 구성 요소 인 경우이 메시지를 표시하지 않으려면이 구성 요소의 ‘@ NgModule.schemas’에 ‘CUSTOM_ELEMENTS_SCHEMA’를 추가하십시오.