对后端返回的时间进行升序的排序
Posted zhouyideboke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对后端返回的时间进行升序的排序相关的知识,希望对你有一定的参考价值。
other.sort(function(a,b){
let startTime=a.time.replace(/-/g, ‘/‘)
let endstTime=b.time.replace(/-/g, ‘/‘)
return Date.parse(startTime) - Date.parse(endstTime);//时间正序
})
时间格式:[
{‘time‘:‘2018-9-10 0-0-0‘,‘first‘:‘page‘},
{‘time‘:‘2018-9-10 0-0-0‘,‘first‘:‘page‘},
{‘time‘:‘2018-9-10 0-0-0‘,‘first‘:‘page‘},
{‘time‘:‘2018-9-10 0-0-0‘,‘first‘:‘page‘}
]
以上是关于对后端返回的时间进行升序的排序的主要内容,如果未能解决你的问题,请参考以下文章