【发布时间】:2023-03-27 14:19:01
【问题描述】:
我想根据文本和数字对列进行排序。
我的值是这样排序的:
- List:010
- List:100
- List:134
- List:2
- List:204
但我需要的是
- List:2
- List:010
- List:100
- List:134
- List:204
我使用的列类型是字符串。我尝试使用 sortType 但那不起作用。
{
name: 'listItems',
type: 'string',
mapping: 'listItems'
}
【问题讨论】: