Не видя какого-либо кода, мы мало что можем вам дать. 1007 *
objectArr = []
//update this array with from your subscribe of the http request
//something like this
update(): void {
this.{service}.httpRequest().subscribe((result: data[]) => {
this.objectArr = data; //bind the new data to the array you are using to create the table
});
}
html:
<-- your table element -->
<div *ngFor="let obj of objectArr">
это двухстороннее связывание, самое простое. Он обновит таблицу при обновлении массива objectArr
.