Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
2de7a6da
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,发现更多精彩内容 >>
提交
2de7a6da
编写于
3月 29, 2023
作者:
L
lixiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
onUrlLoadIntercept is obsolete and onLoadIntercept is used instead
Signed-off-by:
N
lixiang
<
lixiang380@huawei.com
>
上级
9a9e637f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
8 deletion
+21
-8
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+21
-8
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
2de7a6da
...
@@ -1232,7 +1232,7 @@ struct WebComponent {
...
@@ -1232,7 +1232,7 @@ struct WebComponent {
}
}
```
```
### allowWindowOpenMethod<sup>
9
+</sup>
### allowWindowOpenMethod<sup>
10
+</sup>
allowWindowOpenMethod(flag: boolean)
allowWindowOpenMethod(flag: boolean)
...
@@ -2080,11 +2080,12 @@ onScaleChange(callback: (event: {oldScale: number, newScale: number}) => void)
...
@@ -2080,11 +2080,12 @@ onScaleChange(callback: (event: {oldScale: number, newScale: number}) => void)
}
}
```
```
### onUrlLoadIntercept
### onUrlLoadIntercept
<sup>(deprecated)</sup>
onUrlLoadIntercept(callback: (event?: { data:string | WebResourceRequest }) => boolean)
onUrlLoadIntercept(callback: (event?: { data:string | WebResourceRequest }) => boolean)
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
从API version 10开始不在维护,建议使用
[
onLoadIntercept<sup>10+</sup>
](
#onloadintercept10
)
代替。
**参数:**
**参数:**
...
@@ -3100,7 +3101,7 @@ onAudioStateChanged(callback: (event: { playing: boolean }) => void)
...
@@ -3100,7 +3101,7 @@ onAudioStateChanged(callback: (event: { playing: boolean }) => void)
### onLoadIntercept<sup>10+</sup>
### onLoadIntercept<sup>10+</sup>
onLoadIntercept(callback: (event?: {
request
: WebResourceRequest }) => boolean)
onLoadIntercept(callback: (event?: {
data
: WebResourceRequest }) => boolean)
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
...
@@ -3130,11 +3131,11 @@ onLoadIntercept(callback: (event?: { request: WebResourceRequest }) => boolean)
...
@@ -3130,11 +3131,11 @@ onLoadIntercept(callback: (event?: { request: WebResourceRequest }) => boolean)
build
()
{
build
()
{
Column
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
on
Url
LoadIntercept
((
event
)
=>
{
.
onLoadIntercept
((
event
)
=>
{
console
.
log
(
'
url:
'
+
event
.
request
.
getRequestUrl
())
console
.
log
(
'
url:
'
+
event
.
data
.
getRequestUrl
())
console
.
log
(
'
isMainFrame:
'
+
event
.
request
.
isMainFrame
())
console
.
log
(
'
isMainFrame:
'
+
event
.
data
.
isMainFrame
())
console
.
log
(
'
isRedirect:
'
+
event
.
request
.
isRedirect
())
console
.
log
(
'
isRedirect:
'
+
event
.
data
.
isRedirect
())
console
.
log
(
'
isRequestGesture:
'
+
event
.
request
.
isRequestGesture
())
console
.
log
(
'
isRequestGesture:
'
+
event
.
data
.
isRequestGesture
())
return
true
return
true
})
})
}
}
...
@@ -3340,6 +3341,18 @@ isRequestGesture(): boolean
...
@@ -3340,6 +3341,18 @@ isRequestGesture(): boolean
| ------- | -------------------- |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
### getRequestMethod<sup>9+</sup>
getRequestMethod(): string
获取请求方法。
**返回值:**
| 类型 | 说明 |
| ------- | -------------------- |
| string | 返回请求方法。 |
## Header
## Header
Web组件返回的请求/响应头对象。
Web组件返回的请求/响应头对象。
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录