AngularJS如何向返回日期的函数添加+1

时间:2018-02-19 10:12:46

标签: angularjs momentjs

我在表格中有一个包含5个单元格的表格,每个单元格对应一周(例如:第01周,第02周等等)。

在第一个单元格中,这周是这样的:

<div class="monthCells">Week {{vm.selectedPeriod}}</div>

,结果是标题单元格中的文本:“Week 01”。

控制器中显示周数的代码是:

return moment.utc(this.date).format("WW");

它始终返回所选月份的第一周的编号, 用户可以使用日期选择器逐月进行,并在表格中显示该月的周数。

显示其他4周的最佳方式是什么? 因为我只获得了第一周的数字,所以我在其他4个单元格中放了什么?

我正在考虑一个计数器,因此它为我得到的数字增加了+1:

return moment.utc(this.date).format("WW");

但问题是,这不会在ng-repeat中,但表头是静态的,所以我想到的一个解决方案就是在5个标题单元格中加入这样的东西:

{{vm.selectedPeriod}}
{{vm.selectedPeriod +1}}
{{vm.selectedPeriod +2}}
{{vm.selectedPeriod +3}}
{{vm.selectedPeriod +4}}

因此,当用户切换月份时,每周的数字都是正确的但是它不起作用,因为我从我的函数中获取了一个字符串,并且无法弄清楚如何使用momentJS在该函数中解析它。

如果某人有我的想法的解决方案,或者有更好的方法来实现这一点,请告诉我

编辑解决方案:

最后我找到了一个只使用momentJS的解决方案。

{{vm.date | amDateFormat : 'WW'}} 
{{vm.date | amAdd : '1' : 'w' | amDateFormat : 'WW'}}
{{vm.date | amAdd : '2' : 'w' | amDateFormat : 'WW'}}

1 个答案:

答案 0 :(得分:1)

我会使用像我在&gt;&gt;中创建的简单智能过滤器这样做Demo fiddle

视图

<div ng-controller="MyCtrl">
  <div class="monthCells">Week {{currentDate|dateWeekFilter:0}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:1}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:2}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:3}}</div>
</div>

AngularJS应用程序

var myApp = angular.module('myApp',[]);

myApp.controller('MyCtrl', function ($scope) {
    $scope.currentDate = moment.utc();
});

myApp.filter('dateWeekFilter', function () {
    return function (date, weeksToAdd) {
      return moment(date).add(weeksToAdd, 'w').format("WW");
    }
});

完整解决方案,包括:selectedPeriod范围和日期选择器

<强>&GT;&GT; Demo fiddle

视图

<div ng-controller="MyCtrl">
  <datepicker>
    <input ng-model="datePickerDate" ng-change="dateChanged()" type="text"/>
  </datepicker>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:selectedPeriod}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:selectedPeriod+1}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:selectedPeriod+2}}</div>
  <div class="monthCells">Week {{currentDate|dateWeekFilter:selectedPeriod+3}}</div>
</div>

AngularJS应用程序

var myApp = angular.module('myApp',['720kb.datepicker']);

myApp.controller('MyCtrl', function ($scope) {

        //Init
    $scope.currentDate = moment.utc();
    $scope.datePickerDate = $scope.currentDate.toDate();
    $scope.selectedPeriod = 0;

    //date change handling
    $scope.dateChanged = function () {
         $scope.currentDate = moment.utc($scope.datePickerDate);
    }

});

myApp.filter('dateWeekFilter', function () {
    return function (date, weeksToAdd) {
      return moment(date).add(weeksToAdd, 'w').format("WW");
    }
});