我的 Ionic 4 应用程序有一个要求,我需要每 20 秒调用一次 API。当我使用setInterval()它时,API 每 1 秒而不是 20 秒命中一次。这是我的代码,我可以知道出了什么问题吗?
我的.ts文件
getApiData(){
this.http.get('https://kairavforex.com/api/libor_rate/',{},{'Content-Type': 'application/json','Authorization': "Token" + " " + this.authToken})
.then(data=>{
this.getData=JSON.parse(data.data).results;
})
this.repeatInterval();
}
repeatInterval(){
this.rateTimer=setInterval(() => {
this.getApiData();
}, 20000);
}
胡说叔叔
qq_遁去的一_1
慕工程0101907
相关分类