数据为空时如何在 smart-table 中显示空文本

How to show empty text in smart-table when data is empty

我在我的应用程序中使用智能 table。 smart-table 配置静态 headers 和分页栏。数据通过异步请求加载。当接收到的数据为空时,smart-table 显示为 headers 和 pagination-bar。我想在两者之间显示 empty-text。我已经阅读了所有 documentation 但我没有找到任何允许设置空文本的配置。我该怎么做?

低于

<tr ng-repeat="row in rowCollection"></tr>

当数据为空时,将另一个 trng-ifng-show 指令放在一起。

<tr ng-if="rowCollection.length == 0">
   // your message here
</tr>