美文网首页
JavaScript中使用sort对JSON数组排序

JavaScript中使用sort对JSON数组排序

作者: ChasenGao | 来源:发表于2019-07-23 18:48 被阅读0次

    使用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