Я хочу показать полученные данные в ngx-datatable, но, к сожалению, это не работает. Отображается только «Нет данных для отображения».
У вас есть решение для моей проблемы?
. html
<ngx-datatable *ngFor="let item of information"
[ngClass]="tableStyle"
[rowHeight]="'auto'"
[headerHeight]="50"
[columnMode]="'force'">
<ngx-datatable-column name="Datum">
<ng-template let-row="row" ngx-datatable-cell-template>
{{item.vn}}
</ng-template>
</ngx-datatable-column>
.ts
async ngOnInit() {
this.router.navigateByUrl('besitzer');
this.userService.getReservation(await this.storage.get('token')).subscribe(result => {
console.log('he: ', result);
this.information = result;
});
Я получаю данные из бэкэнда