ts-basic-components-web.md 107.9 KB
Newer Older
Z
zengyawen 已提交
1 2
# Web

H
geshi  
HelloCrease 已提交
3
> **说明:** 
4 5 6
>
> - 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
> - 示例效果请以真机运行为准,当前IDE预览器不支持。
Z
zengyawen 已提交
7

L
lixingchi1 已提交
8
提供具有网页显示能力的Web组件。
Z
zengyawen 已提交
9

L
liwenzhen 已提交
10
## 权限列表
Z
zhou-liting125 已提交
11
访问在线网页时需添加网络权限:ohos.permission.INTERNET。
L
liwenzhen 已提交
12

Z
zengyawen 已提交
13 14 15 16 17 18
## 子组件



## 接口

K
kangchongtao 已提交
19
Web(options: { src: ResourceStr, controller: WebController })
Z
zhou-liting125 已提交
20

K
kangchongtao 已提交
21
表1 options参数说明
Z
zhou-liting125 已提交
22
**参数:**
23 24
| 参数名        | 参数类型                            | 必填   | 默认值  | 参数描述    |
| ---------- | ------------------------------- | ---- | ---- | ------- |
K
kangchongtao 已提交
25
| src        | [ResourceStr](../../ui/ts-types.md)                           | 是    | -    | 网页资源地址。 |
26
| controller | [WebController](#webcontroller) | 否    | -    | 控制器。    |
Z
zengyawen 已提交
27

Z
zhou-liting125 已提交
28
**示例:**
Z
zhou-liting125 已提交
29 30
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
31
  @Entry
L
update  
laosan_ted 已提交
32 33
  @Component
  struct WebComponent {
34
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
35 36
    build() {
      Column() {
37
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
38 39 40 41
      }
    }
  }
  ```
Z
zengyawen 已提交
42

H
geshi  
HelloCrease 已提交
43
> **说明:**
Z
zengyawen 已提交
44
>
Z
zhou-liting125 已提交
45
> 不支持转场动画。
Z
zengyawen 已提交
46

L
update  
laosan_ted 已提交
47
## 属性
Z
zhou-liting125 已提交
48 49 50 51 52 53 54 55 56

web组件的网络属性。

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

设置是否开启文档对象模型存储接口(DOM Storage API)权限,默认未开启。

Z
zhou-liting125 已提交
57
**参数:**
58 59
| 参数名              | 参数类型    | 必填   | 默认值  | 参数描述                                 |
| ---------------- | ------- | ---- | ---- | ------------------------------------ |
60
| domStorageAccess | boolean | 是    | false | 设置是否开启文档对象模型存储接口(DOM Storage API)权限。 |
Z
zhou-liting125 已提交
61

Z
zhou-liting125 已提交
62
**示例:**
Z
zhou-liting125 已提交
63 64
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
65
  @Entry
L
update  
laosan_ted 已提交
66 67
  @Component
  struct WebComponent {
68
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
69 70
    build() {
      Column() {
71 72
        Web({ src: 'www.example.com', controller: this.controller })
          .domStorageAccess(true)
L
update  
laosan_ted 已提交
73 74 75 76 77
      }
    }
  }
  ```

Z
zhou-liting125 已提交
78 79 80 81
### fileAccess

fileAccess(fileAccess: boolean)

L
laosan_ted 已提交
82
设置是否开启应用中文件系统的访问,默认启用。[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)中rawfile路径的文件不受该属性影响而限制访问。
Z
zhou-liting125 已提交
83

Z
zhou-liting125 已提交
84
**参数:**
85 86
| 参数名        | 参数类型    | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------- | ---- | ---- | ---------------------------------------- |
L
laosan_ted 已提交
87
| fileAccess | boolean | 是    | true | 设置是否开启应用中文件系统的访问,默认启用。 |
Z
zhou-liting125 已提交
88

Z
zhou-liting125 已提交
89
**示例:**
Z
zhou-liting125 已提交
90 91
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
92
  @Entry
L
update  
laosan_ted 已提交
93 94
  @Component
  struct WebComponent {
95
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
96 97
    build() {
      Column() {
98
        Web({ src: 'www.example.com', controller: this.controller })
99
          .fileAccess(true)
L
update  
laosan_ted 已提交
100 101 102 103 104
      }
    }
  }
  ```

Z
zhou-liting125 已提交
105 106 107 108
### fileFromUrlAccess<sup>9+</sup>

fileFromUrlAccess(fileFromUrlAccess: boolean)

L
laosan_ted 已提交
109
设置是否允许通过网页中的JavaScript脚本访问应用文件系统中的内容,默认未启用。[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)中rawfile路径的文件不受该属性影响而限制访问。
Z
zhou-liting125 已提交
110

Z
zhou-liting125 已提交
111
**参数:**
112 113
| 参数名               | 参数类型    | 必填   | 默认值   | 参数描述                                     |
| ----------------- | ------- | ---- | ----- | ---------------------------------------- |
L
laosan_ted 已提交
114
| fileFromUrlAccess | boolean | 是    | false | 设置是否允许通过网页中的JavaScript脚本访问应用文件系统中的内容,默认未启用。 |
Z
zhou-liting125 已提交
115

Z
zhou-liting125 已提交
116
**示例:**
Z
zhou-liting125 已提交
117 118
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
119
  @Entry
L
update  
laosan_ted 已提交
120 121
  @Component
  struct WebComponent {
122
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
123 124
    build() {
      Column() {
125 126
        Web({ src: 'www.example.com', controller: this.controller })
          .fileFromUrlAccess(true)
L
update  
laosan_ted 已提交
127 128 129 130 131
      }
    }
  }
  ```

Z
zhou-liting125 已提交
132 133 134 135 136 137
### imageAccess

imageAccess(imageAccess: boolean)

设置是否允许自动加载图片资源,默认允许。

Z
zhou-liting125 已提交
138
**参数:**
139 140
| 参数名         | 参数类型    | 必填   | 默认值  | 参数描述            |
| ----------- | ------- | ---- | ---- | --------------- |
141
| imageAccess | boolean | 是    | true | 设置是否允许自动加载图片资源。 |
Z
zhou-liting125 已提交
142

Z
zhou-liting125 已提交
143
**示例:**
Z
zhou-liting125 已提交
144 145
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
146
  @Entry
L
update  
laosan_ted 已提交
147 148
  @Component
  struct WebComponent {
149
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
150 151
    build() {
      Column() {
152 153
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
154 155 156 157 158
      }
    }
  }
  ```

Z
zhou-liting125 已提交
159 160 161 162 163 164 165
### javaScriptProxy

javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\<string\>,
    controller: WebController })

注入JavaScript对象到window对象中,并在window对象中调用该对象的方法。所有参数不支持更新。

Z
zhou-liting125 已提交
166
**参数:**
167 168 169 170 171
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
| object     | object          | 是    | -    | 参与注册的对象。只能声明方法,不能声明属性。    |
| name       | string          | 是    | -    | 注册对象的名称,与window中调用的对象名一致。 |
| methodList | Array\<string\> | 是    | -    | 参与注册的应用侧JavaScript对象的方法。  |
172
| controller | [WebController](#webcontroller) | 否    | -    | 控制器。    |
173

Z
zhou-liting125 已提交
174
**示例:**
Z
zhou-liting125 已提交
175 176
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
177
  @Entry
L
update  
laosan_ted 已提交
178 179
  @Component
  struct WebComponent {
180
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
181 182 183 184 185 186 187 188
    testObj = {
      test: (data1, data2, data3) => {
        console.log("data1:" + data1);
        console.log("data2:" + data2);
        console.log("data3:" + data3);
        return "AceString";
      },
      toString: () => {
Z
zhou-liting125 已提交
189
        console.log('toString' + "interface instead.");
L
update  
laosan_ted 已提交
190 191 192 193
      }
    }
    build() {
      Column() {
194 195 196 197 198 199 200
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
          .javaScriptProxy({
            object: this.testObj,
            name: "objName",
            methodList: ["test", "toString"],
            controller: this.controller,
L
update  
laosan_ted 已提交
201 202 203 204 205 206
        })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
207 208 209 210 211 212
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

设置是否允许执行JavaScript脚本,默认允许执行。

Z
zhou-liting125 已提交
213
**参数:**
214 215
| 参数名              | 参数类型    | 必填   | 默认值  | 参数描述                |
| ---------------- | ------- | ---- | ---- | ------------------- |
216
| javaScriptAccess | boolean | 是    | true | 是否允许执行JavaScript脚本。 |
Z
zhou-liting125 已提交
217

Z
zhou-liting125 已提交
218
**示例:**
Z
zhou-liting125 已提交
219 220
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
221
  @Entry
L
update  
laosan_ted 已提交
222 223
  @Component
  struct WebComponent {
224
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
225 226
    build() {
      Column() {
227 228
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
L
update  
laosan_ted 已提交
229 230 231 232 233
      }
    }
  }
  ```

Z
zhou-liting125 已提交
234 235 236 237 238 239
### mixedMode

mixedMode(mixedMode: MixedMode)

设置是否允许加载超文本传输协议(HTTP)和超文本传输安全协议(HTTPS)混合内容,默认不允许加载HTTP和HTTPS混合内容。

Z
zhou-liting125 已提交
240
**参数:**
241 242
| 参数名       | 参数类型                        | 必填   | 默认值  | 参数描述      |
| --------- | --------------------------- | ---- | ---- | --------- |
243
| mixedMode | [MixedMode](#mixedmode枚举说明) | 是    | MixedMode.None | 要设置的混合内容。 |
Z
zhou-liting125 已提交
244

Z
zhou-liting125 已提交
245
**示例:**
Z
zhou-liting125 已提交
246 247
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
248
  @Entry
L
update  
laosan_ted 已提交
249 250
  @Component
  struct WebComponent {
251 252
    controller: WebController = new WebController();
    @State mode: MixedMode = MixedMode.All;
L
update  
laosan_ted 已提交
253 254
    build() {
      Column() {
255 256
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
257 258 259 260 261
      }
    }
  }
  ```

Z
zhou-liting125 已提交
262 263 264 265 266 267
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

设置是否允许从网络加载图片资源(通过HTTP和HTTPS访问的资源),默认允许访问。

Z
zhou-liting125 已提交
268
**参数:**
269 270
| 参数名               | 参数类型    | 必填   | 默认值  | 参数描述             |
| ----------------- | ------- | ---- | ---- | ---------------- |
271
| onlineImageAccess | boolean | 是    | true | 设置是否允许从网络加载图片资源。 |
Z
zhou-liting125 已提交
272

Z
zhou-liting125 已提交
273
**示例:**
Z
zhou-liting125 已提交
274 275
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
276
  @Entry
L
update  
laosan_ted 已提交
277 278
  @Component
  struct WebComponent {
279
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
280 281
    build() {
      Column() {
282 283
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
284 285 286 287 288
      }
    }
  }
  ```

Z
zhou-liting125 已提交
289 290 291 292 293 294
### zoomAccess

zoomAccess(zoomAccess: boolean)

设置是否支持手势进行缩放,默认允许执行缩放。

Z
zhou-liting125 已提交
295
**参数:**
296 297
| 参数名        | 参数类型    | 必填   | 默认值  | 参数描述          |
| ---------- | ------- | ---- | ---- | ------------- |
298
| zoomAccess | boolean | 是    | true | 设置是否支持手势进行缩放。 |
Z
zhou-liting125 已提交
299

Z
zhou-liting125 已提交
300
**示例:**
Z
zhou-liting125 已提交
301 302
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
303
  @Entry
L
update  
laosan_ted 已提交
304 305
  @Component
  struct WebComponent {
306
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
307 308
    build() {
      Column() {
309 310
        Web({ src: 'www.example.com', controller: this.controller })
          .zoomAccess(true)
L
update  
laosan_ted 已提交
311 312 313 314 315
      }
    }
  }
  ```

Z
zhou-liting125 已提交
316 317 318 319 320 321
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

设置是否使用概览模式加载网页,默认使用该方式。

Z
zhou-liting125 已提交
322
**参数:**
323 324
| 参数名                | 参数类型    | 必填   | 默认值  | 参数描述            |
| ------------------ | ------- | ---- | ---- | --------------- |
325
| overviewModeAccess | boolean | 是    | true | 设置是否使用概览模式加载网页。 |
Z
zhou-liting125 已提交
326

Z
zhou-liting125 已提交
327
**示例:**
Z
zhou-liting125 已提交
328 329
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
330
  @Entry
L
update  
laosan_ted 已提交
331 332
  @Component
  struct WebComponent {
333
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
334 335
    build() {
      Column() {
336 337
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
338 339 340 341 342
      }
    }
  }
  ```

Z
zhou-liting125 已提交
343 344 345 346 347 348
### databaseAccess

databaseAccess(databaseAccess: boolean)

设置是否开启数据库存储API权限,默认不开启。

Z
zhou-liting125 已提交
349
**参数:**
350 351
| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
352
| databaseAccess | boolean | 是    | false | 设置是否开启数据库存储API权限。 |
Z
zhou-liting125 已提交
353

L
laosan_ted 已提交
354
**示例:**
Z
zhou-liting125 已提交
355 356
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
357
  @Entry
L
update  
laosan_ted 已提交
358 359
  @Component
  struct WebComponent {
360
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
361 362
    build() {
      Column() {
363 364
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
365 366 367 368 369
      }
    }
  }
  ```

L
laosan_ted 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

设置是否开启获取地理位置权限,默认开启。

**参数:**
| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
| geolocationAccess | boolean | 是    | true    | 设置是否开启获取地理位置权限。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
387
    controller: WebController = new WebController();
L
laosan_ted 已提交
388 389
    build() {
      Column() {
390 391
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
392 393 394 395 396
      }
    }
  }
  ```

Z
zhou-liting125 已提交
397 398 399 400 401 402
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
403
**参数:**
404 405
| 参数名       | 参数类型                        | 必填   | 默认值  | 参数描述      |
| --------- | --------------------------- | ---- | ---- | --------- |
406
| cacheMode | [CacheMode](#cachemode枚举说明) | 是    | CacheMode.Default | 要设置的缓存模式。 |
Z
zhou-liting125 已提交
407

Z
zhou-liting125 已提交
408
**示例:**
Z
zhou-liting125 已提交
409 410
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
411
  @Entry
L
update  
laosan_ted 已提交
412 413
  @Component
  struct WebComponent {
414 415
    controller: WebController = new WebController();
    @State mode: CacheMode = CacheMode.None;
L
update  
laosan_ted 已提交
416 417
    build() {
      Column() {
418 419
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
420 421 422 423 424
      }
    }
  }
  ```

L
laosan_ted 已提交
425
### textZoomRatio
Z
zhou-liting125 已提交
426

L
laosan_ted 已提交
427
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
428 429 430

设置页面的文本缩放百分比,默认为100%。

Z
zhou-liting125 已提交
431
**参数:**
432 433
| 参数名          | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------------ | ------ | ---- | ---- | --------------- |
434
| textZoomRatio | number | 是    | 100 | 要设置的页面的文本缩放百分比。 |
Z
zhou-liting125 已提交
435

Z
zhou-liting125 已提交
436
**示例:**
Z
zhou-liting125 已提交
437 438
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
439
  @Entry
L
update  
laosan_ted 已提交
440 441
  @Component
  struct WebComponent {
442 443
    controller: WebController = new WebController();
    @State atio: number = 150;
L
update  
laosan_ted 已提交
444 445
    build() {
      Column() {
446 447
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
448 449 450 451 452
      }
    }
  }
  ```

Z
zhou-liting125 已提交
453 454 455 456 457 458
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
459
**参数:**
460 461 462
| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| userAgent | string | 是    | -    | 要设置的用户代理。 |
Z
zengyawen 已提交
463

Z
zhou-liting125 已提交
464
**示例:**
Z
zhou-liting125 已提交
465 466
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
467
  @Entry
L
update  
laosan_ted 已提交
468 469
  @Component
  struct WebComponent {
470
    controller: WebController = new WebController();
L
laosan_ted 已提交
471
    @State userAgent:string = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36';
L
update  
laosan_ted 已提交
472 473
    build() {
      Column() {
474 475
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
476 477 478 479 480
      }
    }
  }
  ```

H
geshi  
HelloCrease 已提交
481
>  **说明:**
Z
zengyawen 已提交
482
>
483
>  通用属性仅支持[width](ts-universal-attributes-size.md#属性)、[height](ts-universal-attributes-size.md#属性)、[padding](ts-universal-attributes-size.md#属性)、[margin](ts-universal-attributes-size.md#属性)、[border](ts-universal-attributes-border.md#属性)。
Z
zengyawen 已提交
484 485 486

## 事件

L
liwenzhen 已提交
487
不支持通用事件。
Z
zengyawen 已提交
488

L
update  
laosan_ted 已提交
489 490 491 492 493 494
### onAlert

onAlert(callback: (event?: { url: string; message: string; result: JsResult }) => boolean)

网页触发alert()告警弹窗时触发回调。

Z
zhou-liting125 已提交
495
**参数:**
496 497 498 499 500
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
501

Z
zhou-liting125 已提交
502
**返回值:**
503 504 505
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件最终是否离开当前页面。 |
L
update  
laosan_ted 已提交
506

Z
zhou-liting125 已提交
507
**示例:**
Z
zhou-liting125 已提交
508 509
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
510
  @Entry
L
update  
laosan_ted 已提交
511 512
  @Component
  struct WebComponent {
513
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
514 515
    build() {
      Column() {
516
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
          .onAlert((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onAlert',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
update  
laosan_ted 已提交
532 533 534 535 536 537 538 539 540 541 542 543
          })
      }
    }
  }
  ```

### onBeforeUnload

onBeforeUnload(callback: (event?: { url: string; message: string; result: JsResult }) => boolean)

刷新或关闭场景下,在即将离开当前页面时触发此回调。

Z
zhou-liting125 已提交
544
**参数:**
545 546 547 548 549
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
550

Z
zhou-liting125 已提交
551
**返回值:**
552 553 554
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件最终是否离开当前页面。 |
L
update  
laosan_ted 已提交
555

Z
zhou-liting125 已提交
556
**示例:**
Z
zhou-liting125 已提交
557 558
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
559
  @Entry
L
update  
laosan_ted 已提交
560 561
  @Component
  struct WebComponent {
L
laosan_ted 已提交
562 563
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
564 565
    build() {
      Column() {
Z
zhou-liting125 已提交
566
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
567 568 569 570 571 572 573
          .onBeforeUnload((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
            console.log("event.result:" + event.result);
            return false;
          })
      }
L
update  
laosan_ted 已提交
574 575 576 577 578 579 580 581 582 583
    }
  }
  ```

### onConfirm

onConfirm(callback: (event?: { url: string; message: string; result: JsResult }) => boolean)

网页调用confirm()告警时触发此回调。

Z
zhou-liting125 已提交
584
**参数:**
585 586 587 588 589
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
590

Z
zhou-liting125 已提交
591
**返回值:**
592 593 594
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件。 |
L
update  
laosan_ted 已提交
595

Z
zhou-liting125 已提交
596
**示例:**
Z
zhou-liting125 已提交
597 598
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
599
  @Entry
L
update  
laosan_ted 已提交
600 601
  @Component
  struct WebComponent {
L
laosan_ted 已提交
602 603
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
604 605
    build() {
      Column() {
Z
zhou-liting125 已提交
606
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
          .onConfirm((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
            console.log("event.result:" + event.result);
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onConfirm',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
update  
laosan_ted 已提交
625
          })
L
laosan_ted 已提交
626
      }
L
update  
laosan_ted 已提交
627 628 629 630 631 632 633 634
    }
  }
  ```

### onPrompt<sup>9+</sup>

onPrompt(callback: (event?: { url: string; message: string; value: string; result: JsResult }) => boolean)

Z
zhou-liting125 已提交
635
**参数:**
636 637 638 639 640
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
641

Z
zhou-liting125 已提交
642
**返回值:**
643 644 645
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件。 |
L
update  
laosan_ted 已提交
646

Z
zhou-liting125 已提交
647
**示例:**
Z
zhou-liting125 已提交
648 649
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
650
  @Entry
L
update  
laosan_ted 已提交
651 652
  @Component
  struct WebComponent {
653
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
654 655
    build() {
      Column() {
656
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
        .onPrompt((event) => {
          console.log("url:" + event.url);
          console.log("message:" + event.message);
          console.log("value:" + event.value);
          console.log("result:" + event.result);
          return true;
        })
    }
  }
  ```

### onConsole

onConsole(callback: (event?: { message: ConsoleMessage }) => boolean)

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
674
**参数:**
675 676 677
| 参数名     | 参数类型                              | 参数描述      |
| ------- | --------------------------------- | --------- |
| message | [ConsoleMessage](#consolemessage) | 触发的控制台信息。 |
L
update  
laosan_ted 已提交
678

Z
zhou-liting125 已提交
679
**返回值:**
680 681 682
| 类型      | 说明                                  |
| ------- | ----------------------------------- |
| boolean | 当返回true时,该条消息将不会再打印至控制台,反之仍会打印至控制台。 |
L
update  
laosan_ted 已提交
683

Z
zhou-liting125 已提交
684
**示例:**
Z
zhou-liting125 已提交
685 686
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
687
  @Entry
L
update  
laosan_ted 已提交
688 689
  @Component
  struct WebComponent {
L
laosan_ted 已提交
690 691
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
692 693
    build() {
      Column() {
Z
zhou-liting125 已提交
694
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
695 696 697 698 699 700 701 702
          .onConsole((event) => {
            console.log('getMessage:' + event.message.getMessage());
            console.log('getSourceId:' + event.message.getSourceId());
            console.log('getLineNumber:' + event.message.getLineNumber());
            console.log('getMessageLevel:' + event.message.getMessageLevel());
            return false;
          })
      }
L
update  
laosan_ted 已提交
703 704 705 706 707 708 709 710
    }
  }
  ```

### onDownloadStart

onDownloadStart(callback: (event?: { url: string, userAgent: string, contentDisposition: string, mimetype: string, contentLength: number }) => void)

Z
zhou-liting125 已提交
711
**参数:**
712 713 714 715 716 717
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
718

Z
zhou-liting125 已提交
719
**示例:**
Z
zhou-liting125 已提交
720 721
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
722
  @Entry
L
update  
laosan_ted 已提交
723 724
  @Component
  struct WebComponent {
L
laosan_ted 已提交
725 726
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
727 728
    build() {
      Column() {
Z
zhou-liting125 已提交
729
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
730 731 732 733 734 735 736 737
          .onDownloadStart((event) => {
            console.log('url:' + event.url);
            console.log('userAgent:' + event.userAgent);
            console.log('contentDisposition:' + event.contentDisposition);
            console.log('contentLength:' + event.contentLength);
            console.log('mimetype:' + event.mimetype);
          })
      }
L
update  
laosan_ted 已提交
738 739 740 741 742 743 744 745 746 747
    }
  }
  ```

### onErrorReceive

onErrorReceive(callback: (event?: { request: WebResourceRequest, error: WebResourceError }) => void)

网页加载遇到错误时触发该回调。出于性能考虑,建议此回调中尽量执行简单逻辑。

Z
zhou-liting125 已提交
748
**参数:**
749 750 751 752
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
| error   | [WebResourceError](#webresourceerror)    | 网页加载资源错误的封装信息 。 |
L
update  
laosan_ted 已提交
753

Z
zhou-liting125 已提交
754
**示例:**
Z
zhou-liting125 已提交
755 756
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
757
  @Entry
L
update  
laosan_ted 已提交
758 759
  @Component
  struct WebComponent {
L
laosan_ted 已提交
760 761
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
762 763
    build() {
      Column() {
Z
zhou-liting125 已提交
764
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
          .onErrorReceive((event) => {
            console.log('getErrorInfo:' + event.error.getErrorInfo());
            console.log('getErrorCode:' + event.error.getErrorCode());
            console.log('url:' + event.request.getRequestUrl());
            console.log('isMainFrame:' + event.request.isMainFrame());
            console.log('isRedirect:' + event.request.isRedirect());
            console.log('isRequestGesture:' + event.request.isRequestGesture());
            console.log('getRequestHeader_headerKey:' + event.request.getRequestHeader().toString());
            let result = event.request.getRequestHeader();
            console.log('The request header result size is ' + result.length);
            for (let i of result) {
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue);
            }
          })
      }
L
update  
laosan_ted 已提交
780 781 782 783 784 785 786 787 788 789
    }
  }
  ```

### onHttpErrorReceive

onHttpErrorReceive(callback: (event?: { request: WebResourceRequest, response: WebResourceResponse }) => void)

网页加载资源遇到的HTTP错误(响应码>=400)时触发该回调。

Z
zhou-liting125 已提交
790
**参数:**
791 792 793 794
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
| error   | [WebResourceError](#webresourceerror)    | 网页加载资源错误的封装信息 。 |
L
update  
laosan_ted 已提交
795

Z
zhou-liting125 已提交
796
**示例:**
Z
zhou-liting125 已提交
797 798
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
799
  @Entry
L
update  
laosan_ted 已提交
800 801
  @Component
  struct WebComponent {
L
laosan_ted 已提交
802 803
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
804 805
    build() {
      Column() {
Z
zhou-liting125 已提交
806
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
          .onHttpErrorReceive((event) => {
            console.log('url:' + event.request.getRequestUrl());
            console.log('isMainFrame:' + event.request.isMainFrame());
            console.log('isRedirect:' + event.request.isRedirect());
            console.log('isRequestGesture:' + event.request.isRequestGesture());
            console.log('getResponseData:' + event.response.getResponseData());
            console.log('getResponseEncoding:' + event.response.getResponseEncoding());
            console.log('getResponseMimeType:' + event.response.getResponseMimeType());
            console.log('getResponseCode:' + event.response.getResponseCode());
            console.log('getReasonMessage:' + event.response.getReasonMessage());
            let result = event.request.getRequestHeader();
            console.log('The request header result size is ' + result.length);
            for (let i of result) {
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue);
            }
            let resph = event.response.getResponseHeader();
            console.log('The response header result size is ' + resph.length);
            for (let i of resph) {
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue);
            }
          })
      }
L
update  
laosan_ted 已提交
829 830 831 832 833 834 835 836
    }
  }
  ```

### onPageBegin

onPageBegin(callback: (event?: { url: string }) => void)

837

L
update  
laosan_ted 已提交
838 839
网页开始加载时触发该回调,且只在主frame触发,iframe或者frameset的内容加载时不会触发此回调。

Z
zhou-liting125 已提交
840
**参数:**
841 842 843
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
844

Z
zhou-liting125 已提交
845
**示例:**
Z
zhou-liting125 已提交
846 847
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
848
  @Entry
L
update  
laosan_ted 已提交
849 850
  @Component
  struct WebComponent {
L
laosan_ted 已提交
851 852
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
853 854
    build() {
      Column() {
Z
zhou-liting125 已提交
855
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
856 857 858 859
          .onPageBegin((event) => {
            console.log('url:' + event.url);
          })
      }
L
update  
laosan_ted 已提交
860 861 862 863 864 865 866 867
    }
  }
  ```

### onPageEnd

onPageEnd(callback: (event?: { url: string }) => void)

868

L
update  
laosan_ted 已提交
869 870
网页加载完成时触发该回调,且只在主frame触发。

Z
zhou-liting125 已提交
871
**参数:**
872 873 874
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
875

Z
zhou-liting125 已提交
876
**示例:**
Z
zhou-liting125 已提交
877 878
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
879
  @Entry
L
update  
laosan_ted 已提交
880 881
  @Component
  struct WebComponent {
L
laosan_ted 已提交
882 883
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
884 885
    build() {
      Column() {
Z
zhou-liting125 已提交
886
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
887 888 889 890
          .onPageEnd((event) => {
            console.log('url:' + event.url);
          })
      }
L
update  
laosan_ted 已提交
891 892 893 894 895 896 897 898 899 900
    }
  }
  ```

### onProgressChange

onProgressChange(callback: (event?: { newProgress: number }) => void)

网页加载进度变化时触发该回调。

Z
zhou-liting125 已提交
901
**参数:**
902 903 904
| 参数名         | 参数类型   | 参数描述                  |
| ----------- | ------ | --------------------- |
| newProgress | number | 新的加载进度,取值范围为0到100的整数。 |
L
update  
laosan_ted 已提交
905

Z
zhou-liting125 已提交
906
  **示例:**
Z
zhou-liting125 已提交
907 908
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
909
  @Entry
L
update  
laosan_ted 已提交
910 911
  @Component
  struct WebComponent {
L
laosan_ted 已提交
912 913
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
914 915
    build() {
      Column() {
Z
zhou-liting125 已提交
916
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
917 918 919 920
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
921 922 923 924 925 926 927 928 929 930
    }
  }
  ```

### onTitleReceive

onTitleReceive(callback: (event?: { title: string }) => void)

网页document标题更改时触发该回调。

Z
zhou-liting125 已提交
931
**参数:**
932 933 934
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
935

Z
zhou-liting125 已提交
936
  **示例:**
Z
zhou-liting125 已提交
937 938
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
939
  @Entry
L
update  
laosan_ted 已提交
940 941
  @Component
  struct WebComponent {
L
laosan_ted 已提交
942 943
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
944 945
    build() {
      Column() {
Z
zhou-liting125 已提交
946
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
947 948 949 950
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
951 952 953 954 955 956 957 958 959 960
    }
  }
  ```

### onRefreshAccessedHistory

onRefreshAccessedHistory(callback: (event?: { url: string, isRefreshed: boolean }) => void)

加载网页页面完成时触发该回调,用于应用更新其访问的历史链接。

Z
zhou-liting125 已提交
961
**参数:**
962 963 964 965
| 参数名         | 参数类型    | 参数描述                              |
| ----------- | ------- | --------------------------------- |
| url         | string  | 访问的url。                           |
| isRefreshed | boolean | true表示该页面是被重新加载的,false表示该页面是新加载的。 |
L
update  
laosan_ted 已提交
966

Z
zhou-liting125 已提交
967
  **示例:**
Z
zhou-liting125 已提交
968 969
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
970
  @Entry
L
update  
laosan_ted 已提交
971 972
  @Component
  struct WebComponent {
L
laosan_ted 已提交
973 974
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
975 976
    build() {
      Column() {
Z
zhou-liting125 已提交
977
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
978 979 980 981
          .onRefreshAccessedHistory((event) => {
            console.log('url:' + event.url + ' isReload:' + event.refreshed);
          })
      }
L
update  
laosan_ted 已提交
982 983 984 985 986 987 988 989 990 991
    }
  }
  ```

### onRenderExited

onRenderExited(callback: (event?: { renderExitReason: RenderExitReason }) => void)

应用渲染进程异常退出时触发该回调。

Z
zhou-liting125 已提交
992
**参数:**
993 994 995
| 参数名              | 参数类型                                     | 参数描述             |
| ---------------- | ---------------------------------------- | ---------------- |
| renderExitReason | [RenderExitReason](#renderexitreason枚举说明) | 渲染进程进程异常退出的具体原因。 |
L
update  
laosan_ted 已提交
996

Z
zhou-liting125 已提交
997
  **示例:**
Z
zhou-liting125 已提交
998 999
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1000
  @Entry
L
update  
laosan_ted 已提交
1001 1002
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1003 1004
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1005 1006
    build() {
      Column() {
L
laosan_ted 已提交
1007 1008 1009 1010 1011
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
            console.log('reason:' + event.renderExitReason);
          })
      }
L
update  
laosan_ted 已提交
1012 1013 1014 1015 1016 1017 1018 1019
    }
  }
  ```

### onShowFileSelector<sup>9+</sup>

onShowFileSelector(callback: (event?: { result: FileSelectorResult, fileSelector: FileSelectorParam }) => void)

Z
zhou-liting125 已提交
1020
调用此函数以处理具有“文件”输入类型的HTML表单,以响应用户按下的“选择文件”按钮。
L
update  
laosan_ted 已提交
1021

Z
zhou-liting125 已提交
1022
**参数:**
1023 1024 1025 1026
| 参数名          | 参数类型                                     | 参数描述              |
| ------------ | ---------------------------------------- | ----------------- |
| result       | [FileSelectorResult](#fileselectorresult9) | 用于通知Web组件文件选择的结果。 |
| fileSelector | [FileSelectorParam](#fileselectorparam9) | 文件选择器的相关信息。       |
L
update  
laosan_ted 已提交
1027

Z
zhou-liting125 已提交
1028
  **示例:**
Z
zhou-liting125 已提交
1029 1030
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1031
  @Entry
L
update  
laosan_ted 已提交
1032 1033
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1034 1035
    controller: WebController = new WebController();

L
update  
laosan_ted 已提交
1036 1037
    build() {
      Column() {
Z
zhou-liting125 已提交
1038
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
          .onShowFileSelector((event) => {
            AlertDialog.show({
              title: event.fileSelector.getTitle(),
              message: 'isCapture:' + event.fileSelector.isCapture() + " mode:" + event.fileSelector.getMode() + 'acceptType:' + event.fileSelector.getAcceptType(),
              confirm: {
                value: 'upload',
                action: () => {
                  let fileList: Array<string> = [
                    '/data/storage/el2/base/test',
                  ]
                  event.result.handleFileList(fileList)
                }
              },
              cancel: () => {
                let fileList: Array<string> = []
                event.result.handleFileList(fileList)
L
update  
laosan_ted 已提交
1055
              }
L
laosan_ted 已提交
1056 1057
            })
            return true;
L
update  
laosan_ted 已提交
1058
          })
L
laosan_ted 已提交
1059
      }
L
update  
laosan_ted 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
    }
  }
  ```

### onUrlLoadIntercept

onUrlLoadIntercept(callback: (event?: { data:string | WebResourceRequest }) => boolean)

当Web组件加载url之前触发该回调,用于是否阻止此次访问。

Z
zhou-liting125 已提交
1070
**参数:**
1071 1072 1073
| 参数名  | 参数类型                                     | 参数描述      |
| ---- | ---------------------------------------- | --------- |
| data | string / [WebResourceRequest](#webresourcerequest) | url的相关信息。 |
L
update  
laosan_ted 已提交
1074

Z
zhou-liting125 已提交
1075
**返回值:**
1076 1077 1078
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
1079

Z
zhou-liting125 已提交
1080
  **示例:**
Z
zhou-liting125 已提交
1081 1082
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1083
  @Entry
L
update  
laosan_ted 已提交
1084 1085
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1086 1087
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1088 1089
    build() {
      Column() {
Z
zhou-liting125 已提交
1090
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1091 1092 1093 1094 1095
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
            return true;
          })
      }
L
update  
laosan_ted 已提交
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
    }
  }
  ```

### onInterceptRequest<sup>9+</sup>

onInterceptRequest9+(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)

当Web组件加载url之前触发该回调,用于拦截url并返回响应数据。

Z
zhou-liting125 已提交
1106
**参数:**
1107 1108 1109
| 参数名     | 参数类型                                     | 参数描述        |
| ------- | ---------------------------------------- | ----------- |
| request | [WebResourceRequest](#webresourcerequest) | url请求的相关信息。 |
L
update  
laosan_ted 已提交
1110

Z
zhou-liting125 已提交
1111
**返回值:**
1112 1113 1114
| 类型                                       | 说明                          |
| ---------------------------------------- | --------------------------- |
| [WebResourceResponse](#webresourceresponse) | 返回响应数据为空表示按原来方式加载,否则加载响应数据。 |
L
update  
laosan_ted 已提交
1115

Z
zhou-liting125 已提交
1116
  **示例:**
Z
zhou-liting125 已提交
1117 1118
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1119
  @Entry
L
update  
laosan_ted 已提交
1120 1121
  @Component
  struct WebComponent {
1122
    controller: WebController = new WebController();
L
laosan_ted 已提交
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
    responseweb: WebResourceResponse = new WebResourceResponse();
    heads:Header[] = new Array();
    @State webdata: string = "<!DOCTYPE html>\n" +
    "<html>\n"+
    "<head>\n"+
    "<title>intercept test</title>\n"+
    "</head>\n"+
    "<body>\n"+
    "<h1>intercept test</h1>\n"+
    "</body>\n"+
    "</html>"
L
update  
laosan_ted 已提交
1134 1135
    build() {
      Column() {
1136
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
          .onInterceptRequest((event) => {
            console.log('url:' + event.request.getRequestUrl());
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
            var length = this.heads.push(head1);
            length = this.heads.push(head2);
            this.responseweb.setResponseHeader(this.heads);
            this.responseweb.setResponseData(this.webdata);
            this.responseweb.setResponseEncoding('utf-8');
            this.responseweb.setResponseMimeType('text/html');
            this.responseweb.setResponseCode(200);
            this.responseweb.setReasonMessage('OK');
            return this.responseweb;
          })
L
update  
laosan_ted 已提交
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
      }
    }
  }
  ```

### onHttpAuthRequest<sup>9+</sup>

onHttpAuthRequest(callback: (event?: { handler: HttpAuthHandler, host: string, realm: string}) => boolean)

通知收到http auth认证请求。

Z
zhou-liting125 已提交
1168
**参数:**
1169 1170 1171 1172 1173
| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| handler | [HttpAuthHandler](#httpauthhandler9) | 通知Web组件用户操作行为。   |
| host    | string                               | HTTP身份验证凭据应用的主机。 |
| realm   | string                               | HTTP身份验证凭据应用的域。  |
L
update  
laosan_ted 已提交
1174

Z
zhou-liting125 已提交
1175
**返回值:**
1176 1177 1178
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
1179

Z
zhou-liting125 已提交
1180
  **示例:**
Z
zhou-liting125 已提交
1181 1182
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1183
  @Entry
L
update  
laosan_ted 已提交
1184 1185
  @Component
  struct WebComponent {
1186 1187 1188
    controller: WebController = new WebController();
    httpAuth: boolean = false;

L
update  
laosan_ted 已提交
1189 1190
    build() {
      Column() {
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onConfirm',
                action: () => {
                  this.httpAuth = event.handler.isHttpAuthInfoSaved();
                  if (this.httpAuth == false) {
                    web.WebDataBase.saveHttpAuthCredentials(
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
                    event.handler.cancel();
                  }
L
update  
laosan_ted 已提交
1209
                }
1210 1211 1212
              },
              cancel: () => {
                event.handler.cancel();
L
update  
laosan_ted 已提交
1213
              }
1214 1215
            })
            return true;
L
update  
laosan_ted 已提交
1216
          })
Y
yu-shihao4 已提交
1217
      }
L
update  
laosan_ted 已提交
1218 1219 1220
    }
  }
  ```
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237
### onPermissionRequest<sup>9+</sup>

onPermissionRequest(callback: (event?: { request: PermissionRequest }) => void)

通知收到获取权限请求。

**参数:**
| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| request | [PermissionRequest](#permissionrequest9) | 通知Web组件用户操作行为。   |

  **示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1238
    controller: WebController = new WebController();
1239 1240
    build() {
      Column() {
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onConfirm',
                action: () => {
                  event.request.grant(event.request.getAccessibleResource());
                }
              },
              cancel: () => {
               event.request.deny();
1254
              }
1255
            })
1256
          })
Y
yu-shihao4 已提交
1257
      }
1258 1259 1260
    }
  }
  ```
1261

1262 1263 1264 1265 1266 1267 1268
### onContextMenuShow<sup>9+</sup>

onContextMenuShow(callback: (event?: { param: WebContextMenuParam, result: WebContextMenuResult }) => boolean)

长按特定元素(例如图片,链接),跳出菜单。

**参数:**
Y
yu-shihao4 已提交
1269

1270 1271 1272 1273 1274
| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| param   | [WebContextMenuParam](#webcontextmenuparam9)   | 菜单相关参数。 |
| result  | [WebContextMenuResult](#webcontextmenuresult9) | 菜单相应事件传入内核。 |

Y
yu-shihao4 已提交
1275 1276
**返回值:**

Y
yu-shihao4 已提交
1277 1278 1279 1280
| 类型     | 说明                   |
| ------ | -------------------- |
| boolean | 自定义菜单返回true,默认菜单返回false。 |

1281
  **示例:**
Y
yu-shihao4 已提交
1282

1283 1284 1285 1286 1287
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1288
    controller: WebController = new WebController();
1289 1290
    build() {
      Column() {
1291
        Web({ src: 'www.example.com', controller: this.controller })
1292 1293 1294 1295 1296
        .onContextMenuShow((event) => {
            console.info("x coord = " + event.param.x());
            console.info("link url = " + event.param.getLinkUrl());
        })
      }
1297 1298 1299
    }
  }
  ```
1300

Z
zhou-liting125 已提交
1301
## ConsoleMessage
1302

L
update  
laosan_ted 已提交
1303
Web组件获取控制台信息对象。示例代码参考[onConsole事件](#onconsole)
1304

Z
zhou-liting125 已提交
1305
### getLineNumber
1306

Z
zhou-liting125 已提交
1307 1308 1309 1310
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
1311
**返回值:** 
1312 1313 1314
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
1315 1316 1317 1318 1319 1320 1321

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
1322
**返回值:** 
1323 1324 1325
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
1326 1327 1328 1329

### getMessageLevel

getMessageLevel(): MessageLevel
1330

Z
zhou-liting125 已提交
1331 1332
获取ConsoleMessage的信息级别。

Z
zhou-liting125 已提交
1333
**返回值:** 
1334 1335 1336
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
1337 1338 1339 1340 1341 1342 1343

### getSourceId

getSourceId(): string

获取网页源文件路径和名字。

Z
zhou-liting125 已提交
1344
**返回值:** 
1345 1346 1347
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
1348 1349

## JsResult
L
lixingchi1 已提交
1350

L
update  
laosan_ted 已提交
1351
Web组件返回的弹窗确认或弹窗取消功能对象。示例代码参考[onAlert事件](#onalert)
L
add web  
liujinwei 已提交
1352

Z
zhou-liting125 已提交
1353 1354 1355
### handleCancel

handleCancel(): void
L
add web  
liujinwei 已提交
1356

Z
zhou-liting125 已提交
1357
通知Web组件用户取消弹窗操作。
L
add web  
liujinwei 已提交
1358

Z
zhou-liting125 已提交
1359
### handleConfirm
L
add web  
liujinwei 已提交
1360

Z
zhou-liting125 已提交
1361
handleConfirm(): void
L
add web  
liujinwei 已提交
1362

Z
zhou-liting125 已提交
1363
通知Web组件用户确认弹窗操作。
L
add web  
liujinwei 已提交
1364

Z
zhou-liting125 已提交
1365 1366 1367 1368 1369 1370
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

通知Web组件用户确认弹窗操作及对话框内容。

Z
zhou-liting125 已提交
1371
**参数:**
1372 1373 1374
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
1375 1376 1377

## WebResourceError

L
update  
laosan_ted 已提交
1378
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1379 1380 1381 1382 1383 1384 1385

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
1386
**返回值:** 
1387 1388 1389
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
1390 1391 1392 1393 1394 1395 1396

### getErrorInfo

getErrorInfo(): string

获取加载资源的错误信息。

Z
zhou-liting125 已提交
1397
**返回值:** 
1398 1399 1400
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
1401 1402 1403

## WebResourceRequest

L
update  
laosan_ted 已提交
1404
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1405 1406 1407 1408 1409 1410 1411

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

Z
zhou-liting125 已提交
1412
**返回值:** 
1413 1414 1415
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
1416 1417 1418 1419 1420 1421 1422

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

Z
zhou-liting125 已提交
1423
**返回值:** 
1424 1425 1426
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
1427 1428 1429 1430 1431 1432 1433

### isMainFrame

isMainFrame(): boolean

判断资源请求是否为主frame。

Z
zhou-liting125 已提交
1434
**返回值:** 
1435 1436 1437
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
1438 1439 1440 1441 1442 1443 1444

### isRedirect

isRedirect(): boolean

判断资源请求是否被服务端重定向。

Z
zhou-liting125 已提交
1445
**返回值:** 
1446 1447 1448
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
1449 1450 1451 1452 1453 1454 1455

### isRequestGesture

isRequestGesture(): boolean

获取资源请求是否与手势(如点击)相关联。

Z
zhou-liting125 已提交
1456
**返回值:** 
1457 1458 1459
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
1460 1461

## Header
L
liwenzhen 已提交
1462 1463 1464

Web组件返回的请求/响应头对象。

1465 1466 1467 1468
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
1469

L
add web  
liujinwei 已提交
1470

Z
zhou-liting125 已提交
1471
## WebResourceResponse
L
add web  
liujinwei 已提交
1472

Z
zhou-liting125 已提交
1473
web组件资源响应对象。示例代码参考[onHttpErrorReceive事件](#onhttperrorreceive)
L
add web  
liujinwei 已提交
1474

Z
zhou-liting125 已提交
1475
### getReasonMessage
T
Ted 已提交
1476

Z
zhou-liting125 已提交
1477
getReasonMessage(): string
T
Ted 已提交
1478

Z
zhou-liting125 已提交
1479
获取资源响应的状态码描述。
T
Ted 已提交
1480

Z
zhou-liting125 已提交
1481
**返回值:** 
1482 1483 1484
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
1485

Z
zhou-liting125 已提交
1486
### getResponseCode
T
Ted 已提交
1487

Z
zhou-liting125 已提交
1488 1489 1490 1491
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
1492
**返回值:** 
1493 1494 1495
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
1496 1497 1498 1499 1500 1501 1502

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
1503
**返回值:** 
1504 1505 1506
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
1507 1508 1509 1510 1511 1512 1513

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
1514
**返回值:** 
1515 1516 1517
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
1518 1519 1520 1521 1522 1523 1524

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
1525
**返回值:** 
1526 1527 1528
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
1529 1530 1531 1532 1533 1534 1535

### getResponseMimeType

getResponseMimeType(): string

获取资源响应的媒体(MIME)类型。

Z
zhou-liting125 已提交
1536
**返回值:** 
1537 1538 1539
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1540 1541 1542 1543 1544 1545 1546

### setResponseData<sup>9+</sup>

setResponseData(data: string)

设置资源响应数据。

Z
zhou-liting125 已提交
1547
**参数:**
1548 1549 1550
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
1551 1552 1553 1554 1555 1556 1557

### setResponseEncoding<sup>9+</sup>

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
1558
**参数:**
1559 1560 1561
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
1562 1563 1564 1565 1566 1567 1568

### setResponseMimeType<sup>9+</sup>

setResponseMimeType(mimeType: string)

设置资源响应的媒体(MIME)类型。

Z
zhou-liting125 已提交
1569
**参数:**
1570 1571 1572
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1573 1574 1575 1576 1577 1578 1579

### setReasonMessage<sup>9+</sup>

setReasonMessage(reason: string)

设置资源响应的状态码描述。

Z
zhou-liting125 已提交
1580
**参数:**
1581 1582 1583
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
1584 1585 1586 1587 1588 1589 1590

### setResponseHeader<sup>9+</sup>

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
1591
**参数:**
1592 1593 1594
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
1595 1596 1597 1598 1599 1600 1601

### setResponseCode<sup>9+</sup>

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
1602
**参数:**
1603 1604 1605
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
1606 1607

## FileSelectorResult<sup>9+</sup>
T
Ted 已提交
1608

Z
zhou-liting125 已提交
1609
通知Web组件的文件选择结果。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
T
Ted 已提交
1610

Z
zhou-liting125 已提交
1611
### handleFileList<sup>9+</sup>
1612

Z
zhou-liting125 已提交
1613
handleFileList(fileList: Array\<string\>): void
1614

Z
zhou-liting125 已提交
1615
通知Web组件进行文件选择操作。
T
Ted 已提交
1616

Z
zhou-liting125 已提交
1617
**参数:**
1618 1619 1620
| 参数名      | 参数类型            | 必填   | 默认值  | 参数描述         |
| -------- | --------------- | ---- | ---- | ------------ |
| fileList | Array\<string\> | 是    | -    | 需要进行操作的文件列表。 |
1621

Z
zhou-liting125 已提交
1622 1623
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
1624
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
1625 1626 1627 1628 1629 1630 1631

### getTitle<sup>9+</sup>

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
1632
**返回值:** 
1633 1634 1635
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
1636 1637 1638 1639 1640 1641 1642

### getMode<sup>9+</sup>

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
1643
**返回值:** 
1644 1645 1646
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
1647 1648 1649 1650 1651 1652 1653

### getAcceptType<sup>9+</sup>

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
1654
**返回值:** 
1655 1656 1657
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
1658 1659 1660 1661 1662 1663 1664

### isCapture<sup>9+</sup>

isCapture(): boolean

获取是否调用多媒体能力。

Z
zhou-liting125 已提交
1665
**返回值:** 
1666 1667 1668
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
1669 1670 1671

## HttpAuthHandler<sup>9+</sup>

Z
zhou-liting125 已提交
1672
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
1673 1674 1675 1676 1677 1678 1679 1680

### cancel<sup>9+</sup>

cancel(): void

通知Web组件用户取消HTTP认证操作。

### confirm<sup>9+</sup>
1681

1682 1683 1684 1685
confirm(userName: string, pwd: string): boolean

使用用户名和密码进行HTTP认证操作。

Z
zhou-liting125 已提交
1686
**参数:**
1687

1688 1689 1690 1691
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述       |
| -------- | ------ | ---- | ---- | ---------- |
| userName | string | 是    | -    | HTTP认证用户名。 |
| pwd      | string | 是    | -    | HTTP认证密码。  |
1692

Z
zhou-liting125 已提交
1693
**返回值:**
1694 1695 1696
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
1697 1698 1699 1700 1701 1702 1703

### isHttpAuthInfoSaved<sup>9+</sup>

isHttpAuthInfoSaved(): boolean

通知Web组件用户使用服务器缓存的账号密码认证。

Z
zhou-liting125 已提交
1704
**返回值:**
1705 1706 1707
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
1708

1709 1710
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
1711
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734

### deny<sup>9+</sup>

deny(): void

拒绝网页所请求的权限。

### getOrigin<sup>9+</sup>

getOrigin(): string

获取网页来源。

**返回值:**

| 类型      | 说明                    |
| ------- | --------------------- |
| string  | 当前请求权限网页的来源。 |

### getAccessibleResource<sup>9+</sup>

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
1735
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
| Array\<string\> | 网页所请求的权限资源列表。 |

### grant<sup>9+</sup>

grant(resources: Array\<string\>): void

X
xiongjun_gitee 已提交
1747
对网页访问的给定权限进行授权。
1748 1749 1750 1751 1752 1753 1754

**参数:**

| 参数名     | 参数类型        | 必填 | 默认值 | 参数描述                |
| --------- | --------------- | ---- | ----- | ---------------------- |
| resources | Array\<string\> | 是   | -     | 网页所请求的权限资源列表。|

1755 1756
## WebContextMenuParam<sup>9+</sup>

Y
yu-shihao4 已提交
1757
实现长按页面元素跳出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768

### x<sup>9+</sup>

x(): number

弹出菜单的x坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1769
| number | 显示正常返回非负整数,否则返回-1。 |
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780

### y<sup>9+</sup>

y(): number

弹出菜单的y坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1781
| number | 显示正常返回非负整数,否则返回-1。 |
1782 1783 1784 1785 1786

### getLinkUrl<sup>9+</sup>

getLinkUrl(): string

Y
yu-shihao4 已提交
1787
获取链接地址。
1788 1789 1790 1791 1792

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1793
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
1794 1795 1796 1797 1798

### getUnfilterendLinkUrl<sup>9+</sup>

getUnfilterendLinkUrl(): string

Y
yu-shihao4 已提交
1799
获取链接地址。
1800 1801 1802 1803 1804

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1805
| string | 如果长按位置是链接,返回原始的url链接。 |
1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832

### getSourceUrl<sup>9+</sup>

getSourceUrl(): string

获取sourceUrl链接。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
| string | 如果选中的元素有src属性,返回src的url。 |

### existsImageContents<sup>9+</sup>

existsImageContents(): boolean

是否存在图像内容。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
| boolean | 长按位置中有图片返回true,否则返回false。 |

## WebContextMenuResult<sup>9+</sup>

Y
yu-shihao4 已提交
1833
实现长按页面元素跳出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846

### closeContextMenu<sup>9+</sup>

closeContextMenu(): void

不执行WebContextMenuResult其他接口操作时,需要调用此接口关闭菜单。

### copyImage<sup>9+</sup>

copyImage(): void

WebContextMenuParam有图片内容则复制图片。

Z
zengyawen 已提交
1847 1848
## WebController

L
liwenzhen 已提交
1849
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
1850 1851 1852 1853 1854 1855 1856

### 创建对象

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

L
laosan_ted 已提交
1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
### requestFocus

requestFocus()

使当前web页面获取焦点。

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('requestFocus')
          .onClick(() => {
            this.controller.requestFocus();
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
lixingchi1 已提交
1883 1884 1885 1886
### accessBackward

accessBackward(): boolean

L
liwenzhen 已提交
1887
当前页面是否可后退,即当前页面是否有返回历史记录。
L
lixingchi1 已提交
1888

Z
zhou-liting125 已提交
1889
**返回值:**
1890 1891 1892
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
1893

Z
zhou-liting125 已提交
1894
**示例:**
Z
zhou-liting125 已提交
1895 1896
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1897
  @Entry
L
update  
laosan_ted 已提交
1898 1899
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1900 1901
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1902 1903 1904
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
1905 1906 1907 1908
          .onClick(() => {
            let result = this.controller.accessBackward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1909
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1910
      }
L
update  
laosan_ted 已提交
1911 1912 1913 1914
    }
  }
  ```

L
lixingchi1 已提交
1915 1916 1917 1918
### accessForward

accessForward(): boolean

L
liwenzhen 已提交
1919
当前页面是否可前进,即当前页面是否有前进历史记录。
L
lixingchi1 已提交
1920

Z
zhou-liting125 已提交
1921
**返回值:**
1922 1923 1924
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
1925

Z
zhou-liting125 已提交
1926
**示例:**
Z
zhou-liting125 已提交
1927 1928
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1929
  @Entry
L
update  
laosan_ted 已提交
1930 1931
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1932 1933
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1934 1935 1936
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
1937 1938 1939 1940
          .onClick(() => {
            let result = this.controller.accessForward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1941
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1942
      }
L
update  
laosan_ted 已提交
1943 1944 1945 1946
    }
  }
  ```

L
lixingchi1 已提交
1947
### accessStep
Z
zengyawen 已提交
1948

L
lixingchi1 已提交
1949
accessStep(step: number): boolean
Z
zengyawen 已提交
1950

L
liwenzhen 已提交
1951
当前页面是否可前进或者后退给定的step步。
Z
zengyawen 已提交
1952

Z
zhou-liting125 已提交
1953
**参数:**
Z
zengyawen 已提交
1954

1955 1956 1957
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述                  |
| ---- | ------ | ---- | ---- | --------------------- |
| step | number | 是    | -    | 要跳转的步数,正数代表前进,负数代表后退。 |
L
lixingchi1 已提交
1958

Z
zhou-liting125 已提交
1959
**返回值:**
1960 1961 1962
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
1963

Z
zhou-liting125 已提交
1964
**示例:**
Z
zhou-liting125 已提交
1965 1966
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1967
  @Entry
L
update  
laosan_ted 已提交
1968 1969
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1970
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
1971
    @State steps: number = 2;
L
laosan_ted 已提交
1972
  
L
update  
laosan_ted 已提交
1973 1974 1975
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
1976 1977 1978 1979
          .onClick(() => {
            let result = this.controller.accessStep(this.steps);
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1980
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1981
      }
L
update  
laosan_ted 已提交
1982 1983 1984 1985
    }
  }
  ```

L
lixingchi1 已提交
1986 1987
### backward

L
update  
laosan_ted 已提交
1988
backward(): void
L
lixingchi1 已提交
1989

L
liwenzhen 已提交
1990
按照历史栈,后退一个页面。一般结合accessBackward一起使用。
L
lixingchi1 已提交
1991

Z
zhou-liting125 已提交
1992
**示例:**
Z
zhou-liting125 已提交
1993 1994
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1995
  @Entry
L
update  
laosan_ted 已提交
1996 1997
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1998 1999
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2000 2001 2002
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
2003 2004 2005
          .onClick(() => {
            this.controller.backward();
          })
Z
zhou-liting125 已提交
2006
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2007
      }
L
update  
laosan_ted 已提交
2008 2009 2010
    }
  }
  ```
L
lixingchi1 已提交
2011 2012 2013

### forward

L
update  
laosan_ted 已提交
2014
forward(): void
L
lixingchi1 已提交
2015

L
liwenzhen 已提交
2016
按照历史栈,前进一个页面。一般结合accessForward一起使用。
L
lixingchi1 已提交
2017

Z
zhou-liting125 已提交
2018
**示例:**
Z
zhou-liting125 已提交
2019 2020
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2021
  @Entry
L
update  
laosan_ted 已提交
2022 2023
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2024 2025
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2026 2027 2028
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
2029 2030 2031
          .onClick(() => {
            this.controller.forward();
          })
Z
zhou-liting125 已提交
2032
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2033
      }
L
update  
laosan_ted 已提交
2034 2035 2036 2037
    }
  }
  ```

2038 2039 2040 2041 2042 2043
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

按照历史栈,前进或者后退指定步长的页面,当历史栈中不存在对应步长的页面时,不会进行页面跳转。

Z
zhou-liting125 已提交
2044
**参数:**
2045 2046 2047
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| step | number | 是    | -    | 需要前进或后退的步长。 |
2048

Z
zhou-liting125 已提交
2049
**示例:**
Z
zhou-liting125 已提交
2050 2051
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2052
  @Entry
L
update  
laosan_ted 已提交
2053 2054
  @Component
  struct WebComponent {
2055
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2056 2057 2058 2059 2060 2061
    build() {
      Column() {
        Button('backOrForward')
        .onClick(() => {
          this.controller.backOrForward();
        })
2062
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
2063 2064 2065 2066 2067 2068 2069 2070
    }
  }
  ```

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

L
laosan_ted 已提交
2071
删除通过registerJavaScriptProxy注册到window上的指定name的应用侧JavaScript对象。删除后立即生效,无须调用[refresh](#refresh)接口。
L
update  
laosan_ted 已提交
2072

Z
zhou-liting125 已提交
2073
**参数:**
2074 2075 2076
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---- | ------ | ---- | ---- | ---------------------------------------- |
| name | string | 是    | -    | 注册对象的名称,可在网页侧JavaScript中通过此名称调用应用侧JavaScript对象。 |
L
update  
laosan_ted 已提交
2077

Z
zhou-liting125 已提交
2078
**示例:**
Z
zhou-liting125 已提交
2079 2080
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2081
  @Entry
L
update  
laosan_ted 已提交
2082 2083
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2084
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2085
    @State name: string = 'Object';
L
laosan_ted 已提交
2086
  
L
update  
laosan_ted 已提交
2087 2088 2089
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
2090 2091 2092
          .onClick(() => {
            this.controller.deleteJavaScriptRegister(this.name);
          })
Z
zhou-liting125 已提交
2093
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2094
      }
L
update  
laosan_ted 已提交
2095 2096 2097 2098
    }
  }
  ```

L
lixingchi1 已提交
2099 2100 2101 2102
### getHitTest

getHitTest(): HitTestType

L
liwenzhen 已提交
2103
获取当前被点击区域的元素类型。	
L
lixingchi1 已提交
2104

Z
zhou-liting125 已提交
2105
**返回值:**
2106 2107 2108
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
2109

Z
zhou-liting125 已提交
2110
**示例:**
Z
zhou-liting125 已提交
2111 2112
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2113
  @Entry
L
update  
laosan_ted 已提交
2114 2115
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2116 2117
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2118 2119 2120
    build() {
      Column() {
        Button('getHitTest')
L
laosan_ted 已提交
2121 2122 2123 2124
          .onClick(() => {
            let hitType = this.controller.getHitTest();
            console.log("hitType: " + hitType);
          })
Z
zhou-liting125 已提交
2125
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2126
      }
L
update  
laosan_ted 已提交
2127 2128 2129 2130
    }
  }
  ```

2131 2132 2133 2134 2135
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

获取当前被点击区域的元素信息。

Z
zhou-liting125 已提交
2136
**返回值:**
2137 2138 2139
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
2140

Z
zhou-liting125 已提交
2141
**示例:**
Z
zhou-liting125 已提交
2142 2143
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2144
  @Entry
L
update  
laosan_ted 已提交
2145 2146
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2147 2148
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2149 2150 2151
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
2152 2153 2154 2155 2156
          .onClick(() => {
            let hitValue = this.controller.getHitTestValue();
            console.log("hitType: " + hitValue.getType());
            console.log("extra: " + hitValue.getExtra());
          })
Z
zhou-liting125 已提交
2157
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2158
      }
L
update  
laosan_ted 已提交
2159 2160 2161 2162
    }
  }
  ```

2163 2164 2165 2166 2167
### getWebId<sup>9+</sup>
getWebId(): number

获取当前Web组件的索引值,用于多个Web组件的管理。

Z
zhou-liting125 已提交
2168
**返回值:**
2169 2170 2171
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
2172

Z
zhou-liting125 已提交
2173
**示例:**
Z
zhou-liting125 已提交
2174 2175
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2176
  @Entry
L
update  
laosan_ted 已提交
2177 2178
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2179 2180
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2181 2182 2183
    build() {
      Column() {
        Button('getWebId')
L
laosan_ted 已提交
2184 2185 2186 2187
          .onClick(() => {
            let id = this.controller.getWebId();
            console.log("id: " + id);
          })
Z
zhou-liting125 已提交
2188
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2189
      }
L
update  
laosan_ted 已提交
2190 2191 2192 2193
    }
  }
  ```

2194 2195 2196 2197
### getTitle<sup>9+</sup>
getTitle(): string

获取当前网页的标题。
Z
zhou-liting125 已提交
2198 2199

**返回值:**
2200 2201 2202
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
2203

Z
zhou-liting125 已提交
2204
**示例:**
Z
zhou-liting125 已提交
2205 2206
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2207
  @Entry
L
update  
laosan_ted 已提交
2208 2209
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2210 2211
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2212 2213 2214
    build() {
      Column() {
        Button('getTitle')
L
laosan_ted 已提交
2215 2216 2217 2218
          .onClick(() => {
            let title = this.controller.getTitle();
            console.log("title: " + title);
          })
Z
zhou-liting125 已提交
2219
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2220
      }
L
update  
laosan_ted 已提交
2221 2222 2223 2224
    }
  }
  ```

2225 2226 2227 2228
### getPageHeight<sup>9+</sup>
getPageHeight(): number

获取当前网页的页面高度。
Z
zhou-liting125 已提交
2229 2230

**返回值:**
2231 2232 2233
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
2234

Z
zhou-liting125 已提交
2235
**示例:**
Z
zhou-liting125 已提交
2236 2237
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2238
  @Entry
L
update  
laosan_ted 已提交
2239 2240
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2241 2242
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2243 2244 2245
    build() {
      Column() {
        Button('getPageHeight')
L
laosan_ted 已提交
2246 2247 2248 2249
          .onClick(() => {
            let pageHeight = this.controller.getPageHeight();
            console.log("pageHeight: " + pageHeight);
          })
Z
zhou-liting125 已提交
2250
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2251
      }
L
update  
laosan_ted 已提交
2252 2253 2254
    }
  }
  ```
2255 2256 2257 2258 2259

### getDefaultUserAgent<sup>9+</sup>
getDefaultUserAgent(): string

获取当前默认用户代理。
L
update  
laosan_ted 已提交
2260

Z
zhou-liting125 已提交
2261
**返回值:**
2262 2263 2264
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
2265

Z
zhou-liting125 已提交
2266
**示例:**
Z
zhou-liting125 已提交
2267 2268
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2269
  @Entry
L
update  
laosan_ted 已提交
2270 2271
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2272 2273
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2274 2275 2276
    build() {
      Column() {
        Button('getDefaultUserAgent')
L
laosan_ted 已提交
2277 2278 2279 2280
          .onClick(() => {
            let userAgent = this.controller.getDefaultUserAgent();
            console.log("userAgent: " + userAgent);
          })
Z
zhou-liting125 已提交
2281
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2282
      }
L
update  
laosan_ted 已提交
2283 2284 2285 2286
    }
  }
  ```

L
lixingchi1 已提交
2287 2288
### loadData

Z
zhou-liting125 已提交
2289
loadData(options: { data: string, mimeType: string, encoding: string, baseUrl?: string, historyUrl?: string })
L
lixingchi1 已提交
2290

L
liwenzhen 已提交
2291 2292
baseUrl为空时,通过”data“协议加载指定的一段字符串。

L
liwenzhen 已提交
2293
当baseUrl为”data“协议时,编码后的data字符串将被Web组件作为”data"协议加载。
L
liwenzhen 已提交
2294

L
liwenzhen 已提交
2295
当baseUrl为“http/https"协议时,编码后的data字符串将被Web组件以类似loadUrl的方式以非编码字符串处理。
L
lixingchi1 已提交
2296

Z
zhou-liting125 已提交
2297
**参数:**
2298 2299 2300 2301 2302 2303 2304
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| data       | string | 是    | -    | 按照”Base64“或者”URL"编码后的一段字符串。              |
| mimeType   | string | 是    | -    | 媒体类型(MIME)。                              |
| encoding   | string | 是    | -    | 编码类型,具体为“Base64"或者”URL编码。                |
| baseUrl    | string | 否    | -    | 指定的一个URL路径(“http”/“https”/"data"协议),并由Web组件赋值给window.origin。 |
| historyUrl | string | 否    | -    | 历史记录URL。非空时,可被历史记录管理,实现前后后退功能。当baseUrl为空时,此属性无效。 |
Z
zengyawen 已提交
2305

Z
zhou-liting125 已提交
2306
**示例:**
Z
zhou-liting125 已提交
2307 2308
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2309
  @Entry
L
update  
laosan_ted 已提交
2310 2311
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2312 2313
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2314 2315 2316
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
2317 2318 2319 2320 2321 2322 2323
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
            });
          })
Z
zhou-liting125 已提交
2324
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2325
      }
L
update  
laosan_ted 已提交
2326 2327 2328 2329
    }
  }
  ```

Z
zengyawen 已提交
2330 2331
### loadUrl

Z
zhou-liting125 已提交
2332
loadUrl(options: { url: string | Resource, headers?: Array\<Header\> })
L
liwenzhen 已提交
2333 2334

使用指定的http头加载指定的URL。
Z
zengyawen 已提交
2335

L
liwenzhen 已提交
2336 2337 2338
通过loadUrl注入的对象只在当前document有效,即通过loadUrl导航到新的页面会无效。

而通过registerJavaScriptProxy注入的对象,在loadUrl导航到新的页面也会有效。
Z
zengyawen 已提交
2339

Z
zhou-liting125 已提交
2340
**参数:**
2341 2342 2343 2344
| 参数名     | 参数类型                       | 必填   | 默认值  | 参数描述           |
| ------- | -------------------------- | ---- | ---- | -------------- |
| url     | string                     | 是    | -    | 需要加载的 URL。     |
| headers | Array\<[Header](#header)\> | 否    | []   | URL的附加HTTP请求头。 |
L
lixingchi1 已提交
2345

Z
zhou-liting125 已提交
2346
**示例:**
Z
zhou-liting125 已提交
2347 2348
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2349
  @Entry
L
update  
laosan_ted 已提交
2350 2351
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2352 2353
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2354 2355 2356
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
2357
          .onClick(() => {
Z
zhou-liting125 已提交
2358
            this.controller.loadUrl({ url: 'www.example.com' });
L
laosan_ted 已提交
2359
          })
Z
zhou-liting125 已提交
2360
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2361
      }
L
update  
laosan_ted 已提交
2362 2363 2364 2365
    }
  }
  ```

L
lixingchi1 已提交
2366 2367 2368 2369
### onActive

onActive(): void

L
liwenzhen 已提交
2370
调用此接口通知Web组件进入前台激活状态。
L
lixingchi1 已提交
2371

Z
zhou-liting125 已提交
2372
**示例:**
Z
zhou-liting125 已提交
2373 2374
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2375
  @Entry
L
update  
laosan_ted 已提交
2376 2377
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2378 2379
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2380 2381 2382
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
2383 2384 2385
          .onClick(() => {
            this.controller.onActive();
          })
Z
zhou-liting125 已提交
2386
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2387
      }
L
update  
laosan_ted 已提交
2388 2389 2390 2391
    }
  }
  ```

L
lixingchi1 已提交
2392 2393 2394 2395
### onInactive

onInactive(): void

L
liwenzhen 已提交
2396
调用此接口通知Web组件进入未激活状态。
L
lixingchi1 已提交
2397

Z
zhou-liting125 已提交
2398
**示例:**
Z
zhou-liting125 已提交
2399 2400
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2401
  @Entry
L
update  
laosan_ted 已提交
2402 2403
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2404 2405
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2406 2407 2408
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
2409 2410 2411
          .onClick(() => {
            this.controller.onInactive();
          })
Z
zhou-liting125 已提交
2412
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2413
      }
L
update  
laosan_ted 已提交
2414 2415 2416 2417
    }
  }
  ```

2418 2419 2420 2421
### zoom
zoom(factor: number): void

调整当前网页的缩放比例。
L
update  
laosan_ted 已提交
2422

Z
zhou-liting125 已提交
2423
**参数:**
2424 2425 2426
| 参数名    | 参数类型   | 必填   | 参数描述                           |
| ------ | ------ | ---- | ------------------------------ |
| factor | number | 是    | 基于当前网页所需调整的相对缩放比例,正值为放大,负值为缩小。 |
2427

Z
zhou-liting125 已提交
2428
**示例:**
Z
zhou-liting125 已提交
2429 2430
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2431
  @Entry
L
update  
laosan_ted 已提交
2432 2433
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2434
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2435
    @State factor: number = 1;
L
laosan_ted 已提交
2436
  
L
update  
laosan_ted 已提交
2437 2438 2439
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
2440 2441 2442
          .onClick(() => {
            this.controller.zoom(this.factor);
          })
Z
zhou-liting125 已提交
2443
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2444
      }
L
update  
laosan_ted 已提交
2445 2446 2447 2448
    }
  }
  ```

2449 2450 2451 2452
### zoomIn<sup>9+</sup>
zoomIn(): boolean

调用此接口将当前网页进行放大,比列20%。
Z
zhou-liting125 已提交
2453 2454

**返回值:**
2455 2456 2457
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
2458

Z
zhou-liting125 已提交
2459
**示例:**
Z
zhou-liting125 已提交
2460 2461
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2462
  @Entry
L
update  
laosan_ted 已提交
2463 2464
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2465 2466
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2467 2468 2469
    build() {
      Column() {
        Button('zoomIn')
L
laosan_ted 已提交
2470 2471 2472 2473
          .onClick(() => {
            let result = this.controller.zoomIn();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2474
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2475
      }
L
update  
laosan_ted 已提交
2476 2477 2478 2479
    }
  }
  ```

2480 2481 2482 2483
### zoomOut<sup>9+</sup>
zoomOut(): boolean

调用此接口将当前网页进行缩小,比列20%。
Z
zhou-liting125 已提交
2484 2485

**返回值:**
2486 2487 2488
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
2489

Z
zhou-liting125 已提交
2490
**示例:**
Z
zhou-liting125 已提交
2491 2492
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2493
  @Entry
L
update  
laosan_ted 已提交
2494 2495
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2496 2497
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2498 2499 2500
    build() {
      Column() {
        Button('zoomOut')
L
laosan_ted 已提交
2501 2502 2503 2504
          .onClick(() => {
            let result = this.controller.zoomOut();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2505
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2506
      }
L
update  
laosan_ted 已提交
2507 2508 2509 2510
    }
  }
  ```

L
lixingchi1 已提交
2511 2512
### refresh

Z
zhou-liting125 已提交
2513
refresh()
L
lixingchi1 已提交
2514

L
liwenzhen 已提交
2515
调用此接口通知Web组件刷新网页。
L
lixingchi1 已提交
2516

Z
zhou-liting125 已提交
2517
**示例:**
Z
zhou-liting125 已提交
2518 2519
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2520
  @Entry
L
update  
laosan_ted 已提交
2521 2522
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2523 2524
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2525 2526 2527
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
2528 2529 2530
          .onClick(() => {
            this.controller.refresh();
          })
Z
zhou-liting125 已提交
2531
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2532
      }
L
update  
laosan_ted 已提交
2533 2534 2535 2536
    }
  }
  ```

L
lixingchi1 已提交
2537 2538
### registerJavaScriptProxy

Z
zhou-liting125 已提交
2539
registerJavaScriptProxy(options: { object: object, name: string, methodList: Array\<string\> })
L
lixingchi1 已提交
2540

L
laosan_ted 已提交
2541
注入JavaScript对象到window对象中,并在window对象中调用该对象的方法。注册后,须调用[refresh](#refresh)接口生效。
L
lixingchi1 已提交
2542

Z
zhou-liting125 已提交
2543
**参数:**
2544 2545 2546 2547 2548
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                                     |
| ---------- | --------------- | ---- | ---- | ---------------------------------------- |
| object     | object          | 是    | -    | 参与注册的应用侧JavaScript对象。只能声明方法,不能声明属性 。其中方法的参数和返回类型只能为string,number,boolean |
| name       | string          | 是    | -    | 注册对象的名称,与window中调用的对象名一致。注册后window对象可以通过此名字访问应用侧JavaScript对象。 |
| methodList | Array\<string\> | 是    | -    | 参与注册的应用侧JavaScript对象的方法。                 |
L
lixingchi1 已提交
2549

Z
zhou-liting125 已提交
2550
**示例:**
Z
zhou-liting125 已提交
2551 2552
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2553
  @Entry
L
update  
laosan_ted 已提交
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
        return "ArkUI Web Component";
      },
      toString: () => {
        console.log('Web Component toString');
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
            });
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
2582

L
update  
laosan_ted 已提交
2583
  ```html
L
laosan_ted 已提交
2584
  <!-- index.html -->
L
update  
laosan_ted 已提交
2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
          str = objName.test("test function");
          console.log('objName.test result:'+ str);
      }
  </script>
  </html>
  
  ```

L
lixingchi1 已提交
2601 2602
### runJavaScript

Z
zhou-liting125 已提交
2603
runJavaScript(options: { script: string, callback?: (result: string) => void })
L
lixingchi1 已提交
2604

L
liwenzhen 已提交
2605
异步执行JavaScript脚本,并通过回调方式返回脚本执行的结果。runJavaScript需要在loadUrl完成后,比如onPageEnd中调用。
L
lixingchi1 已提交
2606

Z
zhou-liting125 已提交
2607
**参数:**
2608 2609 2610 2611
| 参数名      | 参数类型                     | 必填   | 默认值  | 参数描述                                     |
| -------- | ------------------------ | ---- | ---- | ---------------------------------------- |
| script   | string                   | 是    | -    | JavaScript脚本。                            |
| callback | (result: string) => void | 否    | -    | 回调执行JavaScript脚本结果。JavaScript脚本若执行失败或无返回值时,返回null。 |
L
lixingchi1 已提交
2612

Z
zhou-liting125 已提交
2613
**示例:**
Z
zhou-liting125 已提交
2614 2615
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2616
  @Entry
L
update  
laosan_ted 已提交
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    @State webResult: string = ''
    build() {
      Column() {
        Text(this.webResult).fontSize(20)
        Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          this.controller.runJavaScript({
            script: 'test()',
            callback: (result: string)=> {
              this.webResult = result
              console.info(`The test() return value is: ${result}`)
            }});
          console.info('url: ', e.url);
        })
      }
    }
  }
  ```

  ```html
L
laosan_ted 已提交
2641
  <!-- index.html -->
L
update  
laosan_ted 已提交
2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
        console.log('Ark WebComponent');
        return "This value is from index.html"
    }
    </script>
  </html>

  ```

L
lixingchi1 已提交
2658 2659
### stop

Z
zhou-liting125 已提交
2660
stop()
Z
zengyawen 已提交
2661

L
lixingchi1 已提交
2662
停止页面加载。
Z
zengyawen 已提交
2663

Z
zhou-liting125 已提交
2664
**示例:**
Z
zhou-liting125 已提交
2665 2666
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2667
  @Entry
L
update  
laosan_ted 已提交
2668 2669
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2670 2671
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2672 2673 2674
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
2675 2676 2677
          .onClick(() => {
            this.controller.stop();
          })
Z
zhou-liting125 已提交
2678
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2679
      }
L
update  
laosan_ted 已提交
2680 2681 2682 2683
    }
  }
  ```

T
Ted 已提交
2684 2685 2686 2687 2688 2689
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
2690
**示例:**
Z
zhou-liting125 已提交
2691 2692
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2693
  @Entry
L
update  
laosan_ted 已提交
2694 2695
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2696 2697
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2698 2699 2700
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
2701 2702 2703
          .onClick(() => {
            this.controller.clearHistory();
          })
Z
zhou-liting125 已提交
2704
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2705
      }
L
update  
laosan_ted 已提交
2706 2707 2708 2709
    }
  }
  ```

Z
zhou-liting125 已提交
2710
### getCookieManager<sup>9+</sup>
T
Ted 已提交
2711 2712 2713 2714

getCookieManager(): WebCookie

获取web组件cookie管理对象。
Z
zhou-liting125 已提交
2715 2716

**返回值:**
2717 2718 2719
| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
2720

Z
zhou-liting125 已提交
2721
**示例:**
Z
zhou-liting125 已提交
2722 2723
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2724
  @Entry
L
update  
laosan_ted 已提交
2725 2726
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2727 2728
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2729 2730 2731
    build() {
      Column() {
        Button('getCookieManager')
L
laosan_ted 已提交
2732 2733 2734
          .onClick(() => {
            let cookieManager = this.controller.getCookieManager();
          })
Z
zhou-liting125 已提交
2735
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2736
      }
L
update  
laosan_ted 已提交
2737 2738 2739 2740
    }
  }
  ```

2741 2742
### createWebMessagePorts<sup>9+</sup>

E
echoorchid 已提交
2743
createWebMessagePorts(): Array\<WebMessagePort\>
2744 2745 2746 2747

创建Web信息端口。

**返回值:**
2748

2749 2750
| 类型                              | 说明            |
| ------------------------------- | ------------- |
E
echoorchid 已提交
2751
| Array\<[WebMessagePort](#webmessageport9)\> | web信息端口列表。 |
2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;
    build() {
      Column() {
        Button('createWebMessagePorts')
          .onClick(() => {
            this.ports = this.controller.createWebMessagePorts();
            console.log("createWebMessagePorts size:" + this.ports.length)
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### postMessage<sup>9+</sup>

postMessage(options: { message: WebMessageEvent, uri: string}): void

E
echoorchid 已提交
2778
发送Web信息端口到HTML5。
2779 2780

**参数:**
2781

2782 2783
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
E
echoorchid 已提交
2784
| message     | [WebMessageEvent](#webmessageevent9)          | 是    | -    |要发送的信息,包含数据和信息端口 。 |
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822
| uri       | string          | 是    | -    | 接收该信息的URI。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;
    build() {
      Column() {
        Button('postMessage')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[1]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("__init_ports__");
            msgEvent.setPorts(sendPortArray);
            this.controller.postMessage(msgEvent, uri:"*");
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  // xxx.js
  var h5Port;
  window.addEventListener('message', function(event){
    if (event.data == '__init_ports__') {
      if(event.ports[0] != null) {
        h5Port = event.ports[0];
        h5Port.onmessage = function(event) {
          console.log('receive message from ets, on message:' + event.data);
        }
      }
    }
  })
  ```

2823
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
2824
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
2825 2826 2827 2828 2829

### getType<sup>9+</sup>
getType(): HitTestType

获取当前被点击区域的元素类型。
Z
zhou-liting125 已提交
2830 2831

**返回值:**
2832 2833 2834
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
2835 2836 2837 2838 2839

### getExtra<sup>9+</sup>
getExtra(): string

若被点击区域为图片或链接,则附加参数信息为其url地址。
Z
zhou-liting125 已提交
2840 2841

**返回值:**
2842 2843 2844
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
2845

L
laosan_ted 已提交
2846

T
Ted 已提交
2847
## WebCookie
Z
zhou-liting125 已提交
2848

T
Ted 已提交
2849
通过WebCookie可以控制Web组件中的cookie的各种行为,其中每个应用中的所有web组件共享一个WebCookie。通过controller方法中的getCookieManager方法可以获取WebCookie对象,进行后续的cookie管理操作。
Z
zhou-liting125 已提交
2850 2851

### setCookie<sup>9+</sup>
T
Ted 已提交
2852 2853 2854 2855
setCookie(url: string, value: string): boolean

设置cookie,该方法为同步方法。设置成功返回true,否则返回false。

Z
zhou-liting125 已提交
2856
**参数:**
2857 2858 2859 2860
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
2861

Z
zhou-liting125 已提交
2862
**返回值:** 
2863 2864 2865
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
2866

Z
zhou-liting125 已提交
2867
**示例:**
Z
zhou-liting125 已提交
2868 2869
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2870
  @Entry
L
update  
laosan_ted 已提交
2871 2872
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2873 2874
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2875 2876 2877
    build() {
      Column() {
        Button('setCookie')
L
laosan_ted 已提交
2878
          .onClick(() => {
Z
zhou-liting125 已提交
2879
            let result = this.controller.getCookieManager().setCookie("www.example.com", "a=b");
L
laosan_ted 已提交
2880 2881
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2882
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2883
      }
L
update  
laosan_ted 已提交
2884 2885 2886 2887
    }
  }
  ```

Z
zhou-liting125 已提交
2888
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
2889 2890 2891
saveCookieSync(): boolean

将当前存在内存中的cookie同步到磁盘中,该方法为同步方法。
Z
zhou-liting125 已提交
2892 2893

**返回值:**
2894 2895 2896
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |
2897

Z
zhou-liting125 已提交
2898
**示例:**
Z
zhou-liting125 已提交
2899 2900
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2901
  @Entry
L
update  
laosan_ted 已提交
2902 2903
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2904 2905
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2906 2907 2908
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
2909 2910 2911 2912
          .onClick(() => {
            let result = this.controller.getCookieManager().saveCookieSync();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2913
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2914
      }
L
update  
laosan_ted 已提交
2915 2916 2917 2918
    }
  }
  ```

2919 2920 2921 2922 2923 2924 2925
## WebDataBase<sup>9+</sup>
web组件数据库管理对象。

### existHttpAuthCredentials<sup>9+</sup>

static existHttpAuthCredentials(): boolean

2926
判断是否存在任何已保存的HTTP身份验证凭据,该方法为同步方法。存在返回true,不存在返回false。
2927

Z
zhou-liting125 已提交
2928
**返回值:** 
2929 2930 2931
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 是否存在任何已保存的HTTP身份验证凭据。存在返回true,不存在返回false |
2932

Z
zhou-liting125 已提交
2933
**示例:**
Z
zhou-liting125 已提交
2934 2935
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2936
  import web from '@ohos.web';
L
laosan_ted 已提交
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
            let result = web.WebDataBase.existHttpAuthCredentials();
            console.log('result: ' + result);
          })
Z
zhou-liting125 已提交
2949
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2950 2951 2952
      }
    }
  }
L
update  
laosan_ted 已提交
2953 2954
  ```

2955 2956 2957 2958 2959 2960
### deleteHttpAuthCredentials<sup>9+</sup>

static deleteHttpAuthCredentials(): void

清除所有已保存的HTTP身份验证凭据,该方法为同步方法。

Z
zhou-liting125 已提交
2961
**示例:**
Z
zhou-liting125 已提交
2962 2963
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2964
  import web from '@ohos.web';
L
laosan_ted 已提交
2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
            web.WebDataBase.deleteHttpAuthCredentials();
          })
Z
zhou-liting125 已提交
2976
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2977 2978 2979
      }
    }
  }
L
update  
laosan_ted 已提交
2980 2981
  ```

2982 2983 2984 2985
### getHttpAuthCredentials<sup>9+</sup>

static getHttpAuthCredentials(host: string, realm: string): Array\<string\>

2986
检索给定主机和域的HTTP身份验证凭据,该方法为同步方法。检索成功返回一个包含用户名和密码的组数,检索不成功返回空数组。
2987

Z
zhou-liting125 已提交
2988
**参数:**
2989 2990 2991 2992
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
2993

Z
zhou-liting125 已提交
2994
**返回值:** 
2995 2996 2997
| 类型              | 说明                     |
| --------------- | ---------------------- |
| Array\<string\> | 包含用户名和密码的组数,检索失败返回空数组。 |
2998

Z
zhou-liting125 已提交
2999
**示例:**
Z
zhou-liting125 已提交
3000 3001
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3002
  import web from '@ohos.web';
L
laosan_ted 已提交
3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    host: string = "www.spincast.org";
    realm: string = "protected example";
    username_password: string[];
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
            this.username_password = web.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
            console.log('num: ' + this.username_password.length);
            ForEach(this.username_password, (item) => {
              console.log('username_password: ' + item);
            }, item => item)
          })
Z
zhou-liting125 已提交
3020
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3021 3022 3023
      }
    }
  }
L
update  
laosan_ted 已提交
3024 3025
  ```

3026 3027 3028 3029
### saveHttpAuthCredentials<sup>9+</sup>

static saveHttpAuthCredentials(host: string, realm: string, username: string, password: string): void

3030
保存给定主机和域的HTTP身份验证凭据,该方法为同步方法。
3031

Z
zhou-liting125 已提交
3032
**参数:**
3033 3034 3035 3036 3037 3038
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
3039

Z
zhou-liting125 已提交
3040
**示例:**
Z
zhou-liting125 已提交
3041 3042
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3043
  import web from '@ohos.web';
L
laosan_ted 已提交
3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    host: string = "www.spincast.org";
    realm: string = "protected example";
    build() {
      Column() {
        Button('saveHttpAuthCredentials')
          .onClick(() => {
            web.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
          })
Z
zhou-liting125 已提交
3056
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3057 3058 3059
      }
    }
  }
L
update  
laosan_ted 已提交
3060 3061
  ```

3062 3063 3064 3065 3066 3067
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

清除Web SQL数据库当前使用的所有存储。
L
update  
laosan_ted 已提交
3068

Z
zhou-liting125 已提交
3069
**示例:**
Z
zhou-liting125 已提交
3070 3071
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3072
  import web from '@ohos.web';
L
laosan_ted 已提交
3073 3074 3075 3076 3077 3078 3079 3080 3081 3082
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
            web.WebStorage.deleteAllData();
          })
Z
zhou-liting125 已提交
3083
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3084 3085 3086 3087
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3088 3089
  ```

3090 3091 3092 3093
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

清除指定源所使用的存储。
Z
zhou-liting125 已提交
3094

Z
zhou-liting125 已提交
3095
**参数:**
3096 3097 3098
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
3099

Z
zhou-liting125 已提交
3100
**示例:**
Z
zhou-liting125 已提交
3101 3102
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3103
  import web from '@ohos.web';
L
laosan_ted 已提交
3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
            web.WebStorage.deleteOrigin(this.origin);
          })
Z
zhou-liting125 已提交
3115
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3116 3117 3118 3119
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3120 3121
  ```

3122
### getOrigins<sup>9+</sup>
Z
zhou-liting125 已提交
3123
static getOrigins(callback: AsyncCallback<Array<[WebStorageOrigin]>>) : void
3124 3125

以回调方式异步获取当前使用Web SQL数据库的所有源的信息。
Z
zhou-liting125 已提交
3126

Z
zhou-liting125 已提交
3127
**参数:**
3128 3129 3130
| 参数名      | 参数类型                                     | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| callback | AsyncCallback<Array<[WebStorageOrigin](#webstorageorigin9)>> | 是    | 以数组方式返回源的信息,信息内容参考WebStorageOrigin。 |
3131

Z
zhou-liting125 已提交
3132
**示例:**
Z
zhou-liting125 已提交
3133 3134
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3135
  import web from '@ohos.web';
L
laosan_ted 已提交
3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
            web.WebStorage.getOrigins((error, origins) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              for (let i = 0; i < origins.length; i++) {
                console.log('origin: ' + origins[i].origin);
                console.log('usage: ' + origins[i].usage);
                console.log('quota: ' + origins[i].quota);
              }
            })
          })
Z
zhou-liting125 已提交
3157
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3158 3159
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3160
    }
L
laosan_ted 已提交
3161 3162
  }
  ```
L
update  
laosan_ted 已提交
3163

3164
### getOrigins<sup>9+</sup>
Z
zhou-liting125 已提交
3165
static getOrigins() : Promise<Array<[WebStorageOrigin]>>
3166 3167

以Promise方式异步获取当前使用Web SQL数据库的所有源的信息。
Z
zhou-liting125 已提交
3168

Z
zhou-liting125 已提交
3169
**返回值:**
3170 3171 3172
| 类型                                       | 说明                                       |
| ---------------------------------------- | ---------------------------------------- |
| Promise<Array<[WebStorageOrigin](#webstorageorigin9)>> | Promise实例,用于获取当前所有源的信息,信息内容参考WebStorageOrigin。 |
3173

Z
zhou-liting125 已提交
3174
**示例:**
Z
zhou-liting125 已提交
3175 3176
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3177
  import web from '@ohos.web';
L
laosan_ted 已提交
3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
            web.WebStorage.getOrigins()
              .then(origins => {
                for (let i = 0; i < origins.length; i++) {
                  console.log('origin: ' + origins[i].origin);
                  console.log('usage: ' + origins[i].usage);
                  console.log('quota: ' + origins[i].quota);
                }
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3199
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3200 3201
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3202
    }
L
laosan_ted 已提交
3203
  }
L
update  
laosan_ted 已提交
3204 3205
  ```

3206
### getOriginQuota<sup>9+</sup>
3207
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
3208 3209

使用callback回调异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。
Z
zhou-liting125 已提交
3210

Z
zhou-liting125 已提交
3211
**参数:**
3212 3213 3214
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
3215
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
3216

Z
zhou-liting125 已提交
3217
**示例:**
Z
zhou-liting125 已提交
3218 3219
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3220
  import web from '@ohos.web';
L
laosan_ted 已提交
3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginQuota(this.origin, (error, quota) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              console.log('quota: ' + quota);
            })
          })
Z
zhou-liting125 已提交
3238
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3239 3240
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3241
    }
L
laosan_ted 已提交
3242
  }
L
update  
laosan_ted 已提交
3243 3244
  ```

3245
### getOriginQuota<sup>9+</sup>
3246
static getOriginQuota(origin : string) : Promise\<number>
3247 3248

以Promise方式异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。
Z
zhou-liting125 已提交
3249

Z
zhou-liting125 已提交
3250
**参数:**
3251 3252 3253
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
3254

Z
zhou-liting125 已提交
3255
**返回值:**
3256 3257
| 类型               | 说明                      |
| ---------------- | ----------------------- |
3258
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
3259

Z
zhou-liting125 已提交
3260
**示例:**
Z
zhou-liting125 已提交
3261 3262
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3263
  import web from '@ohos.web';
L
laosan_ted 已提交
3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginQuota(this.origin)
              .then(quota => {
                console.log('quota: ' + quota);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3281
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3282 3283 3284 3285
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3286 3287
  ```

3288
### getOriginUsage<sup>9+</sup>
3289
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
3290 3291

以回调方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。
Z
zhou-liting125 已提交
3292

Z
zhou-liting125 已提交
3293
**参数:**
3294 3295 3296
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
3297
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
3298

Z
zhou-liting125 已提交
3299
**示例:**
Z
zhou-liting125 已提交
3300 3301
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3302
  import web from '@ohos.web';
L
laosan_ted 已提交
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
            web.WebStorage.getOriginUsage(this.origin, (error, usage) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              consloe.log('usage: ' + usage);
            })
          })
Z
zhou-liting125 已提交
3320
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3321 3322
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3323
    }
L
laosan_ted 已提交
3324
  }
L
update  
laosan_ted 已提交
3325 3326
  ```

3327
### getOriginUsage<sup>9+</sup>
3328
static getOriginUsage(origin : string) : Promise\<number>
3329 3330

以Promise方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。
Z
zhou-liting125 已提交
3331

Z
zhou-liting125 已提交
3332
**参数:**
3333 3334 3335
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
3336

Z
zhou-liting125 已提交
3337
**返回值:**
3338 3339
| 类型               | 说明                     |
| ---------------- | ---------------------- |
3340
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
3341

Z
zhou-liting125 已提交
3342
**示例:**
Z
zhou-liting125 已提交
3343 3344
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3345
  import web from '@ohos.web';
L
laosan_ted 已提交
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginUsage(this.origin)
              .then(usage => {
                console.log('usage: ' + usage);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3363
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3364 3365 3366 3367
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3368
  ```
F
Fred Ranking 已提交
3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505
### searchAllAsync<sup>9+</sup>

searchAllAsync(searchString: string): void

异步查找网页中所有匹配关键字'searchString'的内容并高亮,结果通过[onSearchResultReceive](#onsearchresultreceive9)异步返回。

**参数:**

| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述                  |
| ---- | ------ | ---- | ---- | --------------------- |
| searchString | string | 是    | -    | 查找的关键字。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    @State searchString: string = "xxx";

    build() {
      Column() {
        Button('searchString')
          .onClick(() => {
            this.controller.searchAllAsync(this.searchString);
          })
        Button('clearMatches')
          .onClick(() => {
            this.controller.clearMatches();
          })
        Button('searchNext')
          .onClick(() => {
            this.controller.searchNext(true);
          })
        Web({ src: 'www.example.com', controller: this.controller })
     	  .onSearchResultReceive(ret => {
            console.log("on search result receive:" + "[cur]" + ret.activeMatchOrdinal +
              "[total]" + ret.numberOfMatches + "[isDone]"+ ret.isDoneCounting);
          })
      }
    }
  }
  ```

### clearMatches<sup>9+</sup>

clearMatches(): void

清除所有通过[searchAllAsync](#searchallasync9)匹配到的高亮字符查找结果。

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

    build() {
      Column() {
        Button('clearMatches')
          .onClick(() => {
            this.controller.clearMatches();
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### searchNext<sup>9+</sup>

searchNext(forward: boolean): void

滚动到下一个匹配的查找结果并高亮。

**参数:**

| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述                  |
| ---- | ------ | ---- | ---- | --------------------- |
| forward | boolean | 是    | -    | 从前向后或者逆向查找。 |


**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

    build() {
      Column() {
        Button('searchNext')
          .onClick(() => {
            this.controller.searchNext(true);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### onSearchResultReceive<sup>9+</sup>

onSearchResultReceive(callback: (event?: {activeMatchOrdinal: number, numberOfMatches: number, isDoneCounting: boolean}) => void): WebAttribute

回调通知调用方网页页内查找的结果。

**参数:**

| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| activeMatchOrdinal | number        | 当前匹配的查找项的序号(从0开始)。 |
| numberOfMatches    | number        | 所有匹配到的关键词的个数。 |
| isDoneCounting     | boolean       | 当次页内查找操作是否结束。该方法可能会回调多次,直到isDoneCounting为true为止。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
     	  .onSearchResultReceive(ret => {
            console.log("on search result receive:" + "[cur]" + ret.activeMatchOrdinal +
              "[total]" + ret.numberOfMatches + "[isDone]"+ ret.isDoneCounting);
          })
      }
    }
  }
  ```
L
update  
laosan_ted 已提交
3506

3507
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
3508

3509
提供Web SQL数据库的使用信息。
Z
zhou-liting125 已提交
3510

Z
zhou-liting125 已提交
3511
**参数:**
3512 3513 3514 3515 3516
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
3517 3518 3519

## MessageLevel枚举说明

3520 3521
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
3522 3523 3524 3525 3526 3527 3528 3529 3530 3531
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

onRenderExited接口返回的渲染进程退出的具体原因。

3532 3533 3534 3535 3536 3537 3538
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
3539 3540 3541

## MixedMode枚举说明

3542 3543
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
3544
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
3545 3546
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
3547 3548

## CacheMode枚举说明
3549 3550
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
3551
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
3552 3553 3554
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
3555 3556

## FileSelectorMode枚举说明
3557 3558 3559 3560
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
3561
| FileOpenFolderMode   | 打开上传文件夹模式。 |
3562
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
3563 3564 3565

 ## HitTestType枚举说明

3566 3567 3568 3569 3570 3571 3572 3573
| 名称            | 描述                       |
| ------------- | ------------------------ |
| EditText      | 可编辑的区域。                  |
| Email         | 电子邮件地址。                  |
| HttpAnchor    | 超链接,其src为http。           |
| HttpAnchorImg | 带有超链接的图片,其中超链接的src为http。 |
| Img           | HTML::img标签。             |
| Map           | 地理地址。                    |
3574 3575 3576 3577
| Unknown       | 未知内容。                    |

## ProtectedResourceType<sup>9+</sup>枚举说明

X
xiongjun_gitee 已提交
3578 3579
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
F
Fred Ranking 已提交
3580
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|
3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677

## WebAsyncController

通过WebAsyncController可以控制Web组件具有异步回调通知的行为,一个WebAsyncController对象控制一个Web组件。

### 创建对象

```
webController: WebController = new WebController();
webAsyncController: WebAsyncController = new WebAsyncController(webController);
```

### storeWebArchive<sup>9+</sup>

storeWebArchive(baseName: string, autoName: boolean, callback: AsyncCallback<string>): void

以回调方式异步保存当前页面。

**参数:**

| 参数名      | 参数类型                                     | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| baseName | string | 是 | 文件存储路径,该值不能为空。
| autoName | boolean | 是 | 决定是否自动生成文件名。<br/>如果为false,则将baseName作为文件存储路径。<br/>如果为true,则假定baseName是一个目录,将根据当前页的Url自动生成文件名。
| callback | AsyncCallback<string> | 是    | 返回文件存储路径,保持网页失败会返回null。 |

**示例:**

  ```ts
  // xxx.ets
  import WebAsyncController from '@ohos.web';
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
            let webAsyncController = new WebAsyncController(this.controller);
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true, (filename) => {
              if (filename != null) {
                console.info(`save web archive success: ${filename}`)
              }
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### storeWebArchive<sup>9+</sup>

storeWebArchive(baseName: string, autoName: boolean): Promise<string>

以Promise方式异步保存当前页面。

**参数:**

| 参数名      | 参数类型                                     | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| baseName | string | 是 | 文件存储路径,该值不能为空。
| autoName | boolean | 是 | 决定是否自动生成文件名。<br/>如果为false,则将baseName作为文件存储路径。<br/>如果为true,则假定baseName是一个目录,将根据当前页的Url自动生成文件名。

**返回值:**

| 类型                                       | 说明                                       |
| ---------------------------------------- | ---------------------------------------- |
| Promise<string> | Promise实例,保存成功返回文件路径,保存失败返回null。 |

**示例:**

  ```ts
  // xxx.ets
  import WebAsyncController from '@ohos.web';
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
            let webAsyncController = new WebAsyncController(this.controller);
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true)
              .then(filename => {
                if (filename != null) {
                  console.info(`save web archive success: ${filename}`)
                }
              })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
3678 3679 3680 3681

## WebMessagePort<sup>9+</sup>

通过WebMessagePort可以进行消息的发送以及接收。
3682

E
echoorchid 已提交
3683
### close<sup>9+</sup>
3684 3685 3686 3687
close(): void

关闭该信息端口。

E
echoorchid 已提交
3688
### postMessageEvent<sup>9+</sup>
3689 3690 3691 3692 3693
postMessageEvent(message: WebMessageEvent): void

发送消息。

**参数:**
3694

3695 3696
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
3697
| message   | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
3713
            msg.setData("post message from ets to html5");
3714 3715 3716 3717 3718 3719 3720 3721
            this.port[0].postMessageEvent(msg);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
3722
### onMessageEvent<sup>9+</sup>
3723 3724
onMessageEvent(callback: (result: string) => void): void

E
echoorchid 已提交
3725
注册回调函数,接收HTML5侧发送过来的消息。
3726 3727

**参数:**
3728

3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | function | 是    | -    | 接收消息的回调函数。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
            this.port[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
3747
              console.log("received message from html5, on message:" + result);
3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


## WebMessageEvent<sup>9+</sup>

通过WebMessagePort对要发送的消息和端口进行封装。

E
echoorchid 已提交
3761
### getData<sup>9+</sup>
3762 3763 3764 3765 3766
getData(): string

获取当前对象中存放的消息。

**返回值:**
3767

3768 3769 3770 3771
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790
**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("message event data");
            var messageData = msgEvent.getData();
            console.log("message is:" + messageData);
          })
      }
    }
  }
  ```
3791

E
echoorchid 已提交
3792
### setData<sup>9+</sup>
3793 3794 3795 3796 3797
setData(data: string): void

设置当前对象中的消息。

**参数:**
3798

3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| data   | string | 是    | -    | 要发送的消息。 |

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
3817
            msg.setData("post message from ets to HTML5");
3818 3819 3820 3821 3822 3823 3824
            this.port[0].postMessageEvent(msg);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
3825
### getPorts<sup>9+</sup>
E
echoorchid 已提交
3826
getPorts(): Array\<WebMessagePort\>
3827 3828 3829 3830

获取当前对象中存放的消息端口。

**返回值:**
3831

3832 3833
| 类型                              | 说明            |
| ------------------------------- | ------------- |
E
echoorchid 已提交
3834
| Array\<[WebMessagePort](#webmessageport9)\> | 当前该类型对象中存放的消息端口。 |
3835

E
echoorchid 已提交
3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856
**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    ports: WebMessagePorts[] = null;
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[0]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setPorts(sendPortArray);
            var getPorts = msgEvent.getPorts();
            console.log("Ports is:" + getPorts);
          })
      }
    }
  }
  ```
3857

E
echoorchid 已提交
3858
### setPorts<sup>9+</sup>
E
echoorchid 已提交
3859
setPorts(ports: Array\<WebMessagePort\>): void
3860 3861 3862 3863

设置当前对象中的消息端口。

**参数:**
3864

3865 3866
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
3867
| ports   | Array\<[WebMessagePort](#webmessageport9)\> | 是    | -    | 要发送的消息端口。 |
3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892

**示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    ports: WebMessagePorts[] = null;

    build() {
      Column() {
        Button('setPorts')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[1]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("__init_ports__");
            msgEvent.setPorts(sendPortArray);
            this.controller.postMessage(msgEvent, uri:"*");
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```