web-dev-qa-db-ja.com

antdを使用してテーブルをアルファベット順にソートする方法

列をアルファベット順にフィルタリングしたいここにサイズでフィルタリングするコードがあります

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,

    }]
9
OAH

localeCompare()を使用できます

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