Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
514ac5f2
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,发现更多精彩内容 >>
提交
514ac5f2
编写于
1月 05, 2023
作者:
L
laosan_ted
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
webview fix docs problem
Signed-off-by:
N
laosan_ted
<
wangruichang@huawei.com
>
上级
c94beccb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
24 addition
and
37 deletion
+24
-37
zh-cn/application-dev/reference/apis/js-apis-webview.md
zh-cn/application-dev/reference/apis/js-apis-webview.md
+9
-23
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+15
-14
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-webview.md
浏览文件 @
514ac5f2
...
...
@@ -1826,7 +1826,7 @@ struct WebComponent {
getTitle(): string
获取
文件选择器
标题。
获取
当前网页的
标题。
**系统能力:**
SystemCapability.Web.Webview.Core
...
...
@@ -1834,7 +1834,7 @@ getTitle(): string
| 类型 | 说明 |
| ------ | -------------------- |
| string |
返回文件选择器
标题。 |
| string |
当前网页的
标题。 |
**错误码:**
...
...
@@ -2527,7 +2527,6 @@ setNetworkAvailable(enable: boolean): void
| 错误码ID | 错误信息 |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 401 | Invalid input parameter. |
**示例:**
...
...
@@ -2558,7 +2557,7 @@ struct WebComponent {
### hasImage
hasImage(callback: AsyncCallback
<boolean>
): void
hasImage(callback: AsyncCallback
\
<
boolean>): void
通过Callback方式异步查找当前页面是否存在图像。
...
...
@@ -2577,7 +2576,6 @@ hasImage(callback: AsyncCallback<boolean>): void
| 错误码ID | 错误信息 |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |
| 401 | Invalid input parameter. |
**示例:**
...
...
@@ -2595,7 +2593,7 @@ struct WebComponent {
Button
(
'
hasImageCb
'
)
.
onClick
(()
=>
{
try
{
this
.
controller
.
hasImage
((
err
,
data
)
=>
{
this
.
controller
.
hasImage
((
err
or
,
data
)
=>
{
if
(
error
)
{
console
.
info
(
`hasImage error: `
+
JSON
.
stringify
(
error
))
return
;
...
...
@@ -2614,7 +2612,7 @@ struct WebComponent {
### hasImage
hasImage(): Promise
<boolean>
hasImage(): Promise
\
<
boolean>
通过Promise方式异步查找当前页面是否存在图像。
...
...
@@ -2633,7 +2631,6 @@ hasImage(): Promise<boolean>
| 错误码ID | 错误信息 |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |
| 401 | Invalid input parameter. |
**示例:**
...
...
@@ -2679,7 +2676,7 @@ removeCache(clearRom: boolean): void
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------- | ---- | -------------------------------------------------------- |
| clearRom | boolean | 是 |
是否同时清除rom和ram中的缓存,
false时只清除ram中的缓存。 |
| clearRom | boolean | 是 |
设置为true时同时清除rom和ram中的缓存,设置为
false时只清除ram中的缓存。 |
**错误码:**
...
...
@@ -2688,7 +2685,6 @@ removeCache(clearRom: boolean): void
| 错误码ID | 错误信息 |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 401 | Invalid input parameter. |
**示例:**
...
...
@@ -3932,7 +3928,7 @@ struct WebComponent {
@
Component
struct
WebComponent
{
controller
:
WebController
=
new
WebController
();
webAsyncController
:
WebAsyncController
=
new
web_webview
.
WebAsyncController
(
this
.
controller
)
webAsyncController
:
web_webview
.
WebAsyncController
=
new
web_webview
.
WebAsyncController
(
this
.
controller
)
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
...
...
@@ -4452,7 +4448,7 @@ Web组件返回的请求/响应头对象。
| 名称 | 类型 | 可读 | 可写 | 说明 |
| ------------ | ------ | ---- | ---- | ---------------------------- |
| currentIndex | number | 是 | 否 | 当前在页面历史列表中的索引。 |
| currentIndex | number | 是 | 否 | 当前
页面
在页面历史列表中的索引。 |
| size | number | 是 | 否 | 历史列表中索引的数量。 |
### getItemAtIndex
...
...
@@ -4475,14 +4471,6 @@ getItemAtIndex(index: number): HistoryItem
| --------------------------- | ------------ |
|
[
HistoryItem
](
#historyitem
)
| 历史记录项。 |
**错误码:**
以下错误码的详细介绍请参见
[
webview错误码
](
../errorcodes/errorcode-webview.md
)
| 错误码ID | 错误信息 |
| -------- | ----------------------- |
| 401 | Invalid input parameter |
**示例:**
```
ts
...
...
@@ -4504,7 +4492,7 @@ struct WebComponent {
let
list
=
this
.
controller
.
getBackForwardEntries
();
let
historyItem
=
list
.
getItemAtIndex
(
list
.
currentIndex
);
console
.
log
(
"
HistoryItem:
"
+
JSON
.
stringify
(
historyItem
));
this
.
icon
=
i
tem
.
icon
;
this
.
icon
=
historyI
tem
.
icon
;
}
catch
(
error
)
{
console
.
error
(
`ErrorCode:
${
error
.
code
}
, Message:
${
error
.
message
}
`
);
}
...
...
@@ -4539,5 +4527,3 @@ struct WebComponent {
| schemeName | string | 是 | 是 | 自定义协议名称。最大长度为32,其字符仅支持小写字母、数字、'.'、'+'、'-'。 |
| isSupportCORS | boolean | 是 | 是 | 是否支持跨域请求。 |
| isSupportFetch | boolean | 是 | 是 | 是否支持fetch请求。 |
###
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
514ac5f2
...
...
@@ -467,13 +467,13 @@ geolocationAccess(geolocationAccess: boolean)
mediaPlayGestureAccess(access: boolean)
设置
视频播放是否需要用户手动点击
。
设置
有声视频播放是否需要用户手动点击,静音视频播放不受该接口管控
。
**参数:**
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| ------ | ------- | ---- | ---- | ----------------- |
| access | boolean | 是 | true | 设置视频播放是否需要用户手动点击。 |
| access | boolean | 是 | true | 设置
有声
视频播放是否需要用户手动点击。 |
**示例:**
...
...
@@ -827,11 +827,11 @@ defaultFixedFontSize(size: number)
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
()
@
State
s
ize
:
number
=
16
@
State
fontS
ize
:
number
=
16
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
defaultFixedFontSize
(
this
.
s
ize
)
.
defaultFixedFontSize
(
this
.
fontS
ize
)
}
}
}
...
...
@@ -858,11 +858,11 @@ defaultFontSize(size: number)
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
()
@
State
s
ize
:
number
=
13
@
State
fontS
ize
:
number
=
13
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
defaultFontSize
(
this
.
s
ize
)
.
defaultFontSize
(
this
.
fontS
ize
)
}
}
}
...
...
@@ -889,11 +889,11 @@ minFontSize(size: number)
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
()
@
State
s
ize
:
number
=
13
@
State
fontS
ize
:
number
=
13
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
minFontSize
(
this
.
s
ize
)
.
minFontSize
(
this
.
fontS
ize
)
}
}
}
...
...
@@ -920,11 +920,11 @@ minLogicalFontSize(size: number)
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
()
@
State
s
ize
:
number
=
13
@
State
fontS
ize
:
number
=
13
build
()
{
Column
()
{
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
.
minLogicalFontSize
(
this
.
s
ize
)
.
minLogicalFontSize
(
this
.
fontS
ize
)
}
}
}
...
...
@@ -2484,6 +2484,7 @@ onWindowNew(callback: (event: {isAlert: boolean, isUserTrigger: boolean, targetU
```
ts
// xxx.ets
import
web_webview
from
'
@ohos.web.webview
'
@
Entry
@
Component
struct
WebComponent
{
...
...
@@ -3297,7 +3298,7 @@ grant(resources: Array\<string\>): void
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| --------- | --------------- | ---- | ---- | ------------- |
| resources | Array
\<
string
\>
| 是 | - |
网页所请求的权限
资源列表。 |
| resources | Array
\<
string
\>
| 是 | - |
授予网页请求的权限的
资源列表。 |
## ContextMenuSourceType<sup>9+</sup>枚举说明
| 名称 | 描述 |
...
...
@@ -4956,7 +4957,7 @@ getCookie(url: string): string
Column
()
{
Button
(
'
getCookie
'
)
.
onClick
(()
=>
{
let
value
=
webview
.
WebCookieManager
.
getCookie
(
'
www.example.com
'
)
let
value
=
web
_web
view
.
WebCookieManager
.
getCookie
(
'
www.example.com
'
)
console
.
log
(
"
value:
"
+
value
)
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
...
...
@@ -5328,7 +5329,7 @@ deleteSessionCookie(): void
Column
()
{
Button
(
'
deleteSessionCookie
'
)
.
onClick
(()
=>
{
webview
.
WebCookieManager
.
deleteSessionCookie
()
web
_web
view
.
WebCookieManager
.
deleteSessionCookie
()
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
}
...
...
@@ -6495,7 +6496,7 @@ setPorts(ports: Array\<WebMessagePort\>): void
## DataResubmissionHandler<sup>9+</sup>
通过DataResubmissionHandler可以重新提交表单数据或取消。
通过DataResubmissionHandler可以重新提交表单数据或取消
提交表单数据
。
### resend<sup>9+</sup>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录