我有一个单击函数,它们从Date()。getTime()获得一个数字。我想用这个数字将他转换为倒计时。

我仅在Ionic框架1x中使用javascript。

var currentDate = new Date().getTime();
console.log(currentDate);

var secondDate = new Date(item.date).getTime();
console.log(secondDate);
secondDate = new Date(secondDate).getSeconds();
console.log(secondDate);
$scope.countdown = secondDate;

最佳答案

在普通的JavaScript中,您可以像这样使用setInterval



setInterval(function() {
  console.log(new Date().getTime());
}, 1000);





在Ionic / Angular中,您需要用包装器$interval替换setInterval

$interval(function() {
  $scope.countdown = new Date().getTime();
}, 1000);

10-04 23:31