Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
1ceee25e
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,发现更多精彩内容 >>
提交
1ceee25e
编写于
12月 09, 2022
作者:
C
chensi10
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modification of review comments
Signed-off-by:
N
chensi10
<
chensi52@huawei.com
>
上级
b17f4639
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
23 addition
and
12 deletion
+23
-12
zh-cn/application-dev/reference/apis/js-apis-webview.md
zh-cn/application-dev/reference/apis/js-apis-webview.md
+6
-6
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+17
-6
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-webview.md
浏览文件 @
1ceee25e
...
...
@@ -2226,15 +2226,15 @@ struct WebComponent {
setNetworkAvailable(enable: boolean): void
设置JavaScript中的window.navigator.
isOnl
ine属性。
设置JavaScript中的window.navigator.
onL
ine属性。
**系统能力:**
SystemCapability.Web.Webview.Core
**参数:**
| 参数名 | 类型 | 必填 | 说明
|
| ------ | ------- | ---- | ---------------------------------
--
|
| enable | boolean | 是 | 是否使能window.navigator.
isOnl
ine。 |
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------- | ---- | --------------------------------- |
| enable | boolean | 是 | 是否使能window.navigator.
onL
ine。 |
**错误码:**
...
...
@@ -2311,7 +2311,7 @@ struct WebComponent {
Button
(
'
hasImageCb
'
)
.
onClick
(()
=>
{
this
.
controller
.
hasImage
((
err
,
data
)
=>
{
console
.
log
(
"
hasImage:
"
+
JSON
.
stringify
(
data
)
);
console
.
log
(
"
hasImage:
"
+
data
);
});
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
...
...
@@ -2359,7 +2359,7 @@ struct WebComponent {
Button
(
'
hasImagePm
'
)
.
onClick
(()
=>
{
this
.
controller
.
hasImage
().
then
((
data
)
=>
{
console
.
info
(
"
hasImage:
"
+
JSON
.
stringify
(
data
)
)
console
.
info
(
"
hasImage:
"
+
data
)
});
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
1ceee25e
...
...
@@ -688,10 +688,11 @@ blockNetwork(block: boolean)
```
ts
// xxx.ets
import
web_webview
from
'
@ohos.web.webview
'
@
Entry
@
Component
struct
WebComponent
{
controller
:
WebController
=
new
Web
Controller
()
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
Webview
Controller
()
@
State
block
:
boolean
=
true
build
()
{
Column
()
{
...
...
@@ -2405,13 +2406,13 @@ onDataResubmitted(callback: (event: {handler: DataResubmissionHandler}) => void)
onPageVisible(callback: (event: {url: string}) => void)
设置
页面开始加载
时触发的回调函数。
设置
旧页面不再呈现,新页面即将可见
时触发的回调函数。
**参数:**
| 参数名 | 参数类型 | 参数描述 |
| ------ | -------- | ----------------------- |
| url | string |
开始加载的页面
url地址。 |
| 参数名 | 参数类型 | 参数描述
|
| ------ | -------- | -----------------------
--------------------------
|
| url | string |
旧页面不再呈现,新页面即将可见时新页面的
url地址。 |
**示例:**
...
...
@@ -2445,6 +2446,12 @@ onInterceptKeyEvent(callback: (event: KeyEvent) => boolean)
| ------ | ------------------------------------------------------- | -------------------- |
| event |
[
KeyEvent
](
ts-universal-events-key.md#keyevent对象说明
)
| 触发的KeyEvent事件。 |
**返回值:**
| 类型 | 说明 |
| ------- | ------------------------------------------------------------ |
| boolean | 回调函数通过返回boolean类型值来决定是否继续将该KeyEvent传入Webview内核。 |
**示例:**
```
ts
...
...
@@ -2458,7 +2465,11 @@ onInterceptKeyEvent(callback: (event: KeyEvent) => boolean)
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
onInterceptKeyEvent
((
event
)
=>
{
console
.
log
(
'
onInterceptKeyEvent:
'
+
JSON
.
stringify
(
event
))
if
(
event
.
keyCode
==
2017
||
event
.
keyCode
==
2018
)
{
console
.
info
(
`onInterceptKeyEvent get event.keyCode
${
event
.
keyCode
}
`
)
return
true
;
}
return
false
;
})
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录