我有一个这样的对象数组
var arr = [{
"id": "1",
"Title": "Object1",
"SectionId": "1.2.1"
}, {
"id": "2",
"Title": "Object2",
"SectionId": "1.1.2"
}, {
"id": "3",
"Title": "Object3",
"SectionId": "1.0.1"
}, {
"id": "4",
"Title": "Object4",
"SectionId": "1"
}];
sectionId
有数字分隔的点。我如何根据sectionId
属性以递增或递减顺序排序数组?
3条答案
按热度按时间2fjabf4q1#
灵感来自Map排序
whitzsjs2#
ef1yzkbh3#