Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
265b8b1b
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,发现更多精彩内容 >>
未验证
提交
265b8b1b
编写于
2月 25, 2023
作者:
O
openharmony_ci
提交者:
Gitee
2月 25, 2023
浏览文件
操作
浏览文件
下载
差异文件
!15063 修改promisify示例代码,uuid函数描述,增加convertToJSObject接口的错误码捕获【monthly_20221018】
Merge pull request !15063 from jwx1068251/monthly_20221018
上级
7919a70a
db6baeaa
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
73 addition
and
48 deletion
+73
-48
zh-cn/application-dev/reference/apis/js-apis-convertxml.md
zh-cn/application-dev/reference/apis/js-apis-convertxml.md
+21
-15
zh-cn/application-dev/reference/apis/js-apis-util.md
zh-cn/application-dev/reference/apis/js-apis-util.md
+52
-33
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-convertxml.md
浏览文件 @
265b8b1b
...
...
@@ -47,21 +47,27 @@ convertToJSObject(xml: string, options?: ConvertOptions) : Object
**示例:**
```
js
let
xml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
'
<title>Happy</title>
'
+
'
<todo>Work</todo>
'
+
'
<todo>Play</todo>
'
+
'
</note>
'
;
let
conv
=
new
convertxml
.
ConvertXML
()
let
options
=
{
trim
:
false
,
declarationKey
:
"
_declaration
"
,
instructionKey
:
"
_instruction
"
,
attributesKey
:
"
_attributes
"
,
textKey
:
"
_text
"
,
cdataKey
:
"
_cdata
"
,
doctypeKey
:
"
_doctype
"
,
commentKey
:
"
_comment
"
,
parentKey
:
"
_parent
"
,
typeKey
:
"
_type
"
,
nameKey
:
"
_name
"
,
elementsKey
:
"
_elements
"
}
let
result
=
JSON
.
stringify
(
conv
.
convertToJSObject
(
xml
,
options
));
console
.
log
(
result
);
try
{
let
xml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
'
<title>Happy</title>
'
+
'
<todo>Work</todo>
'
+
'
<todo>Play</todo>
'
+
'
</note>
'
;
let
conv
=
new
convertxml
.
ConvertXML
()
let
options
=
{
trim
:
false
,
declarationKey
:
"
_declaration
"
,
instructionKey
:
"
_instruction
"
,
attributesKey
:
"
_attributes
"
,
textKey
:
"
_text
"
,
cdataKey
:
"
_cdata
"
,
doctypeKey
:
"
_doctype
"
,
commentKey
:
"
_comment
"
,
parentKey
:
"
_parent
"
,
typeKey
:
"
_type
"
,
nameKey
:
"
_name
"
,
elementsKey
:
"
_elements
"
}
let
result
=
JSON
.
stringify
(
conv
.
convertToJSObject
(
xml
,
options
));
console
.
log
(
result
);
}
catch
(
e
)
{
console
.
log
(
e
.
toString
());
}
// 输出(宽泛型)
// {"_declaration":{"_attributes":{"version":"1.0","encoding":"utf-8"}},"_elements":[{"_type":"element","_name":"note","_attributes":{"importance":"high","logged":"true"},"_elements":[{"_type":"element","_name":"title","_elements":[{"_type":"text","_text":"Happy"}]},{"_type":"element","_name":"todo","_elements":[{"_type":"text","_text":"Work"}]},{"_type":"element","_name":"todo","_elements":[{"_type":"text","_text":"Play"}]}]}]}
```
...
...
zh-cn/application-dev/reference/apis/js-apis-util.md
浏览文件 @
265b8b1b
...
...
@@ -26,7 +26,7 @@ format(format: string, ...args: Object[]): string
| 参数名 | 类型 | 必填 | 说明 |
| ------- | -------- | ---- | -------------- |
| format | string | 是 | 式样化字符串。 |
| ...args | Object[] | 否 | 替换式样化字符串通配符的数据
。
|
| ...args | Object[] | 否 | 替换式样化字符串通配符的数据
,此参数缺失时,默认返回第一个参数。
|
**返回值:**
...
...
@@ -69,6 +69,20 @@ let result = util.errnoToString(errnum);
console
.
log
(
"
result =
"
+
result
);
```
**部分错误码及信息示例:**
| 错误码 | 信息 |
| ------ | -------------------------------- |
| -1 | operation not permitted |
| -2 | no such file or directory |
| -3 | no such process |
| -4 | interrupted system call |
| -5 | i/o error |
| -11 | resource temporarily unavailable |
| -12 | not enough memory |
| -13 | permission denied |
| -100 | network is down |
## util.callbackWrapper
callbackWrapper(original: Function): (err: Object, value: Object )=
>
void
...
...
@@ -92,15 +106,14 @@ callbackWrapper(original: Function): (err: Object, value: Object )=>void
**示例:**
```
js
async
function
promiseFn
()
{
return
Promise
.
reject
(
'
value
'
);
}
let
err
=
"
type err
"
;
let
cb
=
util
.
callbackWrapper
(
promiseFn
);
cb
((
err
,
ret
)
=>
{
console
.
log
(
err
);
console
.
log
(
ret
);
},
err
)
async
function
fn
()
{
return
'
hello world
'
;
}
let
cb
=
util
.
callbackWrapper
(
fn
);
cb
((
err
,
ret
)
=>
{
if
(
err
)
throw
err
;
console
.
log
(
ret
);
});
```
## util.promisify<sup>9+</sup>
...
...
@@ -126,24 +139,30 @@ promisify(original: (err: Object, value: Object) => void): Function
**示例:**
```
js
function
aysnFun
(
str1
,
str2
)
{
if
(
typeof
str1
===
'
object
'
&&
typeof
str2
===
'
object
'
)
{
return
str2
}
else
{
return
str1
}
}
let
newPromiseObj
=
util
.
promisify
(
aysnFun
);
newPromiseObj
({
err
:
"
type error
"
},
{
value
:
'
HelloWorld
'
}).
then
(
res
=>
{
console
.
log
(
res
);
})
function
fun
(
num
,
callback
)
{
if
(
typeof
num
===
'
number
'
)
{
callback
(
null
,
num
+
3
);
}
else
{
callback
(
"
type err
"
);
}
}
const
addCall
=
util
.
promisify
(
fun
);
(
async
()
=>
{
try
{
let
res
=
await
addCall
(
2
);
console
.
log
(
res
);
}
catch
(
err
)
{
console
.
log
(
err
);
}
})();
```
## util.
r
andomUUID<sup>9+</sup>
## util.
generateR
andomUUID<sup>9+</sup>
r
andomUUID(entropyCache?: boolean): string
generateR
andomUUID(entropyCache?: boolean): string
使用加密安全随机数生成器生成随机的RFC 4122版本4的
UUID。
使用加密安全随机数生成器生成随机的RFC 4122版本4的
string类型
UUID。
**系统能力:**
SystemCapability.Utils.Lang
...
...
@@ -162,17 +181,17 @@ randomUUID(entropyCache?: boolean): string
**示例:**
```
js
let
uuid
=
util
.
r
andomUUID
(
true
);
let
uuid
=
util
.
generateR
andomUUID
(
true
);
console
.
log
(
"
RFC 4122 Version 4 UUID:
"
+
uuid
);
// 输出:
// RFC 4122 Version 4 UUID:88368f2a-d5db-47d8-a05f-534fab0a0045
```
## util.
r
andomBinaryUUID<sup>9+</sup>
## util.
generateR
andomBinaryUUID<sup>9+</sup>
r
andomBinaryUUID(entropyCache?: boolean): Uint8Array
generateR
andomBinaryUUID(entropyCache?: boolean): Uint8Array
使用加密安全随机数生成器生成随机的RFC 4122版本4的
UUID。
使用加密安全随机数生成器生成随机的RFC 4122版本4的
Uint8Array类型
UUID。
**系统能力:**
SystemCapability.Utils.Lang
...
...
@@ -191,7 +210,7 @@ randomBinaryUUID(entropyCache?: boolean): Uint8Array
**示例:**
```
js
let
uuid
=
util
.
r
andomBinaryUUID
(
true
);
let
uuid
=
util
.
generateR
andomBinaryUUID
(
true
);
console
.
log
(
JSON
.
stringify
(
uuid
));
// 输出:
// 138,188,43,243,62,254,70,119,130,20,235,222,199,164,140,150
...
...
@@ -201,7 +220,7 @@ randomBinaryUUID(entropyCache?: boolean): Uint8Array
parseUUID(uuid: string): Uint8Array
从字符串中解析
UUID,如RFC 4122版本4中所述。
将generateRandomUUID生成的string类型UUID转换为generateRandomBinaryUUID生成的Uint8Array类型
UUID,如RFC 4122版本4中所述。
**系统能力:**
SystemCapability.Utils.Lang
...
...
@@ -243,7 +262,7 @@ printf(format: string, ...args: Object[]): string
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| format | string | 是 | 式样化字符串。 |
| ...args | Object[] | 否 | 替换式样化字符串通配符的数据。 |
| ...args | Object[] | 否 | 替换式样化字符串通配符的数据
,此参数缺失时,默认返回第一个参数
。 |
**返回值:**
...
...
@@ -361,8 +380,8 @@ create(encoding?: string,options?: { fatal?: boolean; ignoreBOM?: boolean }): Te
**示例:**
```
js
let
textDecoder
=
new
util
.
TextDecoder
(
)
textDecoder
.
create
(
'
utf-8
'
,
{
ignoreBOM
:
true
});
let
result
=
util
.
TextDecoder
.
create
(
'
utf-8
'
,
{
ignoreBOM
:
true
}
)
let
retStr
=
result
.
encoding
```
### decodeWithStream<sup>9+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录