当前,我正在使用ng-table-dynamic
表,并且我的几列都是日期(dd / MM / YYYY)格式的。当我尝试对这些列进行排序时,它是根据文本格式而不是日期进行排序的。
例如:-如果我们有数据14/07/2018,30/05/2018,29/06/2018
,则降序排序结果是30/05/2018,29/06/2018,14/07/2018
而不是14/07/2018,29/06/2018,30/05/2018
<table ng-table-dynamic="demo.tableParams with demo.cols" show-filter="true" class="table table-bordered table-striped">
<tr ng-repeat="row in $data">
<td ng-repeat="col in $columns">{{::row[col.field]}}</td>
</tr>
</table>
那么在ng-table-dynamic
中基于日期格式应用排序的正确方法是什么?