我遇到了一个问题,尽管没有堆栈错误或其他问题,我的ngFor不显示任何数据。
我想知道如何显示我的对象数组(称为“ cldbAccounts”),该对象数组必须具有对象并在同一列中显示它们的两个属性。
我的那部分代码
<ngx-datatable-column *ngIf="mode === 'contract' || mode === 'factorer'" name="CldbAccount" prob="cldbAccount">
<ng-template let-column="column" height="200" let-onSort="sortFn" ngx-datatable-header-template>
<span class="datatable-header-cell-wrapper">
<span class="datatable-header-cell-label draggable" (click)="onSort()">CldbAccount</span>
</span>
</ng-template>
<ng-template ngFor let-cldbAccount [ngForOf]="cldbAccounts">
{{ cldbAccount.cldbAccount.cldbAccount }} [{{ cldbAccount.debitor.name }}]
</ng-template>
</ngx-datatable-column>
我也尝试过此答案see here 的解决方案,但存在相同的问题
答案 0 :(得分:0)
我发现问题只是我的代码中的错字,prob="cldbAccount"
应该是prop="cldbAccount"