Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
6f2fabf5
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看板
提交
6f2fabf5
编写于
6月 08, 2023
作者:
C
chengjinsong2
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改napi文档
Signed-off-by:
N
chengjinsong2
<
chengjinsong2@huawei.com
>
上级
ec800639
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
20 deletion
+20
-20
zh-cn/application-dev/reference/apis/js-apis-system-parameter.md
...pplication-dev/reference/apis/js-apis-system-parameter.md
+10
-10
zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md
...ion-dev/reference/apis/js-apis-system-parameterEnhance.md
+10
-10
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-system-parameter.md
浏览文件 @
6f2fabf5
...
...
@@ -30,13 +30,13 @@ getSync(key: string, def?: string): string
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | string | 是 | 待查询的系统参数Key。 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined(返回空)
或自定义的任意值 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined
或自定义的任意值 |
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| string | 系统参数值
,若key不存在,返回默认值。若未指定默认值
,返回空字符串。 |
| string | 系统参数值
。
<br>
若key存在,返回设定的值。
<br>
若key不存在且def有效,返回def;若未指定def或def无效(如undefined)
,返回空字符串。 |
**示例:**
...
...
@@ -44,7 +44,7 @@ getSync(key: string, def?: string): string
try
{
var
info
=
systemparameter
.
getSync
(
"
const.ohos.apiversion
"
);
console
.
log
(
JSON
.
stringify
(
info
));
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
getSync unexpected error:
"
+
e
);
}
```
...
...
@@ -74,7 +74,7 @@ try {
}
else
{
console
.
log
(
"
get test.parameter.key value err:
"
+
err
.
code
)
}});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
);
}
```
...
...
@@ -106,7 +106,7 @@ try {
console
.
log
(
"
get test.parameter.key value err:
"
+
err
.
code
)
}
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
)
}
```
...
...
@@ -124,7 +124,7 @@ get(key: string, def?: string): Promise<string>
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | string | 是 | 待查询的系统参数Key。 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined(返回空)
或自定义的任意值 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined
或自定义的任意值 |
**返回值:**
...
...
@@ -142,7 +142,7 @@ try {
}).
catch
(
function
(
err
)
{
console
.
log
(
"
get test.parameter.key error:
"
+
err
.
code
);
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
);
}
```
...
...
@@ -172,7 +172,7 @@ setSync(key: string, value: string): void
```
ts
try
{
systemparameter
.
setSync
(
"
test.parameter.key
"
,
"
default
"
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
...
...
@@ -207,7 +207,7 @@ try {
}
else
{
console
.
log
(
"
set test.parameter.key value err:
"
+
err
.
code
)
}});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
...
...
@@ -247,7 +247,7 @@ try {
}).
catch
(
function
(
err
)
{
console
.
log
(
"
set test.parameter.key error:
"
+
err
.
code
);
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md
浏览文件 @
6f2fabf5
...
...
@@ -29,13 +29,13 @@ getSync(key: string, def?: string): string
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | string | 是 | 待查询的系统参数Key。 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined(返回空)
或自定义的任意值 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined
或自定义的任意值 |
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| string | 系统参数值
,若key不存在,返回默认值。若未指定默认值,返回空字符串
。 |
| string | 系统参数值
<br>
若key存在,返回设定的值。
<br>
若key不存在且def有效,返回def;若未指定def或def无效(如undefined),抛异常
。 |
**示例:**
...
...
@@ -43,7 +43,7 @@ getSync(key: string, def?: string): string
try
{
var
info
=
systemparameter
.
getSync
(
"
const.ohos.apiversion
"
);
console
.
log
(
JSON
.
stringify
(
info
));
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
getSync unexpected error:
"
+
e
);
}
```
...
...
@@ -73,7 +73,7 @@ try {
}
else
{
console
.
log
(
"
get test.parameter.key value err:
"
+
err
.
code
)
}});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
);
}
```
...
...
@@ -105,7 +105,7 @@ try {
console
.
log
(
"
get test.parameter.key value err:
"
+
err
.
code
)
}
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
)
}
```
...
...
@@ -123,7 +123,7 @@ get(key: string, def?: string): Promise<string>
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | string | 是 | 待查询的系统参数Key。 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined(返回空)
或自定义的任意值 |
| def | string | 否 | def
为所要获取的系统参数的默认值
<br>
def为可选参数,仅当系统参数不存在时生效
<br>
def可以传undefined
或自定义的任意值 |
**返回值:**
...
...
@@ -141,7 +141,7 @@ try {
}).
catch
(
function
(
err
)
{
console
.
log
(
"
get test.parameter.key error:
"
+
err
.
code
);
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
get unexpected error:
"
+
e
);
}
```
...
...
@@ -166,7 +166,7 @@ setSync(key: string, value: string): void
```
ts
try
{
systemparameter
.
setSync
(
"
test.parameter.key
"
,
"
default
"
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
...
...
@@ -197,7 +197,7 @@ try {
}
else
{
console
.
log
(
"
set test.parameter.key value err:
"
+
err
.
code
)
}});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
...
...
@@ -233,7 +233,7 @@ try {
}).
catch
(
function
(
err
)
{
console
.
log
(
"
set test.parameter.key error:
"
+
err
.
code
);
});
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
"
set unexpected error:
"
+
e
);
}
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录