我正在使用角度计时器,我只是有点困惑如何跟踪它的事件。例如,我想在时间到后做某事,但我在控制台日志上看不到任何事件。
vm.add20Seconds = function() {
$scope.$broadcast('timer-add-cd-seconds', 20);
}
$scope.$on('timer-add-cd-seconds', function (event, data) {
console.log(data); // 'Some data'
});
控制台是空的。
https://github.com/siddii/angular-timer/blob/master/examples/angularjs-add-countdown-seconds.html