수색…


입력()

상위 구성 요소 : 사용자 목록을 초기화합니다.

@Component({
  selector: 'parent-component',
  template: '<div>
                <child-component [users]="users"></child-component>
             </div>'
})
export class ParentComponent implements OnInit{
  let users : List<User> = null;
  
  ngOnInit() {
    users.push(new User('A', 'A', '[email protected]');
    users.push(new User('B', 'B', '[email protected]'); 
    users.push(new User('C', 'C', '[email protected]');  
  }      
}

하위 구성 요소는 Input ()으로 부모 구성 요소에서 사용자를 가져옵니다.


@Component({
selector: 'child-component',
  template: '<div>
                  <table *ngIf="users !== null">
                    <thead>
                         <th>Name</th>
                         <th>FName</th>
                         <th>Email</th>   
                    </thead>
                    <tbody>
                        <tr *ngFor="let user of users">
                            <td>{{user.name}}</td>
                            <td>{{user.fname}}</td>
                            <td>{{user.email}}</td>
                        </tr>
                    </tbody>
                  </table>
                
             </div>',
})
export class ChildComponent {
  @Input() users : List<User> = null;
}


export class User {
  name : string;
  fname : string;
  email : string;

  constructor(_name : string, _fname : string, _email : string){
     this.name = _name;
     this.fname = _fname;
     this.email = _email;
  }
}

입력 속성의 간단한 예

부모 요소 html

<child-component [isSelected]="inputPropValue"></child-component>

부모 요소 TS

export class AppComponent {
     inputPropValue: true
}

하위 구성 요소 ts :

export class ChildComponent {
    @Input() inputPropValue = false;
}

하위 구성 요소 html :

<div [class.simpleCssClass]="inputPropValue"></div>

이 코드는 부모 컴포넌트의 inputPropValue를 자식 객체로 보내며, 도착했을 때 부모 컴포넌트에 설정된 값을 갖습니다.이 경우에는 false입니다. 그런 다음 하위 구성 요소의 해당 값을 사용하여 요소에 클래스를 추가 할 수 있습니다.



Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow