Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
0f76c253
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,发现更多精彩内容 >>
未验证
提交
0f76c253
编写于
4月 29, 2022
作者:
O
openharmony_ci
提交者:
Gitee
4月 29, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3529 【API】【settings】modify format
Merge pull request !3529 from 吕晓强/fix_format_release
上级
d0062e15
303a5ff8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
8 deletion
+8
-8
en/application-dev/reference/apis/js-apis-settings.md
en/application-dev/reference/apis/js-apis-settings.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-settings.md
zh-cn/application-dev/reference/apis/js-apis-settings.md
+4
-4
未找到文件。
en/application-dev/reference/apis/js-apis-settings.md
浏览文件 @
0f76c253
...
...
@@ -9,7 +9,7 @@ This module provides APIs for setting data items.
## Modules to Import
```
```
typescript
import
settings
from
'
@ohos.settings
'
;
```
...
...
@@ -34,7 +34,7 @@ Obtains the URI of a data item.
| string | URI of the data item.|
-
Example
```
```
typescript
// Obtain the URI of a data item.
let
urivar
=
settings
.
getUriSync
(
'
settings.screen.brightness
'
);
```
...
...
@@ -61,7 +61,7 @@ Obtains the value of a data item.
| string | Value of the data item.|
-
Example
```
```
typescript
import
featureAbility
from
'
@ohos.featureAbility
'
;
// Obtain the value of 'settings.screen.brightness' (this data item already exists in the database).
...
...
@@ -96,7 +96,7 @@ If the specified data item exists in the database, the **setValueSync** method u
| boolean | Result indicating whether the value is set successfully. Returns
**true**
if the value is set successfully; returns
**false**
otherwise.|
-
Example
```
```
typescript
import
featureAbility
from
'
@ohos.featureAbility
'
;
// Update the value of 'settings.screen.brightness'. (As this data item exists in the database, the setValueSync
...
...
zh-cn/application-dev/reference/apis/js-apis-settings.md
浏览文件 @
0f76c253
...
...
@@ -9,7 +9,7 @@
## 导入模块
```
```
typescript
import
settings
from
'
@ohos.settings
'
;
```
...
...
@@ -34,7 +34,7 @@ getUriSync(name: string): string
| string | 数据项的URI。 |
-
示例:
```
```
typescript
// 获取数据项的URI
let
urivar
=
settings
.
getUriSync
(
'
settings.screen.brightness
'
);
```
...
...
@@ -61,7 +61,7 @@ getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: strin
| string | 返回数据项的值。 |
-
示例:
```
```
typescript
import
featureAbility
from
'
@ohos.featureAbility
'
;
//获取数据项亮度的值(该数据项在数据库中已存在)
...
...
@@ -96,7 +96,7 @@ setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string):
| boolean | 返回设置数据项的值是否成功的结果。true表示设置成功,false则表示设置失败。 |
-
示例:
```
```
typescript
import
featureAbility
from
'
@ohos.featureAbility
'
;
//更新数据项亮度的值(该数据项在数据库中已存在,故setValueSync方法将更新该数据项的值)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录