我正在使用离子背景模式插件。首先,我在项目中安装,在 app.module.ts 文件中导入,并将这段代码放在 app.component.ts 文件中this.backgroundMode.enable();
。我想检查后台运行功能中的后台模式是否处于活动状态。我想在后台模式处于活动状态时运行我的功能。
let inBackground = true;
this.backgroundMode.isActive();
this.myfunction();
有谁知道如何做到这一点??