Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
16897cd8
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
16897cd8
编写于
10月 08, 2022
作者:
L
LVB8189
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Signed-off-by: LVB8189 <lvbai1@huawei.com>
Changes to be committed:
上级
320dc995
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
9 addition
and
45 deletion
+9
-45
zh-cn/application-dev/reference/apis/js-apis-screen-lock.md
zh-cn/application-dev/reference/apis/js-apis-screen-lock.md
+2
-10
zh-cn/application-dev/reference/apis/js-apis-wallpaper.md
zh-cn/application-dev/reference/apis/js-apis-wallpaper.md
+7
-35
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-screen-lock.md
浏览文件 @
16897cd8
...
...
@@ -93,11 +93,7 @@ isLocked(): boolean;
**示例**
:
```
js
screenlock
.
isLocked
().
then
((
data
)
=>
{
console
.
log
(
'
isLocked success: data -> ${JSON.stringify(data)}
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
'
isLocked fail:err -> ${JSON.stringify(err)}
'
);
});
var
isLocked
=
screenlock
.
isLocked
();
```
...
...
@@ -180,11 +176,7 @@ isSecure(): boolean;
**示例**
:
```
js
screenlock
.
isSecure
().
then
((
data
)
=>
{
console
.
log
(
'
isSecure success: data -> ${JSON.stringify(data)}
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
'
isSecure fail:err -> ${JSON.stringify(err)}
'
);
});
var
isSecure
=
screenlock
.
isSecure
();
```
...
...
zh-cn/application-dev/reference/apis/js-apis-wallpaper.md
浏览文件 @
16897cd8
...
...
@@ -118,11 +118,7 @@ getColorsSync(wallpaperType: WallpaperType): Arrayy<RgbaColory<;
**示例**
:
```
js
wallpaper
.
getColorsSync
(
wallpaper
.
WallpaperType
.
WALLPAPER_SYSTEM
).
then
((
data
)
=>
{
console
.
log
(
'
success to getColors.
'
);
}).
catch
((
err
)
=>
{
console
.
error
(
'
failed to getColors because:
'
+
JSON
.
stringify
(
error
));
});
var
colors
=
wallpaper
.
getColorsSync
(
wallpaper
.
WallpaperType
.
WALLPAPER_SYSTEM
);
```
...
...
@@ -218,11 +214,7 @@ getIdSync(wallpaperType: WallpaperType): number;
**示例**
:
```
js
wallpaper
.
getIdSync
(
wallpaper
.
WallpaperType
.
WALLPAPER_SYSTEM
).
then
((
data
)
=>
{
console
.
log
(
'
success to getIdSync:
'
+
JSON
.
stringify
(
data
));
}).
catch
((
err
)
=>
{
console
.
error
(
'
failed to getIdSync because:
'
+
JSON
.
stringify
(
error
));
});
var
id
=
wallpaper
.
getIdSync
(
wallpaper
.
WallpaperType
.
WALLPAPER_SYSTEM
);
##
wallpaper
.
getMinHeight
...
...
@@ -304,11 +296,7 @@ getMinHeightSync(): number
**示例:**
```
js
wallpaper.getMinHeightSync().then((data) => {
console.log(
`success to getMinHeightSync: `
+ JSON.stringify(data));
}).catch((error) => {
console.error(
`failed to getMinHeightSync because: `
+ JSON.stringify(error));
});
var minHeight = wallpaper.getMinHeightSync();
```
...
...
@@ -391,11 +379,7 @@ getMinWidthSync(): number
**示例:**
```
js
wallpaper.getMinWidthSync().then((data) => {
console.log(
`success to getMinWidthSync: `
+ JSON.stringify(data));
}).catch((error) => {
console.error(
`failed to getMinWidthSync because: `
+ JSON.stringify(error));
});
var minWidth = wallpaper.getMinWidthSync();
```
...
...
@@ -478,11 +462,7 @@ isChangeAllowed(): boolean
**示例:**
```
js
wallpaper.isChangeAllowed().then((data) => {
console.log(
`success to isChangeAllowed: `
+ JSON.stringify(data));
}).catch((error) => {
console.error(
`failed to isChangeAllowed because: `
+ JSON.stringify(error));
});
var isChangeAllowed = wallpaper.isChangeAllowed();
```
...
...
@@ -565,11 +545,7 @@ isUserChangeAllowed(): boolean
**示例:**
```
js
wallpaper.isUserChangeAllowed().then((data) => {
console.log(
`success to isUserChangeAllowed: `
+ JSON.stringify(data));
}).catch((error) => {
console.error(
`failed to isUserChangeAllowed because: `
+ JSON.stringify(error));
});
var isUserChangeAllowed = wallpaper.isUserChangeAllowed();
```
...
...
@@ -1034,11 +1010,7 @@ getFileSync(wallpaperType: WallpaperType): number;
**示例:**
```
js
wallpaper.getFileSync(wallpaper.WallpaperType.WALLPAPER_SYSTEM).then((data) => {
console.log(
`success to getFileSync: `
+ JSON.stringify(data));
}).catch((error) => {
console.error(
`failed to getFileSync because: `
+ JSON.stringify(error));
});
var file = wallpaper.getFileSync(wallpaper.WallpaperType.WALLPAPER_SYSTEM);
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录