假设我有一个包含几个对象的数组:

var array = [{id: 1, date: Mar 12 2012 10:00:00 AM}, {id: 2, date: Mar 8 2012 08:00:00 AM}];

如何按日期元素排序这个数组,从最接近当前日期和时间的日期下来?请记住,数组可能有许多对象,但为了简单起见,我使用2。

我会使用排序函数和自定义比较器吗?


当前回答

使用ES6箭头函数,您可以进一步编写一行简洁的代码(不包括变量声明)。

Eg.:

var isdescent = true;//升序设置为false console.log([“8/2/2020”、“8/1/2020”、“8/13/2020”、“8/2/2020”].sort ((a, b) = >板块?new Date(b).getTime() - new Date(a).getTime(): new Date(a).getTime() - new Date(b).getTime()));

由于time与上述日期不存在,Date对象将考虑以下默认时间进行排序:

00:00:00

该代码可用于升序排序和降序排序。 只需根据需要更改isdescent变量的值。

其他回答

对于任何想要按日期(英国格式)排序的人,我使用以下方法:

//Sort by day, then month, then year
for(i=0;i<=2; i++){
    dataCourses.sort(function(a, b){

        a = a.lastAccessed.split("/");
        b = b.lastAccessed.split("/");

        return a[i]>b[i] ? -1 : a[i]<b[i] ? 1 : 0;
    }); 
}

简单的回答

array.sort(function(a,b){
  // Turn your strings into dates, and then subtract them
  // to get a value that is either negative, positive, or zero.
  return new Date(b.date) - new Date(a.date);
});

更一般的答案

array.sort(function(o1,o2){
  if (sort_o1_before_o2)    return -1;
  else if(sort_o1_after_o2) return  1;
  else                      return  0;
});

或者更简洁地说:

array.sort(function(o1,o2){
  return sort_o1_before_o2 ? -1 : sort_o1_after_o2 ? 1 : 0;
});

通用的,有力的答案

在所有数组上使用Schwartzian变换定义一个自定义的不可枚举sortBy函数:

(function(){
  if (typeof Object.defineProperty === 'function'){
    try{Object.defineProperty(Array.prototype,'sortBy',{value:sb}); }catch(e){}
  }
  if (!Array.prototype.sortBy) Array.prototype.sortBy = sb;

  function sb(f){
    for (var i=this.length;i;){
      var o = this[--i];
      this[i] = [].concat(f.call(o,o,i),o);
    }
    this.sort(function(a,b){
      for (var i=0,len=a.length;i<len;++i){
        if (a[i]!=b[i]) return a[i]<b[i]?-1:1;
      }
      return 0;
    });
    for (var i=this.length;i;){
      this[--i]=this[i][this[i].length-1];
    }
    return this;
  }
})();

像这样使用它:

array.sortBy(function(o){ return o.date });

如果你的日期没有直接的可比性,那就找一个可比较的日期。

array.sortBy(function(o){ return new Date( o.date ) });

如果你返回一个数组的值,你也可以使用这个来按多个标准排序:

// Sort by date, then score (reversed), then name
array.sortBy(function(o){ return [ o.date, -o.score, o.name ] };

详情见http://phrogz.net/JS/Array.prototype.sortBy.js。

带日期的字符串在JavaScript中是可比较的(如果它们在语法上相同),例如:

'2020-12-01' < '2020-12-02' == true

这意味着你可以在自定义排序函数中使用这个表达式:

var arr = [{id: 1、日期:“2020-12-01”},{id: 1、日期:“2020-12-15”},{id: 1、日期:' 2020-12-12 '}) 函数sortByDate(a, b) { 如果(a.date < b.date) { 返回1; } If (a.date > b.date) { 返回1; } 返回0; } const sorted = arrr .sort(sortByDate); console.log(排序);

Arr是一个对象数组,每个对象都有date_prop,它是一个日期。你可以像这样按降序/递减排序

 arr = arr.sort(function (a, b) {
      var dateA = new Date(a.date_prop).getTime();
      var dateB = new Date(b.date_prop).getTime();
      return dateA < dateB ? 1 : -1; // ? -1 : 1 for ascending/increasing order
    });

谢谢Ganesh Sanap。按日期字段从旧到新对项目进行排序。使用它

 myArray = [{transport: "Air",
             load: "Vatican Vaticano",
             created: "01/31/2020"},
            {transport: "Air",
             load: "Paris",
             created: "01/30/2020"}] 

        myAarray.sort(function(a, b) {
            var c = new Date(a.created);
            var d = new Date(b.created);
            return c-d;
        });