var rowsData=info.rows; // rowsData 为数组
rowsData.sort(function(a, b) { if(a.num === b.num) { return new Date(b.createTime) - new Date(a.createTime) } else { return b.num - a.num; } });本文共 228 字,大约阅读时间需要 1 分钟。
var rowsData=info.rows; // rowsData 为数组
rowsData.sort(function(a, b) { if(a.num === b.num) { return new Date(b.createTime) - new Date(a.createTime) } else { return b.num - a.num; } });转载于:https://blog.51cto.com/12943278/1928338