* ngFor仅以角度4显示1000条记录

时间:2018-10-29 10:18:47

标签: angular ngfor

我正在使用ngFor在视图中显示数据,但它仅显示1000条记录,即使从.ts文件中,我也从Api获取了1000条记录,我使用了控制台,但正在获取正确的数据,但是仅在网格中,我就获得1000条记录。

<tr *ngFor="let item  of mf.data | orderBy: {property: column, direction: direction } ; let ndx = index" class="InnerFormCenterLabel">

                                    <td>{{item.ROWNUM}}</td>
                                    <td><a style="color: blue;text-decoration: underline;cursor:pointer" (click)="openReportDeal(item)">{{item.CONT_SUB_MATTER }}</a></td>
                                    <td>{{item.BuNo.}}</td>
                                    <td>{{item.Contract}}</td>


                                </tr>

1 个答案:

答案 0 :(得分:0)

 <table class="table tableheight table-responsive  table-striped table-bordered" [mfData]="data" #mf="mfDataTable" [mfRowsOnPage]="10000">

[mfRowsOnPage]的默认值为1000。在明确提到变量[mfRowsOnPage]并分配了一些必需的值之后,它可以正常工作。