找到2日期之间的日期?

时间:2017-02-12 09:28:56

标签: angularjs controller

如何计算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

1 个答案:

答案 0 :(得分:2)

使用 moment.js ,您可以使用diff功能。

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