启用了后台模式,但未使用后台模式插件激活

时间:2018-10-31 09:34:23

标签: ionic-framework

我在ionic的Android中使用后台模式插件。我想每30分钟调用一次api。下面是代码。

In app.component.ts


  constructor(private backgroundMode: BackgroundMode){
    this.platform.ready().then(() => {
          this.backgroundMode.enable();
  setInterval(() => {
           callApi(); // a method which calls api every 30 mins in background mode
         }, 30 * 60000);
    })
    }

在上面的代码片段中,启用了后台模式但未激活.enable()方法应启用后台模式并正确激活它???

我在代码的某处出错了吗?请帮助我

0 个答案:

没有答案