ts-media-components-web.md 7.2 KB
Newer Older
Z
zengyawen 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
# Web

>![icon-note.gif](public_sys-resources/icon-note.gif) **说明:** 
>该组件从 API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

提供具有网页显示能力的 Web 组件。

## 权限列表

ohos.permission.INTERNET

ohos.permission.READ_USER_STORAGE

## 子组件



## 接口

-   Web\(options: {src: string, controller?: WebController}\)

    表1 options 参数说明

    | 参数名     | 参数类型                        | 必填 | 默认值 | 参数描述       |
    | ---------- | ------------------------------- | ---- | ------ | -------------- |
    | src        | string                          | 是   | -      | 网页资源地址。 |
    | controller | [WebController](#WebController) | 否   | -      | 控制器。       |


> ![icon-note.gif](public_sys-resources/icon-note.gif)**说明:**
>
> - 一个页面只支持一个 Web 组件,全屏显示,页面中的其他组件会被 Web 组件遮挡;
> - 不支持转场动画;
> - 只支持加载 rawfile 目录下的 html 文件,不支持远程资源。

## 属性
Z
zhangxiao 已提交
37 38 39 40 41 42 43 44 45 46
| 名称              | 参数类型         | 默认值                                     | 描述                                                         |
| ----------------- | ---------------- | ------------------------------------------ | ------------------------------------------------------------ |
| javaScriptAccess  | boolean          | true                                       | 是否允许执行 JavaScript 脚本,默认允许执行。   |
| fileAccess        | boolean          | true                                       | 启用或禁用 Web 中可通过 file 方式访问应用中的本地文件, 默认启用。 |
| onlineImageAccess | boolean          | true                                       | 是否允许从网络加载图片 资源(通过http和http访问的资源),默认允许访问。 |
| domStorageAccess  | boolean          | false                                      | 设置是否开启DOM存储API权限,默认未开启,设置为true时,WebView能够使用DOM storageAPI。 |
| imageAccess       | boolean          | true                                       | 设置是否允许自动加载图片资源,默认允许。                       |
| mixedMode         | MixedModeContent | MixedModeContent.MIXED_CONTENT_NEVER_ALLOW | 设置是否加载http和https混合内容,默认不允许加载http和https混合内容。 |
| zoomAccess        | boolean          | true                                       | 设置是否支持使用屏幕控件或手势进行缩放,默认执行缩放。         |
| geolocationAccess | boolean          | true                                       | 是否允许访问地理位置, 默认允许。                              |
Z
zengyawen 已提交
47 48 49 50

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
>
> 不支持通用属性。
Z
zhangxiao 已提交
51 52 53 54 55 56 57
- MixedModeContent枚举说明

  | 名称                             | 描述                                                         |
  | -------------------------------- | ------------------------------------------------------------ |
  | MIXED_CONTENT_NEVER_ALLOW        | 不允许加载http和https混合内容。                                |
  | MIXED_CONTENT_ALWAYS_ALLOW       | 允许加载http和https混合内容。                                  |
  | MIXED_CONTENT_COMPATIBILITY_MODE | 混合内容兼容性模式,一些不安全的内容可能被安全来源加载,其他类型的内容将被阻止。 |
Z
zengyawen 已提交
58 59 60 61 62

## 事件

不支持通用事件。

W
wzztoone 已提交
63 64 65
| 名称                                                         | 功能描述                                                     |
| ------------------------------------------------------------ | ------------------------------------------------------------ |
| onPageEnd(callback: (event?: { url: string }) => void)       | <p>网页加载结束时触发该回调。<br/>url:Web 引擎返回的 URL。</p> |
W
wzztoone 已提交
66
| onPageBegin(callback: (event?: {url: string }) => void)      | <p>网页加载时触发该回调。<br/>url:Web 引擎返回的 URL。</p>  |
W
wzztoone 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80
| onProgressChange(callback: (event?: { newProgress: number }) => void) | <p>网页加载进度变化时触发该回调。<br/>newProgress:加载进度,取值范围为0到100的整数。</p> |
| onTitleReceive(callback: (event?: { title: string }) => void) | <p>网页主页面标题更改时触发该回调。<br/>title:标题内容。</p> |
| onGeolocationHide(callback: () => void)                      | <p>调用onGeolocationShow()时发出的地理位置权限请求被取消后触发该回调。<br/>开发者可以在该回调中实现隐藏相关UI界面的逻辑。</p> |
| onGeolocationShow(callback: (event?: { origin: string, geolocation: JsGeolocation }) => void) | <p>应用尝试使用地理位置时触发该回调,并向用户请求权限。<br/>-origin:尝试获取地理位置的Web内容的来源。<br/>-geolocation:用于请求地理位置权限。</p> |

### JsGeolocation 对象说明

用于请求地理位置权限。

- 接口

  | 接口名称                                                     | 功能描述                                                     |
  | ------------------------------------------------------------ | ------------------------------------------------------------ |
  | invoke(origin: string, allow: boolean, retain: boolean): void | <p>通知系统用户是否批准该应用使用地理位置权限。<br/>-origin:尝试获取地理位置的Web内容的来源。<br/>-allow:用户是否批准该应用使用地理位置权限。true: 允许访问,false: 不允许访问。<br/>-retain:是否允许将地理位置权限状态保存到系统中。true: 允许,false: 不允许。</p> |
Z
zengyawen 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

## WebController

Web 组件的控制器。

### 创建对象

```
webController: WebController = new WebController()
```

### runJavaScript

runJavaScript(script: string): void

执行 JavaScript 脚本。

- 参数

  | 参数名    | 参数类型   | 必填   | 默认值  | 参数描述           |
  | ------ | ------ | ---- | ---- | -------------- |
  | script | string | 是    | -    | JavaScript 脚本。 |

### loadUrl

loadUrl(url: string): void

加载 URL。

- 参数

  | 参数名  | 参数类型   | 必填   | 默认值  | 参数描述       |
  | ---- | ------ | ---- | ---- | ---------- |
  | url  | string | 是    | -    | 需要加载的 URL。 |


## 示例

```
// webComponent.ets
@Entry
@Component
struct WebComponent {
  @State javaScriptAccess: boolean = true;
  @State fileAccess: boolean = true;
  controller: WebController = new WebController();
  build() {
    Column() {
L
lixingchi1 已提交
129 130 131
      Web({ src: $rawfile('index.html'), controller: this.controller })
      .javaScriptAccess(this.javaScriptAccess)
      .fileAccess(this.fileAccess)
Z
zengyawen 已提交
132 133 134 135 136 137 138 139
      .onPageEnd(e => {
        // test() 在 index.html 中已定义
        this.controller.runJavaScript('test()');
        console.log("url: ", e.url);
      })
    }
  }
}
L
lixingchi1 已提交
140 141 142
```
```
<!-- index.html -->
Z
zengyawen 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<body>
    Hello world!
</body>
<script type="text/javascript">
	function test() {
		console.log('Ark WebComponent');
	}
</script>
</html>
```

L
lixingchi1 已提交
157
![](figures/Web.png)