サーチ…


入力()

親コンポーネント:ユーザーリストを初期化します。

@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