I'm doing an Http request in Angular 4, but I need to listen to it and show it in the template in real time, that is to say the extent to which it is being registered, the information will appear on the grid automatically.
ngOnInit() {
this.userService.lista()
.subscribe(data => { this.usuarios = data });
}
Is this the return of the request in the component can help me?