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)
あなたがdiff
機能を使用することができますmoment.jsを使用してNaN
シンプルで効率的です。 – Ajith