我對我的應用程序使用AngularJS,日期對象是$ scope.ProductionDate。如何從當前時間減去AngularJS中的一些小時
從上午5:00 2017年2月21日(2月21日)到4:59 2017年2月22日(2月22日)
我想ProductionDate值是2017年2月21日。
P.S.這裏2月21日只是一個例子。每日我在給定的時間要求相同的價值。
我可以知道如何得到它嗎?
function Ctrl($scope)
{
$scope.ProductionDate = new Date();
}
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app ng-controller="Ctrl">
ProductionDate: {{ProductionDate | date:'yyyy-MM-dd'}}<br/>
</div>
? –
我的意思是從今天早上5:00到明天早晨4:59 AM我希望日期成爲今天的日期 – Ranger
Moment.js(https://momentjs.com/)值得一看。我有JS或甚至是Angular的方法來做這件事,但是在計算和格式化日期時,沒有什麼比使用moment.js簡單,特別是如果您的項目中可能還有其他需求時。 –