Ant-design table 通过预先确定的数据处理自定义排序器

发布于 2025-01-11 15:35:21 字数 346 浏览 0 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文