From 316036492ccb68e20ea4d70aa85b3efd7a9920f8 Mon Sep 17 00:00:00 2001 From: wusongqing Date: Mon, 4 Jul 2022 06:55:33 +0000 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=96=87=E6=A1=A3=E4=BD=93=E9=AA=8C?= =?UTF-8?q?=E5=AE=98=E3=80=91js-apis-camera=20=E6=B7=BB=E5=8A=A0CameraInpu?= =?UTF-8?q?tError=E6=8F=8F=E8=BF=B0=20Signed-off-by:=20wusongqing=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/apis/js-apis-camera.md | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-camera.md b/zh-cn/application-dev/reference/apis/js-apis-camera.md index 7df6d6bb7f..24462f499e 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-camera.md +++ b/zh-cn/application-dev/reference/apis/js-apis-camera.md @@ -1,6 +1,7 @@ # 相机管理 > **说明:** +> > 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 ## 导入模块 @@ -1034,7 +1035,7 @@ on(type: 'error', callback: ErrorCallback): void | 名称 | 类型 | 必填 | 说明 | | :------- | :------------------------------- | :--- | :----------------------------------------------- | | type | string | 是 | 监听事件,固定为'error',即CameraInput错误事件。 | -| callback | ErrorCallback | 是 | 回调函数,用于获取结果。 | +| callback | ErrorCallback<[CameraInputError](#camerainputerror)\> | 是 | 回调函数,用于获取结果。 | **示例:** @@ -1044,6 +1045,26 @@ cameraInput.on('error', (cameraInputError) => { }) ``` +## CameraInputErrorCode + +枚举,CameraInput的错误码。 + +**系统能力:** SystemCapability.Multimedia.Camera.Core + +| 名称 | 值 | 说明 | +| ------------- | ---- | ---------- | +| ERROR_UNKNOWN | -1 | 未知错误。 | + +## CameraInputError + +CameraInput错误对象。 + +**系统能力:** SystemCapability.Multimedia.Camera.Core + +| 名称 | 类型 | 说明 | +| ---- | ------------------------------------------- | -------------------------- | +| code | [CameraInputErrorCode](#camerainputerrorcode) | CameraInput中的错误码。 | + ## FlashMode @@ -2068,7 +2089,7 @@ previewOutput.on('error', (previewOutputError) => { | 名称 | 类型 | 说明 | | ---- | ------------------------------------------------- | ---------------------- | -| code | [PreviewOutputErrorCode](#previewoutputerrorcode) | PreviewOut中的错误码。 | +| code | [PreviewOutputErrorCode](#previewoutputerrorcode) | PreviewOutput中的错误码。 | ## camera.createPhotoOutput -- GitLab