1
I have a code and I wanted to know how to change the ngModel
button-bound.
Ex:
<input [(ngModel)]="Pessoa1.nome">
<input [(ngModel)]="Pessoa1.idade">
<button (click)="onChange1()">Pessoa1</button>
<button (click)="onChange2()">Pessoa2</button>
Ts:
Pessoa1 = {
nome:'Guilherme',
idade:'11'}
Pessoa2 = {
nome: 'Gabriel',
idade: '25'}
I tried this way but I can’t switch between those 2:
onChange1(){
this.Pessoa2.nome = this.Pessoa1.nome
this.Pessoa2.idade = this.Pessoa1.idade
}
onChange2(){
this.Pessoa1.nome = this.Pessoa2.nome
this.Pessoa1.idade = this.Pessoa2.idade
}
Just an Obs, in which case it would be persons[index]. name.
– LeAndrade