Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8c107400
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,发现更多精彩内容 >>
未验证
提交
8c107400
编写于
3月 06, 2023
作者:
徐
徐斌
提交者:
Gitee
3月 06, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md.
Signed-off-by:
N
徐斌
<
xubin33@huawei.com
>
上级
818189d3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
114 addition
and
1 deletion
+114
-1
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+114
-1
未找到文件。
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
8c107400
...
...
@@ -2259,7 +2259,7 @@ onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationH
**示例:**
```
ts
// xxx.ets
// xxx.ets
API9
import
web_webview
from
'
@ohos.web.webview
'
@
Entry
@
Component
...
...
@@ -2296,6 +2296,107 @@ onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationH
}
```
**示例:**
```
ts
// xxx.ets API10
import
web_webview
from
'
@ohos.web.webview
'
import
bundle
from
'
@ohos.bundle
'
let
uri
=
""
;
export
default
class
CertManagerService
{
private
static
sInstance
:
CertManagerService
;
private
authUri
=
""
;
public
static
getInstance
():
CertManagerService
{
if
(
CertManagerService
.
sInstance
==
null
)
{
CertManagerService
.
sInstance
=
new
CertManagerService
();
}
return
CertManagerService
.
sInstance
;
}
async
grantAppPm
(
callback
)
{
let
message
=
''
;
//注:com.example.myapplication需要写实际应用名称
let
bundleInfo
=
await
bundle
.
getBundleInfo
(
"
com.example.myapplication
"
,
bundle
.
BundleFlag
.
GET_BUNDLE_DEFAULT
)
let
clientAppUid
=
bundleInfo
.
uid
let
appUid
=
clientAppUid
.
toString
()
//注:globalThis.AbilityContext需要在MainAbility.ts文件的onCreate函数里添加globalThis.AbilityContext = this.context
await
globalThis
.
AbilityContext
.
startAbilityForResult
(
{
bundleName
:
"
com.ohos.certmanager
"
,
abilityName
:
"
MainAbility
"
,
uri
:
"
requestAuthorize
"
,
parameters
:
{
appUid
:
appUid
,
//传入申请应用的appUid
}
})
.
then
((
data
)
=>
{
if
(
!
data
.
resultCode
)
{
this
.
authUri
=
data
.
want
.
parameters
.
authUri
;
//授权成功后获取返回的authUri
}
})
message
+=
"
after grantAppPm authUri:
"
+
this
.
authUri
;
uri
=
this
.
authUri
;
callback
(
message
)
}
}
@
Entry
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
();
@
State
message
:
string
=
'
Hello World
'
//message主要是调试观察使用
certManager
=
CertManagerService
.
getInstance
();
build
()
{
Row
()
{
Column
()
{
Row
()
{
//第一步:需要先进行授权,获取到uri
Button
(
'
GrantApp
'
)
.
onClick
(()
=>
{
this
.
certManager
.
grantAppPm
((
data
)
=>
{
this
.
message
=
data
;
});
})
//第二步:授权后,双向认证会通过onClientAuthenticationRequest回调将uri传给web进行认证
Button
(
"
ClientCertAuth
"
)
.
onClick
(()
=>
{
this
.
controller
.
loadUrl
(
'
https://www.example2.com
'
);
//支持双向认证的服务器网站
})
}
Web
({
src
:
'
https://www.example1.com
'
,
controller
:
this
.
controller
})
.
fileAccess
(
true
)
.
javaScriptAccess
(
true
)
.
domStorageAccess
(
true
)
.
onlineImageAccess
(
true
)
.
onClientAuthenticationRequest
((
event
)
=>
{
AlertDialog
.
show
({
title
:
'
ClientAuth
'
,
message
:
'
Text
'
,
confirm
:
{
value
:
'
Confirm
'
,
action
:
()
=>
{
event
.
handler
.
confirm
(
uri
);
}
},
cancel
:
()
=>
{
event
.
handler
.
cancel
();
}
})
})
}
}
.
width
(
'
100%
'
)
.
height
(
'
100%
'
)
}
}
```
### onPermissionRequest<sup>9+</sup>
onPermissionRequest(callback: (event?: { request: PermissionRequest }) => void)
...
...
@@ -3405,6 +3506,18 @@ confirm(priKeyFile : string, certChainFile : string): void
| priKeyFile | string | 是 | 存放私钥的文件,包含路径和文件名。 |
| certChainFile | string | 是 | 存放证书链的文件,包含路径和文件名。 |
### confirm<sup>10+</sup>
confirm(authUri : string): void
通知Web组件使用指定的凭据(从证书管理模块获得)。
**参数:**
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ------- | ------ | ---- | ------------- |
| authUri | string | 是 | 凭据的关键值。 |
### cancel<sup>9+</sup>
cancel(): void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录