如何计算2个日期之间的天数。第1天是从数据库中取出的日期,第2个日期是今天的日期。
$scope.remainingbalance=function(sintrst){
$http({
url:"php/selectREMAININGBALACE.php",
method:"GET",
params:{GLID:$scope.cstmrdetails.GLID}
})
.success(function(tilldate){
$scope.tilldate=tilldate; //date fetching from the database
$scope.difference=$scope.tilldate[0].TILLDATE-$scope.date;//$scope.date is todays date
console.log( $scope.difference);
});
}
console.log( $scope.difference)
显示NaN
答案 0 :(得分:2)
使用 moment.js ,您可以使用diff
功能。
var a = moment();
var b = moment(tilldate);
var result = a.diff(b, 'days');