当前,我正在尝试防止使用JavaScript在Windows uwp中关闭应用程序。
下面是我尝试过的代码
function suspending(e) {
console.log("****** suspending start ******");
var deferral = e.suspendingOperation.getDeferral();
deferral.complete();
console.log("****** suspending end ******");
}
//raised when the app gets suspended
function resuming(args) {
console.log("****** resuming ******");
}
Windows.UI.WebUI.WebUIApplication.addEventListener("suspending", suspending, false);
Windows.UI.WebUI.WebUIApplication.addEventListener("resuming", resuming, false);
我能够记录暂停事件,但恢复事件无法正常工作。
即使在执行暂停操作后,我也必须运行后台任务。
有人可以帮我吗?