#鸿蒙通关秘籍#如何取消一个已经申请的长时任务?

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
青石巷陌CLI

在鸿蒙中取消长时任务使用stopBackgroundRunning()方法。通过调用stopBackgroundRunning(context)直接取消当前在后台运行的长时任务,代码如下:

javascript backgroundTaskManager.stopBackgroundRunning(context).then(() => { console.info("Succeeded in operationing stopBackgroundRunning."); }).catch((err) => { console.error(Failed to operation stopBackgroundRunning. Code is ${err.code}, message is ${err.message}); });

分享
微博
QQ
微信
回复
1天前
相关问题
如何申请多个时任务
1986浏览 • 1回复 待解决
时任务是否阻止系统休眠
404浏览 • 1回复 待解决