Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
bbd09dcd
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看板
提交
bbd09dcd
编写于
6月 03, 2023
作者:
D
dboy190
1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix example code compile error
Signed-off-by:
N
dboy190
<
dulei1@huawei.com
>
上级
3fd3de3b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
7 deletion
+7
-7
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
+7
-7
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-data-udmf.md
浏览文件 @
bbd09dcd
...
...
@@ -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
}
`
);
}
}
```
...
...
@@ -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
'
,
...
...
Miykael_xxm
🚴
@xiongjiamu
mentioned in commit
49ec3d55
·
6月 11, 2023
mentioned in commit
49ec3d55
mentioned in commit 49ec3d55ca6a09168c56313c2b32ebd6456bc9d3
开关提交列表
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录