本文介绍了如何通过AngularJS日期过滤器添加天数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有此代码:
<body ng-app="my-app" ng-controller="my-controller">
<h1>Empty Angular App</h1>
<span>{{"2015-07-08T15:10:10.530Z" | date:'medium'}}</span><br>
<span>Expected: Aug 23, 2015 10:10:10 PM</span>
</body>
http://codepen.io/vicheanak/pen/MwVNwG/
我想在"2015-07-08T15:10:10.530Z"的基础上再增加46天.预期结果是:2015年8月23日晚上10:10:10
I'd like to add 46 days on top of "2015-07-08T15:10:10.530Z".Expected result is: Aug 23, 2015 10:10:10 PM
感谢您的帮助
推荐答案
您曾说过,使用javascript是更好的选择.
As you told, use javascript is better option.
var app = angular.module('my-app', []);
app.controller("my-controller", function($scope) {
$scope.name = "world";
$scope.mydate = new Date("2015-07-08T15:10:10.530Z");
var numberOfDaysToAdd = 46;
$scope.newdate = $scope.mydate.setDate($scope.mydate.getDate() + numberOfDaysToAdd);
});
http://codepen.io/anon/pen/MwVNpq
这篇关于如何通过AngularJS日期过滤器添加天数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!