From 6f18e60f83065af33608860c371c91fb4a9141cb Mon Sep 17 00:00:00 2001 From: wuchengwen Date: Mon, 30 Jun 2025 19:37:31 +0800 Subject: [PATCH] fix:add error message Signed-off-by: wuchengwen --- .../reference/apis-ime-kit/js-apis-inputmethod-sys.md | 2 +- .../reference/apis-ime-kit/js-apis-inputmethod.md | 2 +- .../reference/apis-ime-kit/js-apis-inputmethodengine.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod-sys.md b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod-sys.md index b1e444ef4d2..d25507607e8 100644 --- a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod-sys.md +++ b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod-sys.md @@ -292,7 +292,7 @@ enableInputMethod(bundleName: string, extensionName: string, enabledState: Enabl | -------- | -------------------------------------- | | 201 | permissions check fails. | | 202 | not system application. | -| 12800008 | input method manager service error. | +| 12800008 | input method manager service error. Possible cause: a system error, such as null pointer, IPC exception. | | 12800018 | the input method is not found. | | 12800019 | current operation cannot be applied to the preconfigured default input method. | diff --git a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod.md b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod.md index 64fe7708e09..c3a13cf53b3 100644 --- a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod.md +++ b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethod.md @@ -1151,7 +1151,7 @@ discardTypingText(): Promise<void> | 错误码ID | 错误信息 | | -------- | -------------------------------------- | -| 12800003 | input method client error. | +| 12800003 | input method client error. Possible causes: 1.the edit box is not focused. 2.no edit box is bound to current input method application. | | 12800009 | input method client detached. | | 12800015 | the other side does not accept the request. | diff --git a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethodengine.md b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethodengine.md index 13043dd9eec..90fbeb76e18 100644 --- a/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethodengine.md +++ b/zh-cn/application-dev/reference/apis-ime-kit/js-apis-inputmethodengine.md @@ -1820,7 +1820,7 @@ startMoving(): void | 错误码ID | 错误信息 | | -------- | ------------------------------------------------------- | | 801 | capability not supported. | -| 12800002 | input method engine error. | +| 12800002 | input method engine error. Possible causes: 1.input method panel not created. 2.the input method application does not subscribe to related events. | | 12800013 | window manager service error. | | 12800017 | invalid panel type or panel flag. | -- Gitee