구성 요소 템플릿에 정의 된 요소를 얻는 방법을 아는 사람이 있습니까? 폴리머는 $and로 정말 쉬워집니다 $$. Angular에서 어떻게 진행해야하는지 궁금했습니다. 튜토리얼에서 예제를 보자. import {Component} from '@angular/core'; @Component({ selector:'display', template:` <input #myname (input)="updateName(myname.value)"/> <p>My name : {{myName}}</p> ` }) export class DisplayComponent { myName: string = "Aman"; updateName(input: String) { …
부모 구성 요소가 있습니다. <parent></parent> 그리고이 그룹에 자식 구성 요소를 채우고 싶습니다. <parent> <child></child> <child></child> <child></child> </parent> 부모 템플릿 : <div class="parent"> <!-- Children goes here --> <ng-content></ng-content> </div> 자식 템플릿 : <div class="child">Test</div> 이후 parent및 child두 개의 별도 구성 요소, 자신의 스타일이 자신의 범위에 잠겨 있습니다. 부모 구성 요소에서 …
다른 모듈의 AppModule 내부에서 만든 구성 요소를 사용하려고합니다. 그래도 다음과 같은 오류가 발생합니다. "미 발견 (약속) : 오류 : 템플릿 구문 분석 오류 : 'contacts-box'는 알려진 요소가 아닙니다. 'contacts-box'가 각도 컴포넌트 인 경우이 모듈의 일부인지 확인하십시오. 'contacts-box'가 웹 구성 요소 인 경우이 메시지를 표시하지 않으려면이 구성 요소의 '@ NgModule.schemas'에 'CUSTOM_ELEMENTS_SCHEMA'를 …
호출하려는 메서드가있는 자식 구성 요소를 만들었습니다. 이 메서드를 호출하면 console.log()줄만 실행 하고 test속성을 설정하지 않습니까 ?? 아래는 변경 사항이 적용된 빠른 시작 Angular 앱입니다. 부모의 import { Component } from '@angular/core'; import { NotifyComponent } from './notify.component'; @Component({ selector: 'my-app', template: ` <button (click)="submit()">Call Child Component Method</button> ` }) export …
ng-contentAngular 6에서 다중 을 사용하여 사용자 지정 구성 요소를 만들려고하는데 이것이 작동하지 않으며 이유를 모르겠습니다. 이것은 내 구성 요소 코드입니다. <div class="header-css-class"> <ng-content select="#header"></ng-content> </div> <div class="body-css-class"> <ng-content select="#body"></ng-content> </div> 이 구성 요소를 다른 장소에서 사용하고 다음과 같이 두 개의 다른 HTML 코드를 내부 body및 헤더 select에 렌더링하려고합니다 ng-content. <div …