Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8a6ac008
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看板
提交
8a6ac008
编写于
9月 15, 2022
作者:
I
i-am-a-little-bird
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ssl event
Signed-off-by:
N
i-am-a-little-bird
<
zhangbing6@huawei.com
>
上级
c29b5583
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
152 addition
and
10 deletion
+152
-10
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+152
-10
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
8a6ac008
...
...
@@ -1413,21 +1413,17 @@ onHttpAuthRequest(callback: (event?: { handler: HttpAuthHandler, host: string, r
```
### onSslErrorEventReceive<sup>9+</sup>
onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslError
}) => boolean
)
onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslError
}) => void
)
通知发生SSL错误。
通知
用户加载资源时
发生SSL错误。
**参数:**
| 参数名 | 参数类型 | 参数描述 |
| ------- | ------------------------------------ | ---------------- |
| handler |
[
SslErrorHandler
](
#sslerrorhandler9
)
| 通知Web组件用户操作行为。 |
| error |
[
SslError
](
sslerror枚举说明
)
| 错误码。 |
**返回值:**
| 类型 | 说明 |
| ------- | --------------------- |
| boolean | 返回false表示此次处理,否则成功。 |
**示例:**
```
ts
// xxx.ets
...
...
@@ -1461,6 +1457,71 @@ onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslE
}
```
### onClientAuthenticationRequest<sup>9+</sup>
onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationHandler, host : string, port : number, keyTypes : Array
<string>
, issuers : Array
<string>
}) => void)
通知发生SSL错误。
**参数:**
| 参数名 | 参数类型 | 参数描述 |
| ------- | ------------------------------------ | ---------------- |
| handler |
[
ClientAuthenticationHandler
](
#clientauthenticationhandler9
)
| 通知Web组件用户操作行为。|
| host | string | 请求证书的服务器的主机名。 |
| port | number | 请求证书的服务器的端口号。 |
| keyTypes| Array
<string>
| 可接受的非对称秘钥类型。 |
| issuers | Array
<string>
| 与私钥配证书可接受的颁发者。|
**示例:**
```
ts
// xxx.ets
import
web_webview
from
'
@ohos.web.webview
'
@
Entry
@
Component
struct
WebComponent
{
controller
:
WebController
=
new
WebController
();
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
onClientAuthenticationRequest
((
event
)
=>
{
AlertDialog
.
show
({
title
:
'
onClientAuthenticationRequest
'
,
message
:
'
text
'
,
primaryButton
:
{
value
:
'
confirm
'
,
action
:
()
=>
{
let
priKeyFile
:
string
=
"
/system/etc/ssl/certs/priKey.xxx
"
;
let
certChianFile
:
string
=
"
/system/etc/ssl/certs/certChian.xxx
"
;
event
.
handler
.
confirm
(
priKeyFile
,
certChianFile
);
}
},
secondaryButton
:
{
value
:
'
cancel
'
,
action
:
()
=>
{
event
.
handler
.
cancel
();
}
}
},
thirdButton
:
{
value
:
'
ignore
'
,
action
:
()
=>
{
event
.
handler
.
ignore
();
}
}
},
cancel
:
()
=>
{
event
.
handler
.
cancel
();
}
})
return
true
;
})
}
}
}
```
### onPermissionRequest<sup>9+</sup>
onPermissionRequest(callback: (event?: { request: PermissionRequest }) => void)
...
...
@@ -2069,20 +2130,47 @@ isHttpAuthInfoSaved(): boolean
## SslErrorHandler<sup>9+</sup>
Web组件返回的SSL错误通知用户处理功能对象。示例代码参考
[
onSslErrorEventReceive事件
](
#onsslerrorEventreceive9
)
。
Web组件返回的SSL错误通知
事件
用户处理功能对象。示例代码参考
[
onSslErrorEventReceive事件
](
#onsslerrorEventreceive9
)
。
### handleCancel<sup>9+</sup>
handleCancel(): void
通知Web组件
用户取消次
请求。
通知Web组件
取消此
请求。
### handleConfirm<sup>9+</sup>
handleConfirm(): void
通知Web组件用户继续使用SSL证书。
通知Web组件继续使用SSL证书。
## ClientAuthenticationHandler<sup>9+</sup>
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考
[
onClientAuthenticationRequest事件
](
#onClientAuthenticationRequest9
)
。
### confirm<sup>9+</sup>
confirm(priKeyFile : string, certChainFile : string): void
通知Web组件使用指定的私钥和客户端证书链。
**参数:**
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| -------- | ------ | ---- | ---- | ---------- |
| priKeyFile | string | 是 | - | 存放私钥的文件,包含路径和文件名。|
| certChainFile | string | 是 | - | 存放证书链的文件,包含路径和文件名。|
### cancel<sup>9+</sup>
cancel(): void
通知Web组件取消此请求,同时,保存用户策略,相同host和port的服务器请求采用相同策略,不重复上报客户端证书请求事件。
### ignore<sup>9+</sup>
ignore(): void
通知Web组件忽略本次请求。
## PermissionRequest<sup>9+</sup>
...
...
@@ -3150,6 +3238,60 @@ clearHistory(): void
}
```
### clearSslCache
clearSslCache(): void
清除记录的SSL证书错误事件用户操作首选项。
**示例:**
```
ts
// xxx.ets
@
Entry
@
Component
struct
WebComponent
{
controller
:
WebController
=
new
WebController
();
build
()
{
Column
()
{
Button
(
'
clearSslCache
'
)
.
onClick
(()
=>
{
this
.
controller
.
clearSslCache
();
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
}
}
}
```
### clearClientAuthenticationCache
clearClientAuthenticationCache(): void
清除记录的客户端证书请求事件用户操作首选项。
**示例:**
```
ts
// xxx.ets
@
Entry
@
Component
struct
WebComponent
{
controller
:
WebController
=
new
WebController
();
build
()
{
Column
()
{
Button
(
'
clearClientAuthenticationCache
'
)
.
onClick
(()
=>
{
this
.
controller
.
clearClientAuthenticationCache
();
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
}
}
}
```
### getCookieManager<sup>9+</sup>
getCookieManager(): WebCookie
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录