使用Array的sort方法对JSON数组针对某一个值进行排序:
var obj = [{a:1},{a:2},{a:3},{a:5},{a:4}]
obj.sort(function (a,b) {
return a.a - b.a
})
console.log(obj) // [{a:1},{a:2},{a:3},{a:4},{a:5}]
简单容易。
使用Array的sort方法对JSON数组针对某一个值进行排序:
var obj = [{a:1},{a:2},{a:3},{a:5},{a:4}]
obj.sort(function (a,b) {
return a.a - b.a
})
console.log(obj) // [{a:1},{a:2},{a:3},{a:4},{a:5}]
简单容易。
本文标题:JavaScript中使用sort对JSON数组排序
本文链接:https://www.haomeiwen.com/subject/wnnalctx.html
网友评论