最佳答案
我在项目中使用 angularjs。
我从服务器获得对象数组。 每个对象包含几个属性,其中之一是日期属性。
下面是我从服务器获得的 Array (在 json 中) :
[
{
"Address": 25,
"AlertType": 1,
"Area": "North",
"MeasureDate": "2019-02-01T00:01:01.001Z",
"MeasureValue": -1
},
{
"Address": 26,
"AlertType": 1,
"Area": "West",
"MeasureDate": "2016-04-12T15:13:11.733Z",
"MeasureValue": -1
},
{
"Address": 25,
"AlertType": 1,
"Area": "North",
"MeasureDate": "2017-02-01T00:01:01.001Z",
"MeasureValue": -1
}
.
.
.
]
我需要从数组中得到最新的日期。
从对象数组中获取最新日期的优雅方法是什么?