반응형
'AppModule' 모듈에서 선언한 예기치 않은 값 'AnyComponent'
Angular2를 사용하고 있는데 같은 Typescript 파일에서 두 개의 클래스를 사용하려고 할 때 이 문제가 발생했습니다.
컴파일 시 오류가 발생하지 않지만 페이지를 실행하려고 하면 console.log에서 다음 오류가 발생합니다.
Error: BaseException@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:5116:27
CompileMetadataResolver</CompileMetadataResolver.prototype.getNgModuleMetadata/<@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:13274:35
CompileMetadataResolver</CompileMetadataResolver.prototype.getNgModuleMetadata@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:13261:21
RuntimeCompiler</RuntimeCompiler.prototype._compileComponents@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:15845:28
RuntimeCompiler</RuntimeCompiler.prototype._compileModuleAndComponents@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:15769:36
RuntimeCompiler</RuntimeCompiler.prototype.compileModuleAsync@http://www.my.app/panel-module/node_modules/@angular/compiler//bundles/compiler.umd.js:15746:20
PlatformRef_</PlatformRef_.prototype._bootstrapModuleWithZone@http://www.my.app/panel-module/node_modules/@angular/core//bundles/core.umd.js:9991:20
PlatformRef_</PlatformRef_.prototype.bootstrapModule@http://www.my.app/panel-module/node_modules/@angular/core//bundles/core.umd.js:9984:20
@http://www.my.app/panel-module/app/main.js:4:1
@http://www.my.app/panel-module/app/main.js:1:31
@http://www.my.app/panel-module/app/main.js:1:2
Zone</ZoneDelegate</ZoneDelegate.prototype.invoke@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:332:20
Zone</Zone</Zone.prototype.run@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:225:25
scheduleResolveOrReject/<@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:586:53
Zone</ZoneDelegate</ZoneDelegate.prototype.invokeTask@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:365:24
Zone</Zone</Zone.prototype.runTask@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:265:29
drainMicroTaskQueue@http://www.my.app/panel-module/node_modules/zone.js/dist/zone.js:491:26
F/</g@http://www.my.app/panel-module/node_modules/core-js/client/shim.min.js:8:10016
F/<@http://www.my.app/panel-module/node_modules/core-js/client/shim.min.js:8:10138
a.exports/k@http://www.my.app/panel-module/node_modules/core-js/client/shim.min.js:8:14293
Evaluating http://www.my.app/panel-module/app/main.js
Error loading http://www.my.app/panel-module/app/main.js
아래는 제 구성요소 유형 스크립트 파일입니다.
내 구성요소.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: '/path/to/view',
})
export class MyObject {
id: number;
}
export class MyComponent {
obj: MyObject;
// unecessary code
}
당신은 수업 순서를 변경해야 하고, 그러면 같은 파일에 여러 개의 수업이 있는 것은 문제가 없습니다.당신의 경우에는decorator @Component
지금 당신의 수업에 사용되고 있습니다.MyObject
대신에MyComponent
!
그decorator @Component
구성요소 정의 바로 앞에 있어야 합니다!!
import { Component, OnInit } from '@angular/core';
export class MyObject1 {
id: number;
}
@Component({
selector: 'my-app',
templateUrl: '/path/to/view',
})
export class MyComponent {
obj: MyObject;
// unecessary code
}
export class MyObject2 {
id: number;
}
수정 방법은 다음과 같습니다.
MyObject를 별도의 파일에 넣고 가져옵니다.
MyObject.
export class MyObject {
id: number;
}
내 구성요소.ts
import { Component, OnInit } from '@angular/core';
import { MyObject } from 'path/to/MyObject';
@Component({
selector: 'my-app',
templateUrl: '/path/to/view',
})
export class MyComponent {
obj: MyObject;
// unecessary code
}
참고로, 제 경우에는 그것이 있을 수 없는 몇 가지 JS 논리가 있었습니다.
<my-tag [HTML]="sourcesHtml ? sourcesHtml[i] : ''">
로 변경된.
<my-tag [HTML]="sourcesHtml[i]">
오류가 제거되었습니다.
언급URL : https://stackoverflow.com/questions/39001294/unexpected-value-anycomponent-declared-by-the-module-appmodule
반응형
'programing' 카테고리의 다른 글
Oracle용 파일 또는 어셈블리를 로드할 수 없습니다..NET의 데이터 액세스 (0) | 2023.06.27 |
---|---|
홈브루로 이미지 매직을 설치하려면 어떻게 해야 합니까? (0) | 2023.06.22 |
mongoimport를 사용하여 1개 이상의 json 파일 가져오기 (0) | 2023.06.22 |
AWS boto와 boto3의 차이점은 무엇입니까? (0) | 2023.06.22 |
R 함수에서 선택적 인수를 지정하는 "올바른" 방법 (0) | 2023.06.22 |