我们有搜索功能,搜索条件和下表包含搜索结果。我想添加"没有找到记录"当没有记录时搜索功能部分,我添加了ngIf条件。但该表也具有分页功能。我们已经实现了服务器端分页。所以我们有大约1000条记录,每页有10条记录。它需要时间来加载数据和它的显示"没有找到记录"部分几秒,然后加载数据。我该如何解决这个问题?我也尝试过使用ngTemplate,但我面临同样的问题。
<div *ngIf="resultArray!==null && resultArray!==undefined && resultArray.length>0; else displayNoRecordFoundBlock">
<table>
</table>
</div>
<ng-template #displayNoRecordFoundBlock>
<div class="no-result-found" >
No records found
</div>
</ng-template>
这是我用过的代码。