|<- [[Displaying data in our templates]]|[[Using properties]] ->| Angular à une notation spéciale d'attributs pour gérer les événements, les parenthèses : ()="()" //template

{{objet_actuel}}

  • {{item.nom}}

export class AppComponent { objet_actuel: string; objets: any; constructor() { this.objets = [ { nom: 'table' }, { nom: 'chaise' }, { nom: 'télé' }, ], this.ma_methode(e) { this.objet_actuel = e.target.innerHTML; } } } === variante === //template

{{objet_actuel}}

  • {{item.nom}}

export class AppComponent { objet_actuel: string; objets: any; constructor() { this.objets = [ { nom: 'table' }, { nom: 'chaise' }, { nom: 'télé' }, ], this.ma_methode(item) { this.objet_actuel = item.nom; } } } === ajout d'un input ===