Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
34f7b4c2
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看板
未验证
提交
34f7b4c2
编写于
2年前
作者:
O
openharmony_ci
提交者:
Gitee
2年前
浏览文件
操作
浏览文件
下载
差异文件
!13264 修复webview资料问题(月度)
Merge pull request !13264 from Ted/monthly_20221018
上级
81ba4b9a
996fe937
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
19 deletion
+20
-19
zh-cn/application-dev/reference/apis/js-apis-webview.md
zh-cn/application-dev/reference/apis/js-apis-webview.md
+7
-7
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+13
-12
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-webview.md
浏览文件 @
34f7b4c2
...
...
@@ -1798,7 +1798,7 @@ struct WebComponent {
getTitle(): string
获取
文件选择器
标题。
获取
当前网页的
标题。
**系统能力:**
SystemCapability.Web.Webview.Core
...
...
@@ -1806,7 +1806,7 @@ getTitle(): string
| 类型 | 说明 |
| ------ | -------------------- |
| string |
返回文件选择器
标题。 |
| string |
当前网页的
标题。 |
**错误码:**
...
...
@@ -2529,7 +2529,7 @@ struct WebComponent {
### hasImage
hasImage(callback: AsyncCallback
<boolean>
): void
hasImage(callback: AsyncCallback
\
<
boolean>): void
通过Callback方式异步查找当前页面是否存在图像。
...
...
@@ -2565,7 +2565,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
;
...
...
@@ -2584,7 +2584,7 @@ struct WebComponent {
### hasImage
hasImage(): Promise
<boolean>
hasImage(): Promise
\
<
boolean>
通过Promise方式异步查找当前页面是否存在图像。
...
...
@@ -3900,7 +3900,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
})
...
...
@@ -4464,7 +4464,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
}
`
);
}
...
...
This diff is collapsed.
Click to expand it.
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
34f7b4c2
...
...
@@ -467,13 +467,13 @@ geolocationAccess(geolocationAccess: boolean)
mediaPlayGestureAccess(access: boolean)
设置
视频播放是否需要用户手动点击
。
设置
有声视频播放是否需要用户手动点击,静音视频播放不受该接口管控
。
**参数:**
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| ------ | ------- | ---- | ---- | ----------------- |
| access | boolean | 是 | true | 设置视频播放是否需要用户手动点击。 |
| access | boolean | 是 | true | 设置
有声
视频播放是否需要用户手动点击。 |
**示例:**
...
...
@@ -825,11 +825,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
)
}
}
}
...
...
@@ -856,11 +856,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
)
}
}
}
...
...
@@ -887,11 +887,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
)
}
}
}
...
...
@@ -918,11 +918,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
)
}
}
}
...
...
@@ -2482,6 +2482,7 @@ onWindowNew(callback: (event: {isAlert: boolean, isUserTrigger: boolean, targetU
```
ts
// xxx.ets
import
web_webview
from
'
@ohos.web.webview
'
@
Entry
@
Component
struct
WebComponent
{
...
...
@@ -4954,7 +4955,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
})
...
...
@@ -5326,7 +5327,7 @@ deleteSessionCookie(): void
Column
()
{
Button
(
'
deleteSessionCookie
'
)
.
onClick
(()
=>
{
webview
.
WebCookieManager
.
deleteSessionCookie
()
web
_web
view
.
WebCookieManager
.
deleteSessionCookie
()
})
Web
({
src
:
'
www.example.com
'
,
controller
:
this
.
controller
})
}
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部