即。有没有办法在Angular2中执行setInterval()
而不是每次都触发其变更检测程序?
答案 0 :(得分:0)
setInterval()可以与Angular2一起使用,而不会触发更改检测,如下所示,
(不要理解你的目的。如果你能告诉我们你想做什么,会更好吗?)
setInterval(function(){ //<-----rather than using setInterval(()=>{...});
console.log("No Chnagedetection");
},1000);