«angular-module» 태그된 질문


7
다른 모듈의 컴포넌트 사용
angular-cli로 생성 된 Angular 2.0.0 앱이 있습니다. 구성 요소를 작성하고 추가 할 때 AppModule 선언 배열에 모두 작동합니다. 구성 요소를 분리하기로 결정 했으므로 TaskModule및 구성 요소를 만들었습니다 TaskCard. 이제 TaskCard구성 요소 중 하나 AppModule에서Board 구성 요소) 구성 . 앱 모듈 : import { BrowserModule } from '@angular/platform-browser'; import { NgModule …

13
각도 2 '구성 요소'는 알려진 요소가 아닙니다.
다른 모듈의 AppModule 내부에서 만든 구성 요소를 사용하려고합니다. 그래도 다음과 같은 오류가 발생합니다. "미 발견 (약속) : 오류 : 템플릿 구문 분석 오류 : 'contacts-box'는 알려진 요소가 아닙니다. 'contacts-box'가 각도 컴포넌트 인 경우이 모듈의 일부인지 확인하십시오. 'contacts-box'가 웹 구성 요소 인 경우이 메시지를 표시하지 않으려면이 구성 요소의 '@ NgModule.schemas'에 'CUSTOM_ELEMENTS_SCHEMA'를 …

6
각도 ngModule의 entryComponents 란 무엇입니까?
에 의존 하는 Ionic앱 ( 2.0.0-rc0) 작업 중입니다 angular 2. 그래서 새로운 소개 ngModules가 포함되었습니다. app.module.ts.아래에 추가하고 있습니다. import { NgModule } from '@angular/core'; import { IonicApp, IonicModule } from 'ionic-angular'; import { MyApp } from './app.component'; import { Users } from '../pages/users/users'; @NgModule({ declarations: [ MyApp, Users ], imports: …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.