[
{id: 1, matter: "xxx", current: "2018-10-31 09:30:00", photo: ["xxx", "xxx"]},
{id: 2, matter: "xxx", current: "2018-10-31 11:30:00", photo: ["xxx", "xxx"]},
{id: 3, matter: "xxx", current: "2018-10-30 08:47:00", photo: ["xxx", "xxx"]}
]
< H2 > processed data < / H2 >
the outer array is sorted by date, the later the more advanced, and the inner array is sorted by time, the earlier the earlier, the earlier the earlier.
[
{
date: "2018-10-31",
list: [
{
time: "9:30",
matter: "xxx",
photo: ["xxx", "xxx"]
},
{
time: "11:30",
matter: "xxx",
photo: ["xxx", "xxx"]
}
]
}
{
date: "2018-10-30",
list: [
{
time: "08:47",
matter: "xxx",
photo: ["xxx", "xxx"]
}
]
}
]
come to the Great God