如何在 smart-table 中更改日期格式

How to change format of date in smart-table

我在我的 mean.js 应用程序中使用 Smart-Table,我需要更改日期值的格式。默认格式为 "MMM, dd yyyy",我想将其更改为 "dd-MM-yyyy"。有人可以帮帮我吗?

如 angular 文档中所述,您可以更改 angular date filter

的格式

所以你的标记看起来像

<td>{{myDateValue | date:'dd-MM-yyyy' }}</td>