Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
fd34d342
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
fd34d342
编写于
5月 18, 2023
作者:
W
wangwang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:docs
Signed-off-by:
N
wangwang
<
wangwang16@huawei.com
>
上级
7b71ba3e
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
28 addition
and
26 deletion
+28
-26
zh-cn/application-dev/reference/apis/js-apis-batteryStatistics.md
...plication-dev/reference/apis/js-apis-batteryStatistics.md
+8
-8
zh-cn/application-dev/reference/apis/js-apis-brightness.md
zh-cn/application-dev/reference/apis/js-apis-brightness.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-charger.md
zh-cn/application-dev/reference/apis/js-apis-charger.md
+2
-0
zh-cn/application-dev/reference/apis/js-apis-power.md
zh-cn/application-dev/reference/apis/js-apis-power.md
+8
-8
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
+6
-6
zh-cn/application-dev/reference/apis/js-apis-thermal.md
zh-cn/application-dev/reference/apis/js-apis-thermal.md
+3
-3
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-batteryStatistics.md
浏览文件 @
fd34d342
...
...
@@ -36,7 +36,7 @@ getBatteryStats(): Promise<Array<BatteryStatsInfo>>
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -72,7 +72,7 @@ getBatteryStats(callback: AsyncCallback<Array<BatteryStatsInfo>>): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -114,7 +114,7 @@ getAppPowerValue(uid: number): number
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -155,7 +155,7 @@ getAppPowerPercent(uid: number): number
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -196,13 +196,13 @@ getHardwareUnitPowerValue(type: ConsumptionType): number
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
```
js
try
{
var
value
=
batteryStats
.
getHardwareUnitPowerValue
(
ConsumptionType
.
CONSUMPTION_TYPE_SCREEN
);
var
value
=
batteryStats
.
getHardwareUnitPowerValue
(
batteryStats
.
ConsumptionType
.
CONSUMPTION_TYPE_SCREEN
);
console
.
info
(
'
battery statistics value of hardware is:
'
+
value
);
}
catch
(
err
)
{
console
.
error
(
'
get battery statistics percent of hardware failed, err:
'
+
err
);
...
...
@@ -237,13 +237,13 @@ getHardwareUnitPowerPercent(type: ConsumptionType): number
| 错误码ID | 错误信息 |
|---------|---------|
| 4600101 |
连接服务失败。
|
| 4600101 |
If connecting to the service failed.
|
**示例:**
```
js
try
{
var
percent
=
batteryStats
.
getHardwareUnitPowerPercent
(
ConsumptionType
.
CONSUMPTION_TYPE_SCREEN
);
var
percent
=
batteryStats
.
getHardwareUnitPowerPercent
(
batteryStats
.
ConsumptionType
.
CONSUMPTION_TYPE_SCREEN
);
console
.
info
(
'
battery statistics percent of hardware is:
'
+
percent
);
}
catch
(
err
)
{
console
.
error
(
'
get battery statistics percent of hardware failed, err:
'
+
err
);
...
...
zh-cn/application-dev/reference/apis/js-apis-brightness.md
浏览文件 @
fd34d342
...
...
@@ -36,7 +36,7 @@ setValue(value: number): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4700101 |
连接服务失败。
|
| 4700101 |
If connecting to the service failed.
|
**示例:**
...
...
zh-cn/application-dev/reference/apis/js-apis-charger.md
浏览文件 @
fd34d342
...
...
@@ -17,6 +17,8 @@ import charger from '@ohos.charger';
表示充电类型的枚举。
**系统接口:**
此接口为系统接口。
**系统能力**
:SystemCapability.PowerManager.BatteryManager.Core
| 名称 | 值 | 说明 |
...
...
zh-cn/application-dev/reference/apis/js-apis-power.md
浏览文件 @
fd34d342
...
...
@@ -36,7 +36,7 @@ shutdown(reason: string): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -72,7 +72,7 @@ reboot(reason: string): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -98,7 +98,7 @@ isActive(): boolean
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -133,7 +133,7 @@ wakeup(detail: string): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -161,7 +161,7 @@ suspend(): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -193,7 +193,7 @@ getPowerMode(): DevicePowerMode
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -231,7 +231,7 @@ setPowerMode(mode: DevicePowerMode, callback: AsyncCallback<void>): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -275,7 +275,7 @@ setPowerMode(mode: DevicePowerMode): Promise<void>
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
链接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
浏览文件 @
fd34d342
...
...
@@ -38,7 +38,7 @@ isSupported(type: RunningLockType): boolean;
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -75,7 +75,7 @@ create(name: string, type: RunningLockType, callback: AsyncCallback<RunningLo
| 错误码ID | 错误信息 |
|---------|----------|
| 4900101 |
连接服务器失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -118,7 +118,7 @@ create(name: string, type: RunningLockType): Promise<RunningLock>
| 错误码ID | 错误信息 |
|---------|----------|
| 4900101 |
连接服务器失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -290,7 +290,7 @@ hold(timeout: number): void
| 错误码ID | 错误信息 |
|---------|----------|
| 4900101 |
连接服务器失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -326,7 +326,7 @@ unhold(): void
| 错误码ID | 错误信息 |
|---------|----------|
| 4900101 |
连接服务器失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -366,7 +366,7 @@ isHolding(): boolean
| 错误码ID | 错误信息 |
|---------|---------|
| 4900101 |
连接服务失败。
|
| 4900101 |
If connecting to the service failed.
|
**示例:**
...
...
zh-cn/application-dev/reference/apis/js-apis-thermal.md
浏览文件 @
fd34d342
...
...
@@ -32,7 +32,7 @@ registerThermalLevelCallback(callback: Callback<ThermalLevel>): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4800101 |
连接服务失败。
|
| 4800101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -67,7 +67,7 @@ unregisterThermalLevelCallback(callback?: Callback\<void>): void
| 错误码ID | 错误信息 |
|---------|---------|
| 4800101 |
连接服务失败。
|
| 4800101 |
If connecting to the service failed.
|
**示例:**
...
...
@@ -102,7 +102,7 @@ getLevel(): ThermalLevel
| 错误码ID | 错误信息 |
|---------|---------|
| 4800101 |
连接服务失败。
|
| 4800101 |
If connecting to the service failed.
|
**示例:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录