From b0bbee3e5436c0649679e8810c9fe7949d91ff2b Mon Sep 17 00:00:00 2001 From: HuangXW Date: Tue, 27 Jun 2023 03:05:31 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20ff067ba=20from=20https://gitee.com/H-xi?= =?UTF-8?q?nwei/docs/pulls/20163=20=E8=A1=A5=E5=85=85=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=EF=BC=9AArkTS=E5=8D=A1=E7=89=87call=E4=BA=8B=E4=BB=B6=E4=BB=85?= =?UTF-8?q?=E6=94=AF=E6=8C=81call=E5=8D=95=E5=AE=9E=E4=BE=8B=E7=9A=84UIAbi?= =?UTF-8?q?lity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: HuangXW Change-Id: I928ed84f1e3bf48975805b26892ef8e507617374 --- .../application-models/arkts-ui-widget-event-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-cn/application-dev/application-models/arkts-ui-widget-event-overview.md b/zh-cn/application-dev/application-models/arkts-ui-widget-event-overview.md index 05e21771a5..90ea390d80 100644 --- a/zh-cn/application-dev/application-models/arkts-ui-widget-event-overview.md +++ b/zh-cn/application-dev/application-models/arkts-ui-widget-event-overview.md @@ -21,7 +21,7 @@ action参数说明: | **Key** | **Value** | **样例描述** | | -------- | -------- | -------- | -| "action" | string | action的类型,支持三种预定义的类型:
- "router":跳转到提供方应用的指定UIAbility。
- "message":自定义消息,触发后会调用提供方FormExtensionAbility的[onFormEvent()](../reference/apis/js-apis-app-form-formExtensionAbility.md#onformevent)生命周期回调。
- "call":后台启动提供方应用。触发后会拉起提供方应用的指定UIAbility,但不会调度到前台。提供方应用需要具备后台运行权限([ohos.permission.KEEP_BACKGROUND_RUNNING](../security/permission-list.md#ohospermissionkeep_background_running))。 | +| "action" | string | action的类型,支持三种预定义的类型:
- "router":跳转到提供方应用的指定UIAbility。
- "message":自定义消息,触发后会调用提供方FormExtensionAbility的[onFormEvent()](../reference/apis/js-apis-app-form-formExtensionAbility.md#onformevent)生命周期回调。
- "call":后台启动提供方应用。触发后会拉起提供方应用的指定UIAbility(仅支持[launchType](uiability-launch-type.md)为singleton的UIAbility,即启动模式为单实例的UIAbility),但不会调度到前台。提供方应用需要具备后台运行权限([ohos.permission.KEEP_BACKGROUND_RUNNING](../security/permission-list.md#ohospermissionkeep_background_running))。 | | "bundleName" | string | "router" / "call" 类型时跳转的包名,可选。 | | "moduleName" | string | "router" / "call" 类型时跳转的模块名,可选。 | | "abilityName" | string | "router" / "call" 类型时跳转的UIAbility名,必填。 | -- GitLab