【发布时间】:2020-06-10 06:12:26
【问题描述】:
请按照代码。 HTTP 请求在 ionic 中无法在后台模式下工作。
this.platform.ready().then(() => {
this.backgroundMode.setDefaults({
text: 'Doing heavy tasks.'
});
// Enable background mode
this.backgroundMode.enable();
// Called when background mode has been activated
this.backgroundMode.isActive(); // => boolean
this.backgroundMode.on("activate").subscribe(() => {
console.log('Print console for background');
setInterval(function(){
// http request (post method)
}, 5000);
});
});
【问题讨论】:
标签: angular ionic-framework ionic4 background-process