Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
47ed48e4
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看板
未验证
提交
47ed48e4
编写于
1月 10, 2023
作者:
O
openharmony_ci
提交者:
Gitee
1月 10, 2023
浏览文件
操作
浏览文件
下载
差异文件
!13019 更新文档【web子系统】webMessage支持arraybuffer数据类型
Merge pull request !13019 from echoorchid/dev_arraybuffer
上级
ed9a1b02
ff7f903a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
54 addition
and
8 deletion
+54
-8
zh-cn/application-dev/reference/apis/js-apis-webview.md
zh-cn/application-dev/reference/apis/js-apis-webview.md
+54
-8
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-webview.md
浏览文件 @
47ed48e4
...
@@ -101,7 +101,7 @@ struct WebComponent {
...
@@ -101,7 +101,7 @@ struct WebComponent {
### postMessageEvent
### postMessageEvent
postMessageEvent(message:
string
): void
postMessageEvent(message:
WebMessage
): void
发送消息。完整示例代码参考
[
postMessage
](
#postmessage
)
发送消息。完整示例代码参考
[
postMessage
](
#postmessage
)
...
@@ -111,7 +111,7 @@ postMessageEvent(message: string): void
...
@@ -111,7 +111,7 @@ postMessageEvent(message: string): void
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| ------- | ------ | ---- | :------------- |
| ------- | ------ | ---- | :------------- |
| message |
string
| 是 | 要发送的消息。 |
| message |
[
WebMessage
](
#webmessage
)
| 是 | 要发送的消息。 |
**错误码:**
**错误码:**
...
@@ -153,7 +153,7 @@ struct WebComponent {
...
@@ -153,7 +153,7 @@ struct WebComponent {
### onMessageEvent
### onMessageEvent
onMessageEvent(callback: (result:
string
) => void): void
onMessageEvent(callback: (result:
WebMessage
) => void): void
注册回调函数,接收HTML5侧发送过来的消息。完整示例代码参考
[
postMessage
](
#postmessage
)
注册回调函数,接收HTML5侧发送过来的消息。完整示例代码参考
[
postMessage
](
#postmessage
)
...
@@ -163,7 +163,7 @@ onMessageEvent(callback: (result: string) => void): void
...
@@ -163,7 +163,7 @@ onMessageEvent(callback: (result: string) => void): void
| 参数名 | 类型 | 必填 | 说明 |
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | ---- | :------------------- |
| -------- | -------- | ---- | :------------------- |
| result |
string
| 是 | 接收到的消息。 |
| result |
[
WebMessage
](
#webmessage
)
| 是 | 接收到的消息。 |
**错误码:**
**错误码:**
...
@@ -192,7 +192,17 @@ struct WebComponent {
...
@@ -192,7 +192,17 @@ struct WebComponent {
try
{
try
{
this
.
ports
=
this
.
controller
.
createWebMessagePorts
();
this
.
ports
=
this
.
controller
.
createWebMessagePorts
();
this
.
ports
[
1
].
onMessageEvent
((
msg
)
=>
{
this
.
ports
[
1
].
onMessageEvent
((
msg
)
=>
{
console
.
log
(
"
received message from html5, on message:
"
+
msg
);
if
(
typeof
(
msg
)
==
"
string
"
)
{
console
.
log
(
"
received string message from html5, string is:
"
+
msg
);
}
else
if
(
typeof
(
msg
)
==
"
object
"
)
{
if
(
msg
instanceof
ArrayBuffer
)
{
console
.
log
(
"
received arraybuffer from html5, length is:
"
+
msg
.
byteLength
);
}
else
{
console
.
log
(
"
not support
"
);
}
}
else
{
console
.
log
(
"
not support
"
);
}
})
})
}
catch
(
error
)
{
}
catch
(
error
)
{
console
.
error
(
`ErrorCode:
${
error
.
code
}
, Message:
${
error
.
message
}
`
);
console
.
error
(
`ErrorCode:
${
error
.
code
}
, Message:
${
error
.
message
}
`
);
...
@@ -1464,8 +1474,21 @@ struct WebComponent {
...
@@ -1464,8 +1474,21 @@ struct WebComponent {
// 2、将其中一个消息端口发送到HTML侧,由HTML侧保存并使用。
// 2、将其中一个消息端口发送到HTML侧,由HTML侧保存并使用。
this
.
controller
.
postMessage
(
'
__init_port__
'
,
[
this
.
ports
[
0
]],
'
*
'
);
this
.
controller
.
postMessage
(
'
__init_port__
'
,
[
this
.
ports
[
0
]],
'
*
'
);
// 3、另一个消息端口在应用侧注册回调事件。
// 3、另一个消息端口在应用侧注册回调事件。
this
.
ports
[
1
].
onMessageEvent
((
result
:
string
)
=>
{
this
.
ports
[
1
].
onMessageEvent
((
result
:
WebMessage
)
=>
{
var
msg
=
'
Got msg from HTML:
'
+
result
;
var
msg
=
'
Got msg from HTML:
'
;
if
(
typeof
(
result
)
==
"
string
"
)
{
console
.
log
(
"
received string message from html5, string is:
"
+
result
);
msg
=
msg
+
result
;
}
else
if
(
typeof
(
result
)
==
"
object
"
)
{
if
(
result
instanceof
ArrayBuffer
)
{
console
.
log
(
"
received arraybuffer from html5, length is:
"
+
result
.
byteLength
);
msg
=
msg
+
"
lenght is
"
+
result
.
byteLength
;
}
else
{
console
.
log
(
"
not support
"
);
}
}
else
{
console
.
log
(
"
not support
"
);
}
this
.
receivedFromHtml
=
msg
;
this
.
receivedFromHtml
=
msg
;
})
})
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -1523,7 +1546,21 @@ window.addEventListener('message', function (event) {
...
@@ -1523,7 +1546,21 @@ window.addEventListener('message', function (event) {
h5Port
=
event
.
ports
[
0
];
// 1. 保存从ets侧发送过来的端口
h5Port
=
event
.
ports
[
0
];
// 1. 保存从ets侧发送过来的端口
h5Port
.
onmessage
=
function
(
event
)
{
h5Port
.
onmessage
=
function
(
event
)
{
// 2. 接收ets侧发送过来的消息.
// 2. 接收ets侧发送过来的消息.
var
msg
=
'
Got message from ets:
'
+
event
.
data
;
var
msg
=
'
Got message from ets:
'
;
var
result
=
event
.
data
;
if
(
typeof
(
result
)
==
"
string
"
)
{
console
.
log
(
"
received string message from html5, string is:
"
+
result
);
msg
=
msg
+
result
;
}
else
if
(
typeof
(
result
)
==
"
object
"
)
{
if
(
result
instanceof
ArrayBuffer
)
{
console
.
log
(
"
received arraybuffer from html5, length is:
"
+
result
.
byteLength
);
msg
=
msg
+
"
lenght is
"
+
result
.
byteLength
;
}
else
{
console
.
log
(
"
not support
"
);
}
}
else
{
console
.
log
(
"
not support
"
);
}
output
.
innerHTML
=
msg
;
output
.
innerHTML
=
msg
;
}
}
}
}
...
@@ -4428,6 +4465,15 @@ Web组件返回的请求/响应头对象。
...
@@ -4428,6 +4465,15 @@ Web组件返回的请求/响应头对象。
| type |
[
HitTestTypeV9
](
#hittesttypev9
)
| 是 | 否 | 当前被点击区域的元素类型。|
| type |
[
HitTestTypeV9
](
#hittesttypev9
)
| 是 | 否 | 当前被点击区域的元素类型。|
| extra | string | 是 | 否 |点击区域的附加参数信息。若被点击区域为图片或链接,则附加参数信息为其url地址。 |
| extra | string | 是 | 否 |点击区域的附加参数信息。若被点击区域为图片或链接,则附加参数信息为其url地址。 |
## WebMessage
用于描述
[
WebMessagePort
](
#webmessageport
)
所支持的数据类型。
| 类型 | 说明 |
| -------- | -------------------------------------- |
| string | 字符串类型数据。 |
| ArrayBuffer | 二进制类型数据。 |
## WebStorageOrigin
## WebStorageOrigin
提供Web SQL数据库的使用信息。
提供Web SQL数据库的使用信息。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录