From 72bf28841f7729c2eca0a6bc44f16335f8bd8863 Mon Sep 17 00:00:00 2001 From: zengyawen Date: Thu, 3 Aug 2023 10:28:29 +0000 Subject: [PATCH] fixed 9fd8103 from https://gitee.com/zengyawen/docs/pulls/21902 fix bugs Signed-off-by: zengyawen --- zh-cn/application-dev/reference/apis/js-apis-base.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-base.md b/zh-cn/application-dev/reference/apis/js-apis-base.md index 5524b1852b..7aed8b1614 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-base.md +++ b/zh-cn/application-dev/reference/apis/js-apis-base.md @@ -40,7 +40,7 @@ ErrorCallback\ { 通用回调函数,携带错误参数。 -回调返回的信息为[BusinessError](https://gitee.com/openharmony/docs/pulls/20172/files#businesserror)类型的信息。 +回调返回的信息为[BusinessError](#businesserror)类型的信息。 **系统能力**:SystemCapability.Base @@ -60,7 +60,7 @@ AsyncCallback\ { 通用回调函数,携带错误参数和异步返回值。 -错误参数为[BusinessError](https://gitee.com/openharmony/docs/pulls/20172/files#businesserror)类型的信息。 +错误参数为[BusinessError](#businesserror)类型的信息。 异步返回值的类型由开发者自定义,回调将返回对应类型的信息。 @@ -68,7 +68,7 @@ AsyncCallback\ { | 名称 | 类型 | 必填 | 说明 | | ---- | ------------------------------------------------------------ | ---- | ---------------------------- | -| err | [BusinessError](https://gitee.com/openharmony/docs/pulls/20172/files#businesserror) | 是 | 接口调用失败的公共错误信息。 | +| err | [BusinessError](#businesserror) | 是 | 接口调用失败的公共错误信息。 | | data | T | 是 | 接口调用时的公共回调信息。 | ## BusinessError -- GitLab