dates not properly sorted in Angular.js

前端 未结 3 1908
轮回少年
轮回少年 2021-01-04 19:47

I am relatively new to Angular.js and am having a problem with date sorting. I have looked around the web for similar issues, but haven\'t found any that are of quite the sa

3条回答
  •  爱一瞬间的悲伤
    2021-01-04 20:15

    just you need to always keep your date in similar format.

    change

    data = [
      {
        "name": "Test_1_Test",
        "creation_date": "08/02/2013 10:31:02 AM"
      },
      {
        "name": "Test_2_Test",
        "creation_date": "08/01/2013 9:12:32 AM"
      },
      {
        "name": "Test_3_Test",
        "creation_date": "09/13/2013 4:55:09 AM"
      }
    ]
    

    Check fiddle updated

    http://jsfiddle.net/HrGdt/28/

提交回复
热议问题