From 634db4ba7a0cf2a84ac02e0c7dcabd3a06d268fd Mon Sep 17 00:00:00 2001 From: LiAn Date: Wed, 24 Aug 2022 12:20:55 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-system-battery.md. Signed-off-by: LiAn Signed-off-by: LiAn --- .../reference/apis/js-apis-system-battery.md | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-battery.md b/zh-cn/application-dev/reference/apis/js-apis-system-battery.md index 82c2bd6137..2c4b2dedd6 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-system-battery.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-battery.md @@ -1,7 +1,7 @@ # 电量信息 > **说明:** -> - 从API Version 9开始,该接口不再维护,推荐使用新接口[`@ohos.batteryInfo`](js-apis-battery-info.md)。 +> - 从API Version 6开始,该接口不再维护,推荐使用新接口[`@ohos.batteryInfo`](js-apis-battery-info.md)。 > > - 本模块首批接口从API version 3开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。 @@ -26,17 +26,10 @@ getStatus(Object): void | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| success | (data: BatteryResponse) => void | 否 | 接口调用成功的回调函数。| +| success | (data: [BatteryResponse](#batteryresponse)) => void | 否 | 接口调用成功的回调函数。| | fail | (data: string, code: number) => void | 否 | 接口调用失败的回调函数。| | complete | () => void | 否 | 接口调用结束的回调函数。 | -success返回值: - -| 参数名 | 类型 | 说明 | -| -------- | -------- | -------- | -| charging | boolean | 当前电池是否在充电中。 | -| level | number | 当前电池的电量,取值范围:0.00 - 1.00 。 | - **示例:** ```js @@ -52,4 +45,11 @@ export default { }); }, } -``` \ No newline at end of file +``` + +## BatteryResponse + +| 参数名 | 类型 | 说明 | +| -------- | -------- | -------- | +| charging | boolean | 当前电池是否在充电中。 | +| level | number | 当前电池的电量,取值范围:0.00 - 1.00 。 | -- GitLab