如何更改:2018-01-03 21:00:00至1月21日与AngularJs

时间:2018-01-03 18:10:23

标签: javascript angularjs angularjs-filter

我应该怎么做2018-01-03 21:00:00才能获得1月3日21:00(没有年份)

1 个答案:

答案 0 :(得分:4)

您可以使用日期管道:https://docs.angularjs.org/api/ng/filter/date

{{yourDate | date: 'dd MMMM HH:mm'}}

您的API示例:

http.get(url).then(function(res) {
  $scope.data = res.list;

  angular.forEach($scope.data, function(item) {
    item.dt_txt = new Date(item.dt_txt);
  });
});