Ant-design table 通过预先确定的数据处理自定义排序器
我的 ant-design 表有一列有一个这样的表:
{
title: 'State',
dataIndex: 'state',
key: 'state',
sorter: (a, b) => a.state.localeCompare(b.state),
},
目前,我的客户不想按字母字符串对状态进行排序,他们希望通过预先确定的字符串来定制结果
Failed
Rejected
Canceled
Expired
Completed
如何使用上述自定义数据实现排序器? 非常感谢
My ant-design table has column has a table like this:
{
title: 'State',
dataIndex: 'state',
key: 'state',
sorter: (a, b) => a.state.localeCompare(b.state),
},
Currently, my client don't want too sort state by alphabet string, they want to custome the result by the string pre-determined
Failed
Rejected
Canceled
Expired
Completed
How can I implement sorter with custom data as above?
Many thank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论