转载自 :静沐静好 关于ng-alain的st、sf一些小功能的总结
因为想实现 中文字段排序,查询了好多方法不管用,终于发现了静沐静好 的这篇文章,特写此篇感谢:
ng-alain 排序功能:
{ title: '时间', index: 'time', type: 'date',
sort: {
compare: (a, b) => (a.time < b.time? -1 : a.time > b.time ? 1 : 0),
},
},
这篇文章还有其他的功能,如有其他需求请转到原文。