Angular 2
Angular2 Input () output ()
Ricerca…
Ingresso()
Componente principale: inizializza gli elenchi degli utenti.
@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]');
}
}
Componente figlio ottiene l'utente dal componente principale con 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;
}
}
Semplice esempio di proprietà di input
Elemento genitore html
<child-component [isSelected]="inputPropValue"></child-component>
Elemento genitore ts
export class AppComponent {
inputPropValue: true
}
Componente figlio ts:
export class ChildComponent {
@Input() inputPropValue = false;
}
Html componente figlio:
<div [class.simpleCssClass]="inputPropValue"></div>
Questo codice invierà l'inputPropValue dal componente padre al figlio e avrà il valore che abbiamo impostato nel componente genitore quando arriva lì - falso nel nostro caso. Possiamo quindi utilizzare quel valore nel componente figlio per, ad esempio, aggiungere una classe a un elemento.
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow