Renan Martins
Renan Martins
Same issue here. I'm using Angular 8.
` ` `export class DistribuidorRegiaoComponent implements OnInit { regioes: any[] = []; regioesSelecionadas: any[] = []; ngOnInit() { this.regiaoService.query().subscribe(res => { this.regioes = res.body; }); } ` It loads just...
> @renanvm - in your example, what is an example of res.body? `(2) [{…}, {…}] 0: {id: 1051, nome: "Norte", distribuidor: null} 1: {id: 1052, nome: "Sul", distribuidor: null} length:...
Thanks @czeckd . Now everything is working. Really was a misconfiguration.