aaa에서 template를 그릴때 input이 필요하다.
@input 으로 필요한 데이터들을 정의하고
bbb에서는 필요한 값들을 <aaa컴포넌트 [input이름]="값" > 형식으로 보내줄수있다.
aaa.component.ts
============================================================
@Component({
selector : 'aaa-component'
template:`
{{data1}} + {{hero}}
`
})
export class CompAAA{
@Input data1:string;
@Input('data2') hero : Hero
}
============================================================
bbb.component.ts
============================================================
@Component({
selector : 'app-component'
template:`
<input #inputData (click)="inputDataClick(inputData.value)">
<aaa-component *ngFor="let hero of HEROES "
[data1]="data1"
[data2]:"hero" >
</app-component>
`
<
})
export class CompAAA{
data1:string,
Herores:HEROES,
inputDataClick(data:string){
this.data1= data;
}
ngonInit(){}
}
============================================================
'Angular.js' 카테고리의 다른 글
Angular.js Attribute Directives (0) | 2020.07.08 |
---|---|
Input 태그 관련한 기술 (0) | 2020.07.08 |
Angular Routing (0) | 2020.07.07 |
Angular Service [2] // 커스텀서비스생성 @Injectable (0) | 2020.07.06 |
Angular Service [1] (0) | 2020.07.06 |