weixin_33671935 2014-06-09 15:40 采纳率: 0%
浏览 35

按值排序json对象

I have a json object like below, how do I sort it using date?

json = {"date_hash":{"second_bleed":"2014-09-08","sixth_boost":"2014-10-28","first_boost":"2014-06-24","first_bleed":"2014-08-08","fifth_boost":"2014-09-30","fourth_bleed":"2014-11-03","second_boost":"2014-07-15","fourth_boost":"2014-09-02","third_bleed":"2014-10-06","primary_injection":"2014-06-02","third_boost":"2014-08-05"}}

I tried doing

json['date_hash'].sort(function(a, b){

});

Sort is not a function for json?

  • 写回答

1条回答 默认 最新

  • weixin_33704591 2014-06-09 15:51
    关注

    The date_hash object is a JSON object which doesn't have an order (not sortable).

    You should try to use an array:

    {"date_hash": [
        {"name": "second_bleed", "date": "2014-09-08"},
       ....
       {"name": "sixth_boost", "date": "2014-09-28"}
    ]}
    

    and then you something similar to the function you're using to sort.

    function (a, b) {
        if (a.date < b.date) {
            return -1;
        } else if (a.date > b.date) {
            return 1;
        };
        return 0;
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿
  • ¥100 关于使用MATLAB中copularnd函数的问题