我有一个离子3应用程序,需要每10~15分钟执行一次功能,我尝试使用超时但它只有在应用程序最小化时才起作用,后台插件似乎工作正常,无论如何都要运行应用程序被杀后?
teste_bg(){
this._storage.get('var').then(val=>{
let t
console.log(val)
t=parseInt(val)
this.teste=t
t+=1
this._storage.set('var',t);
}).catch(()=>{
this._storage.set('var',1)
})
setTimeout(() => {
this.teste_bg()
}, 1000)
}