Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
03de8509
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看板
未验证
提交
03de8509
编写于
3月 24, 2022
作者:
O
openharmony_ci
提交者:
Gitee
3月 24, 2022
浏览文件
操作
浏览文件
下载
差异文件
!2452 #I4ZEPC:修正电源管理power和runningLock的API DOC
Merge pull request !2452 from hujun211/master
上级
ba94f4d0
d1939a43
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
19 deletion
+19
-19
zh-cn/application-dev/reference/apis/js-apis-power.md
zh-cn/application-dev/reference/apis/js-apis-power.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
+16
-16
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-power.md
浏览文件 @
03de8509
...
@@ -25,7 +25,7 @@ shutdownDevice(reason: string): void
...
@@ -25,7 +25,7 @@ shutdownDevice(reason: string): void
此接口为系统接口,三方应用不支持调用。
此接口为系统接口,三方应用不支持调用。
**需要权限:**
ohos.permission.
SHUTDOWN
**需要权限:**
ohos.permission.
REBOOT
**参数:**
**参数:**
...
@@ -47,7 +47,7 @@ rebootDevice(reason: string): void
...
@@ -47,7 +47,7 @@ rebootDevice(reason: string): void
重启设备。
重启设备。
**需要权限:**
ohos.permission.REBOOT(重启权限)、ohos.permission.REBOOT_
UPDATER(重启并进入
updater模式的权限)
**需要权限:**
ohos.permission.REBOOT(重启权限)、ohos.permission.REBOOT_
RECOVERY(重启并进入recovery或者
updater模式的权限)
**参数:**
**参数:**
...
@@ -71,7 +71,7 @@ isScreenOn(callback: AsyncCallback<boolean>): void
...
@@ -71,7 +71,7 @@ isScreenOn(callback: AsyncCallback<boolean>): void
**参数:**
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| 参数名
| 类型 | 必填 | 说明 |
| -------- | ---------------------------- | ---- | ---------------------------------------- |
| -------- | ---------------------------- | ---- | ---------------------------------------- |
| callback | AsyncCallback
<
boolean
>
| 是 | 指定的callback回调方法,用于获取返回值。
<br/>
callback返回值:亮屏返回true,灭屏返回false。 |
| callback | AsyncCallback
<
boolean
>
| 是 | 指定的callback回调方法,用于获取返回值。
<br/>
callback返回值:亮屏返回true,灭屏返回false。 |
...
...
zh-cn/application-dev/reference/apis/js-apis-runninglock.md
100644 → 100755
浏览文件 @
03de8509
...
@@ -107,16 +107,16 @@ createRunningLock(name: string, type: RunningLockType, callback: AsyncCallback&l
...
@@ -107,16 +107,16 @@ createRunningLock(name: string, type: RunningLockType, callback: AsyncCallback&l
**示例:**
**示例:**
```
```
runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.BACKGROUND
)
runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.BACKGROUND
, (error, lockIns) => {
.then(runninglock =>
{
if (typeof error === "undefined")
{
var used = runninglock.isUsed(
);
console.log('create runningLock test error: ' + error
);
console.info('runninglock is used: ' + used);
} else {
runninglock.lock(500
);
var used = lockIns.isUsed(
);
used = runninglock.isUsed(
);
console.info('runninglock is used: ' + used
);
console.info('after lock runninglock is used ' + used
);
lockIns.lock(500
);
})
used = lockIns.isUsed();
.catch(error => {
console.info('after lock runninglock is used ' + used);
console.log('create runningLock test error: ' + error);
}
})
})
```
```
...
@@ -172,9 +172,9 @@ lock(timeout: number): void
...
@@ -172,9 +172,9 @@ lock(timeout: number): void
**参数:**
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明
|
| ------- | ------ | ---- | -------------------- |
| ------- | ------ | ---- | --------------------
------
|
| timeout | number | 否 | 锁定和持有RunningLock的时长。 |
| timeout | number | 否 | 锁定和持有RunningLock的时长
,单位:毫秒
。 |
**示例:**
**示例:**
...
@@ -185,7 +185,7 @@ runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.B
...
@@ -185,7 +185,7 @@ runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.B
console.info('create runningLock success')
console.info('create runningLock success')
})
})
.catch(error => {
.catch(error => {
console.log('
Lock
runningLock test error: ' + error)
console.log('
create
runningLock test error: ' + error)
});
});
```
```
...
@@ -204,10 +204,10 @@ unlock(): void
...
@@ -204,10 +204,10 @@ unlock(): void
runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.BACKGROUND)
runningLock.createRunningLock("running_lock_test", runningLock.RunningLockType.BACKGROUND)
.then(runningLock => {
.then(runningLock => {
runningLock.unlock()
runningLock.unlock()
console.info('unLock runningLock success')
console.info('
create and
unLock runningLock success')
})
})
.catch(error => {
.catch(error => {
console.log('
unLock
runningLock test error: ' + error)
console.log('
create
runningLock test error: ' + error)
});
});
```
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录