web-dev-qa-db-fra.com

comment trier un tableau par ordre alphabétique avec antd

Je veux filtrer la colonne par ordre alphabétique voici le code à filtrer par la taille comment faire merci

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

Vous pouvez utiliser localeCompare()

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