Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
16d1c1c8
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,发现更多精彩内容 >>
未验证
提交
16d1c1c8
编写于
6月 05, 2023
作者:
O
openharmony_ci
提交者:
Gitee
6月 05, 2023
浏览文件
操作
浏览文件
下载
差异文件
!19156 udmf的apiReference资料示例代码编译问题修复
Merge pull request !19156 from dboy190/apiReference_bug_fix
上级
99e6653c
0d47990a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
+8
-8
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
浏览文件 @
16d1c1c8
...
...
@@ -109,7 +109,7 @@ let text = new UDMF.PlainText();
text
.
textContent
=
'
this is textContent of text
'
;
let
unifiedData
=
new
UDMF
.
UnifiedData
(
text
);
let
link
=
new
UDMF
.
Hyper
L
ink
();
let
link
=
new
UDMF
.
Hyper
l
ink
();
link
.
url
=
'
www.XXX.com
'
;
unifiedData
.
addRecord
(
link
);
...
...
@@ -120,8 +120,8 @@ for (let i = 0; i < records.length; i++) {
let
plainText
=
<
UDMF
.
PlainText
>
(
record
);
console
.
info
(
`textContent:
${
plainText
.
textContent
}
`
);
}
else
if
(
record
.
getType
()
==
UDMF
.
UnifiedDataType
.
HYPERLINK
)
{
let
hyper
Link
=
<
UDMF
.
HYPERLINK
>
(
record
);
console
.
info
(
`linkUrl:
${
hyper
L
ink
.
url
}
`
);
let
hyper
link
=
<
UDMF
.
Hyperlink
>
(
record
);
console
.
info
(
`linkUrl:
${
hyper
l
ink
.
url
}
`
);
}
}
```
...
...
@@ -155,7 +155,7 @@ getType(): string
| 类型 | 说明 |
| ------ |------------------------------------------------------|
| string | 当前数据记录对应的具体数据类型,见
[
UnifiedDataType
](
#
UnifiedDataT
ype
)
。|
| string | 当前数据记录对应的具体数据类型,见
[
UnifiedDataType
](
#
unifieddatat
ype
)
。|
**示例:**
...
...
@@ -173,7 +173,7 @@ if (records[0].getType() == UDMF.UnifiedDataType.PLAIN_TEXT) {
## Text
文本类型数据,是
[
UnifiedRecord
](
#unifiedrecord
)
的子类,也是文本类型数据的基类,用于描述文本类数据,推荐开发者优先使用Text的子类描述数据,如
[
PlainText
](
#plaintext
)
、
[
Hyper
L
ink
](
#hyperlink
)
、
[
HTML
](
#html
)
等具体子类。
文本类型数据,是
[
UnifiedRecord
](
#unifiedrecord
)
的子类,也是文本类型数据的基类,用于描述文本类数据,推荐开发者优先使用Text的子类描述数据,如
[
PlainText
](
#plaintext
)
、
[
Hyper
l
ink
](
#hyperlink
)
、
[
HTML
](
#html
)
等具体子类。
**系统能力**
:SystemCapability.DistributedDataManager.UDMF.Core
...
...
@@ -211,7 +211,7 @@ text.textContent = 'this is textContent';
text
.
abstract
=
'
this is abstract
'
;
```
## Hyper
L
ink
## Hyper
l
ink
超链接类型数据,是
[
Text
](
#text
)
的子类,用于描述超链接类型数据。
...
...
@@ -225,7 +225,7 @@ text.abstract = 'this is abstract';
**示例:**
```
js
let
link
=
new
UDMF
.
Hyper
L
ink
();
let
link
=
new
UDMF
.
Hyper
l
ink
();
link
.
url
=
'
www.XXX.com
'
;
link
.
description
=
'
this is description
'
;
```
...
...
@@ -335,7 +335,7 @@ SystemDefinedRecord是[UnifiedRecord](#unifiedrecord)的子类,也是OpenHarmo
**示例:**
```
js
let
sdr
=
new
UDMF
.
Syste
nDefinedReoc
rd
();
let
sdr
=
new
UDMF
.
Syste
mDefinedReco
rd
();
let
u8Array
=
new
Uint8Array
([
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
]);
sdr
.
details
=
{
title
:
'
recordTitle
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录