请参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-app-ability-uiability-V5\#uiabilityonpreparetoterminate10配置权限,'requestPermissions': [{ 'name': 'ohos.permission.PREPARE_APP_TERMINATE' }],onPrepareToTerminate(): boolean { console.info('onBackPress:'); promptAction.showDialog({ title: "提示", message: "确认退出?", buttons: [ { text: "取消", color: "#000000" }, { text: "退出", color: "#555555" } ] }).then((data: ShowDialogSuccessResponse) => { console.info('showDialog success, click button: ' + data.index); if (data.index == 1) { this.context.terminateSelf() } }) return true; }
请参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-app-ability-uiability-V5\#uiabilityonpreparetoterminate10
配置权限,