2017-02-12 22 views
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

答えて

2

を示しています。

var a = moment(); 
var b = moment(tilldate); 
var result = a.diff(b, 'days'); 
+1

シンプルで効率的です。 – Ajith

関連する問題