gpt4 book ai didi

javascript - IONIC 3 中的 setInterval

转载 作者:太空狗 更新时间:2023-10-29 19:36:21 26 4
gpt4 key购买 nike

我想每 1 秒运行一个函数。搜索后,我找到了 setInterval,但它对我不起作用。

setInterval(function(){ 
this.myfuntion();

}, 1000);

我也尝试了 this.myfunction 但它也不起作用。

最佳答案

解决方案是使用 Arrow functions :

setInterval(() => { 
this.myfuntion(); // Now the "this" still references the component
}, 1000);

当使用箭头函数时,this 属性不会被覆盖并且仍然引用组件实例。

关于javascript - IONIC 3 中的 setInterval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46743354/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com