0

我需要帮助,我不知道如何在应用程序关闭时在后台进行函数调用,它只有在打开或最小化时才有效。

platform.ready().then(() => { 
  this.backgroundMode.setDefaults({ silent: true });
  this.backgroundMode.enable();
  backgroundMode.on('enable').subscribe(() => { 
    setInterval(() => {
      this.getBusqueda();
    }, 5000);
  }); 
4

0 回答 0