Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
53927993
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看板
提交
53927993
编写于
6月 14, 2023
作者:
Z
zWX1234017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
补充util模块部分接口可选参数默认值说明,xml模块示例代码修改
Signed-off-by:
N
zWX1234017
<
zhaoduwei3@huawei.com
>
上级
c72f3559
变更
17
隐藏空白更改
内联
并排
Showing
17 changed file
with
79 addition
and
67 deletion
+79
-67
zh-cn/application-dev/reference/apis/js-apis-arraylist.md
zh-cn/application-dev/reference/apis/js-apis-arraylist.md
+7
-7
zh-cn/application-dev/reference/apis/js-apis-buffer.md
zh-cn/application-dev/reference/apis/js-apis-buffer.md
+1
-1
zh-cn/application-dev/reference/apis/js-apis-deque.md
zh-cn/application-dev/reference/apis/js-apis-deque.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-hashmap.md
zh-cn/application-dev/reference/apis/js-apis-hashmap.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-hashset.md
zh-cn/application-dev/reference/apis/js-apis-hashset.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md
.../application-dev/reference/apis/js-apis-lightweightmap.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-lightweightset.md
.../application-dev/reference/apis/js-apis-lightweightset.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-linkedlist.md
zh-cn/application-dev/reference/apis/js-apis-linkedlist.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-list.md
zh-cn/application-dev/reference/apis/js-apis-list.md
+6
-6
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-queue.md
zh-cn/application-dev/reference/apis/js-apis-queue.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-stack.md
zh-cn/application-dev/reference/apis/js-apis-stack.md
+3
-3
zh-cn/application-dev/reference/apis/js-apis-treemap.md
zh-cn/application-dev/reference/apis/js-apis-treemap.md
+5
-5
zh-cn/application-dev/reference/apis/js-apis-treeset.md
zh-cn/application-dev/reference/apis/js-apis-treeset.md
+5
-5
zh-cn/application-dev/reference/apis/js-apis-util.md
zh-cn/application-dev/reference/apis/js-apis-util.md
+4
-4
zh-cn/application-dev/reference/apis/js-apis-vector.md
zh-cn/application-dev/reference/apis/js-apis-vector.md
+7
-7
zh-cn/application-dev/reference/apis/js-apis-xml.md
zh-cn/application-dev/reference/apis/js-apis-xml.md
+12
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-arraylist.md
浏览文件 @
53927993
...
...
@@ -379,15 +379,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| arrlist | ArrayList
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| arrlist | ArrayList
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
@@ -425,15 +425,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| arrlist | ArrayList
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| arrlist | ArrayList
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
@@ -468,7 +468,7 @@ sort(comparator?: (firstValue: T, secondValue: T) => number): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 回调函数。 |
| comparator | function | 否 | 回调函数
,默认为升序排序的回调函数
。 |
comparator的参数说明:
...
...
zh-cn/application-dev/reference/apis/js-apis-buffer.md
浏览文件 @
53927993
...
...
@@ -204,7 +204,7 @@ concat(list: Buffer[] | Uint8Array[], totalLength?: number): Buffer
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| list | Buffer[]
\|
Uint8Array[] | 是 | 实例数组。 |
| totalLength | number | 否 | 需要复制的总字节长度。 |
| totalLength | number | 否 | 需要复制的总字节长度
,默认值为0
。 |
**返回值:**
...
...
zh-cn/application-dev/reference/apis/js-apis-deque.md
浏览文件 @
53927993
...
...
@@ -242,15 +242,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| deque | Deque
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| deque | Deque
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-hashmap.md
浏览文件 @
53927993
...
...
@@ -459,14 +459,14 @@ forEach(callbackFn: (value?: V, key?: K, map?: HashMap<K, V>) => void, thisArg?:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | V | 否 | 当前遍历到的元素键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键。 |
| map | HashMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | V | 否 | 当前遍历到的元素键值对的值
,默认值为首个键值对的值
。 |
| key | K | 否 | 当前遍历到的元素键值对的键
,默认值为首个键值对的键
。 |
| map | HashMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-hashset.md
浏览文件 @
53927993
...
...
@@ -282,14 +282,14 @@ forEach(callbackFn: (value?: T, key?: T, set?: HashSet<T>) => void, thisAr
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 否 | 当前遍历到的元素键值对的值。 |
| key | T | 否 | 当前遍历到的元素键值对的
值(和value相同)
。 |
| set | HashSet
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | T | 否 | 当前遍历到的元素键值对的值
,默认值为首个键值对的值
。 |
| key | T | 否 | 当前遍历到的元素键值对的
键(和value相同),默认值为首个键值对的键
。 |
| set | HashSet
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md
浏览文件 @
53927993
...
...
@@ -724,14 +724,14 @@ forEach(callbackFn: (value?: V, key?: K, map?: LightWeightMap<K, V>) => void, th
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | V | 否 | 当前遍历到的元素键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键。 |
| map | LightWeightMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | V | 否 | 当前遍历到的元素键值对的值
,默认值为首个键值对的值
。 |
| key | K | 否 | 当前遍历到的元素键值对的键
,默认值为首个键值对的键
。 |
| map | LightWeightMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-lightweightset.md
浏览文件 @
53927993
...
...
@@ -588,14 +588,14 @@ forEach(callbackFn: (value?: T, key?: T, set?: LightWeightSet<T>) => void,
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 否 | 当前遍历到的元素。 |
| key | T | 否 | 当前遍历到的元素
(和value相同)
。 |
| set | LightWeightSet
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | T | 否 | 当前遍历到的元素
键值对的值,默认值为首个键值对的值
。 |
| key | T | 否 | 当前遍历到的元素
键值对的键(和value相同),默认值为首个键值对的键
。 |
| set | LightWeightSet
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-linkedlist.md
浏览文件 @
53927993
...
...
@@ -607,15 +607,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| LinkedList | LinkedList
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| LinkedList | LinkedList
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-list.md
浏览文件 @
53927993
...
...
@@ -427,15 +427,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| list | List
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| list | List
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
@@ -473,15 +473,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| List | List
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| List | List
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-plainarray.md
浏览文件 @
53927993
...
...
@@ -597,14 +597,14 @@ forEach(callbackFn: (value: T, index?: number, PlainArray?: PlainArray<T>)
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素
键值对的值
。 |
| index | number | 否 | 当前遍历到的
元素键值对的键
。 |
| PlainArray | PlainArray
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的
下标值,默认值为0
。 |
| PlainArray | PlainArray
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-queue.md
浏览文件 @
53927993
...
...
@@ -176,15 +176,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| Queue | Queue
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| Queue | Queue
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-stack.md
浏览文件 @
53927993
...
...
@@ -214,15 +214,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| stack | Stack
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| stack | Stack
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-treemap.md
浏览文件 @
53927993
...
...
@@ -48,7 +48,7 @@ TreeMap的构造函数。
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 用户自定义的比较函数。 |
| comparator | function | 否 | 用户自定义的比较函数
,默认值为hole(一个空白占位符),表示没有提供比较函数
。 |
**错误码:**
...
...
@@ -611,14 +611,14 @@ forEach(callbackFn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackFn被调用时用作this值。 |
| thisArg | Object | 否 | callbackFn被调用时用作this值
,默认值为当前实例对象
。 |
callbackFn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | V | 否 | 当前遍历到的元素键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键。 |
| map | TreeMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | V | 否 | 当前遍历到的元素键值对的值
,默认值为首个键值对的值
。 |
| key | K | 否 | 当前遍历到的元素键值对的键
,默认值为首个键值对的键
。 |
| map | TreeMap
<K
,
V
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-treeset.md
浏览文件 @
53927993
...
...
@@ -44,7 +44,7 @@ TreeSet的构造函数。
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 用户自定义的比较函数。 |
| comparator | function | 否 | 用户自定义的比较函数
,默认值为hole(一个空白占位符),表示没有提供比较函数
。 |
**错误码:**
...
...
@@ -484,14 +484,14 @@ forEach(callbackFn: (value?: T, key?: T, set?: TreeSet<T>) => void, thisAr
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackFn被调用时用作this值。 |
| thisArg | Object | 否 | callbackFn被调用时用作this值
,默认值为当前实例对象
。 |
callbackFn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 否 | 当前遍历到的value元素。 |
| key | T | 否 | 当前遍历到的key元素。 |
| set | TreeSet
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| value | T | 否 | 当前遍历到的value元素
,默认值为首个键值对的值
。 |
| key | T | 否 | 当前遍历到的key元素
,默认值为首个键值对的键
。 |
| set | TreeSet
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**错误码:**
...
...
zh-cn/application-dev/reference/apis/js-apis-util.md
浏览文件 @
53927993
...
...
@@ -586,7 +586,7 @@ result = textEncoder.encodeInto("\uD800¥¥");
### encodeIntoUint8Array<sup>9+</sup>
encodeIntoUint8Array(input: string, dest: Uint8Array
,
): { read: number; written: number }
encodeIntoUint8Array(input: string, dest: Uint8Array): { read: number; written: number }
放置生成的UTF-8编码文本。
...
...
@@ -617,7 +617,7 @@ result = that.encodeIntoUint8Array('abcd', dest)
### encodeInto<sup>(deprecated)</sup>
encodeInto(input: string, dest: Uint8Array
,
): { read: number; written: number }
encodeInto(input: string, dest: Uint8Array): { read: number; written: number }
放置生成的UTF-8编码文本。
...
...
@@ -1100,7 +1100,7 @@ constructor(capacity?: number)
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ---------------------------- |
| capacity | number | 否 | 指示要为缓冲区自定义的容量。 |
| capacity | number | 否 | 指示要为缓冲区自定义的容量
,默认值为64
。 |
**示例:**
...
...
@@ -3400,7 +3400,7 @@ constructor(capacity?: number)
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| capacity | number | 否 | 指示要为缓冲区自定义的容量。 |
| capacity | number | 否 | 指示要为缓冲区自定义的容量
,默认值为64
。 |
**示例:**
...
...
zh-cn/application-dev/reference/apis/js-apis-vector.md
浏览文件 @
53927993
...
...
@@ -304,15 +304,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| vector | Vector
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| vector | Vector
<
T
>
| 否 | 当前调用replaceAllElements方法的实例对象
,默认值为当前实例对象
。 |
**示例:**
...
...
@@ -342,15 +342,15 @@ thisArg?: Object): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackFn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值
,默认值为当前实例对象
。 |
callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| value | T | 是 | 当前遍历到的元素。 |
| index | number | 否 | 当前遍历到的下标值。 |
| vector | Vector
<
T
>
| 否 | 当前调用forEach方法的实例对象。 |
| index | number | 否 | 当前遍历到的下标值
,默认值为0
。 |
| vector | Vector
<
T
>
| 否 | 当前调用forEach方法的实例对象
,默认值为当前实例对象
。 |
**示例:**
...
...
@@ -378,7 +378,7 @@ sort(comparator?: (firstValue: T, secondValue: T) => number): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 回调函数。 |
| comparator | function | 否 | 回调函数
,默认值为当前实例对象
。 |
comparator的参数说明:
...
...
zh-cn/application-dev/reference/apis/js-apis-xml.md
浏览文件 @
53927993
...
...
@@ -380,6 +380,7 @@ constructor(buffer: ArrayBuffer | DataView, encoding?: string)
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<!DOCTYPE note [
\n
<!ENTITY foo "baa">]>
'
+
...
...
@@ -431,6 +432,7 @@ parse(option: ParseOptions): void
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -498,6 +500,7 @@ getColumnNumber(): number
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -541,6 +544,7 @@ getDepth(): number
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -587,6 +591,7 @@ getLineNumber(): number
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -630,6 +635,7 @@ getName(): string
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -672,6 +678,7 @@ getNamespace(): string
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -714,6 +721,7 @@ getPrefix(): string
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -757,6 +765,7 @@ getText(): string
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -799,6 +808,7 @@ isEmptyElementTag(): boolean
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -841,6 +851,7 @@ isWhitespace(): boolean
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
@@ -882,6 +893,7 @@ getAttributeCount(): number
**示例:**
```
js
import
util
from
'
@ohos.util
'
;
let
strXml
=
'
<?xml version="1.0" encoding="utf-8"?>
'
+
'
<note importance="high" logged="true">
'
+
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录