Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
3b438c6b
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,发现更多精彩内容 >>
未验证
提交
3b438c6b
编写于
3月 15, 2023
作者:
O
openharmony_ci
提交者:
Gitee
3月 15, 2023
浏览文件
操作
浏览文件
下载
差异文件
!16011 Web组件加载沙箱路径下文件资源(3.2Release)
Merge pull request !16011 from 李想/OpenHarmony-3.2-Release
上级
65d96d16
95f93de2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
41 addition
and
4 deletion
+41
-4
zh-cn/application-dev/reference/apis/js-apis-webview.md
zh-cn/application-dev/reference/apis/js-apis-webview.md
+2
-2
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
...ication-dev/reference/arkui-ts/ts-basic-components-web.md
+39
-2
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-webview.md
浏览文件 @
3b438c6b
...
...
@@ -3207,7 +3207,7 @@ static getCookie(url: string): string
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | :------------------------ |
| url | string | 是 | 要获取的cookie所属的url。 |
| url | string | 是 | 要获取的cookie所属的url
,建议使用完整的url
。 |
**返回值:**
...
...
@@ -3263,7 +3263,7 @@ static setCookie(url: string, value: string): void
| 参数名 | 类型 | 必填 | 说明 |
| ------ | ------ | ---- | :------------------------ |
| url | string | 是 | 要设置的cookie所属的url。 |
| url | string | 是 | 要设置的cookie所属的url
,建议使用完整的url
。 |
| value | string | 是 | 要设置的cookie的值。 |
**错误码:**
...
...
zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md
浏览文件 @
3b438c6b
...
...
@@ -27,7 +27,7 @@ Web(options: { src: ResourceStr, controller: WebviewController | WebController})
| 参数名 | 参数类型 | 必填 | 参数描述 |
| ---------- | ---------------------------------------- | ---- | ------- |
| src |
[
ResourceStr
](
ts-types.md
)
| 是 | 网页资源地址。 |
| src |
[
ResourceStr
](
ts-types.md
)
| 是 | 网页资源地址。
如果加载应用包外沙箱路径的本地资源文件,请使用file://沙箱文件路径。
|
| controller |
[
WebviewController<sup>9+</sup>
](
../apis/js-apis-webview.md#webviewcontroller
)
\|
[
WebController
](
#webcontroller
)
| 是 | 控制器。从API Version 9开始,WebController不在维护,建议使用WebviewController替代。 |
**示例:**
...
...
@@ -66,6 +66,43 @@ Web(options: { src: ResourceStr, controller: WebviewController | WebController})
}
```
加载沙箱路径下的本地资源文件
1.
通过
[
globalthis
](
../../application-models/uiability-data-sync-with-ui.md#uiability和page之间使用globalthis
)
获取沙箱路径。
```
ts
// xxx.ets
import
web_webview
from
'
@ohos.web.webview
'
let
url
=
'
file://
'
+
globalThis
.
filesDir
+
'
/xxx.html
'
@
Entry
@
Component
struct
WebComponent
{
controller
:
web_webview
.
WebviewController
=
new
web_webview
.
WebviewController
()
build
()
{
Column
()
{
// 加载沙箱路径文件。
Web
({
src
:
url
,
controller
:
this
.
controller
})
}
}
}
```
2.
修改MainAbility.ts。
以filesDir为例,获取沙箱路径。若想获取其他路径,请参考
[
应用开发路径
](
../../application-models/application-context-stage.md#获取应用开发路径
)
。
```
ts
// xxx.ts
import
UIAbility
from
'
@ohos.app.ability.UIAbility
'
;
import
web_webview
from
'
@ohos.web.webview
'
;
export
default
class
EntryAbility
extends
UIAbility
{
onCreate
(
want
,
launchParam
)
{
// 通过在globalThis对象上绑定filesDir,可以实现UIAbility组件与UI之间的数据同步。
globalThis
.
filesDir
=
this
.
context
.
filesDir
console
.
log
(
"
Sandbox path is
"
+
globalThis
.
filesDir
)
}
}
```
```
html
<!-- index.html -->
<!DOCTYPE html>
...
...
@@ -4473,7 +4510,7 @@ setCookie(url: string, value: string): boolean
| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 |
| ----- | ------ | ---- | ---- | ----------------- |
| url | string | 是 | - | 要设置的cookie所属的url。 |
| url | string | 是 | - | 要设置的cookie所属的url
,建议使用完整的url
。 |
| value | string | 是 | - | cookie的值。 |
**返回值:**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录