0
我如何計算2個日期之間的天數。第1個日期是從數據庫中獲取的日期,第2個日期是今天的日期。找到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
簡單而高效。 – Ajith