我对Angular相当新,我将角度为1.X的网站转换为角度2.5,并且我将isuue转换为角度1.x JS代码到下面的角度2.5:
checkJobStatusInterval = $interval(function () {
cartService.checkDownloadStatus1().then(function (keepChecking) {
//if there is no more job running, stop checking
if (!keepChecking) {
_stopChecking();
}
_updateCartStatus();
})
}, config.downloadCheckingInterval);
更具体地说,我如何转换$ interval和函数调用
答案 0 :(得分:0)
$interval
是Angularjs特有的,Angular 2+中没有相似之处,每个人都使用通常的setInterval
常规JavaScript方法。你可以这样做:
checkJobStatusInterval = setInterval(function() {
// Other stuff inside
}, config.downloadCheckingInterval);