如何使用 antd 按字母顺序对表格进行排序

IT技术 javascript reactjs antd
2021-05-13 16:58:05

我想按字母顺序过滤列这里是按大小过滤的代码怎么做谢谢

const columns = [{
      title: 'First Name',
      dataIndex: 'first_name',
      sortDirections: ['descend', 'ascend'],
      key: 'first_name',
      width: '20%',
      sorter: (a, b) => a.first_name.length - b.first_name.length,

    }]
1个回答

您可以使用 localeCompare()

sorter: (a, b) => a.first_name.localeCompare(b.first_name);