json结构更改的方法 把date有数据的分类

Posted 记录下自己走过前端的坑~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json结构更改的方法 把date有数据的分类相关的知识,希望对你有一定的参考价值。

  data=[
        {
            "content": "如何走进智障儿童的内心",
            "title": "如何走进智障儿童的内心",
            "second": 27,
            "name": "基础课程",
            "categoryId": 12,
            "courseId": 292,
            "noteId": 143,
            "type": 1,
            "date": "11-23",
            "specialId": 186
        },
        {
            "content": "孩子的安全感,不仅仅是精神需求上,而且是物质上。所以要努力给孩子做一个好榜样。",
            "title": "如何构建孩子的安全感",
            "second": 0,
            "name": "基础课程",
            "categoryId": 5,
            "courseId": 818,
            "noteId": 130,
            "type": 1,
            "date": "11-21",
            "specialId": 172
        },
        {
            "content": "引导儿童学会感恩父母,诚实为人,诚信做事。",
            "title": "【专题总览】引导儿童学会感恩父母、诚实为人、诚信做事",
            "second": 0,
            "name": "基础课程",
            "categoryId": 5,
            "courseId": 817,
            "noteId": 129,
            "type": 1,
            "specialId": 172
        }
    ]
    console.log(data.length);
    var team_date = [];
     var indexs = -1;
    data.forEach(function(i,x){
        console.log(i.date);
        if(i.date){
            var team = {
                aa: ‘‘,
                list: []
            }
            indexs++;
            team.date=i.date;
            team.list.push(i);
            team_date.push(team);
        }else{
            team_date[indexs].list.push(i);
        }
    })

  http://jsrun.net/CGiKp/edit 在线案例

以上是关于json结构更改的方法 把date有数据的分类的主要内容,如果未能解决你的问题,请参考以下文章

MongoTemplate存储Timestamp类型数据

爬虫基础

java中Date转换成JSON出错如何解决?

有没有把JSON的数据转换成OC数据模型的代码的工具

JS之Date类型

使用 Django 更改 API POST 请求的 JSON 数据结构