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

H
HelloCrease 已提交
3 4
提供具有网页显示能力的Web组件。

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

L
update  
laosan_ted 已提交
10 11
## 需要权限
访问在线网页时需添加网络权限:ohos.permission.INTERNET,具体申请方式请参考[权限申请声明](../../security/accesstoken-guidelines.md)
L
liwenzhen 已提交
12

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



## 接口

Y
yuhaoge 已提交
19
Web(options: { src: ResourceStr, controller: WebController | WebviewController})
Z
zhou-liting125 已提交
20

L
laosan_ted 已提交
21 22 23 24
> **说明:**
>
> 不支持转场动画。

Z
zhou-liting125 已提交
25
**参数:**
L
laosan_ted 已提交
26

H
HelloCrease 已提交
27 28 29
| 参数名        | 参数类型                                     | 必填   | 参数描述    |
| ---------- | ---------------------------------------- | ---- | ------- |
| src        | [ResourceStr](ts-types.md)               | 是    | 网页资源地址。 |
H
HelloCrease 已提交
30
| controller | [WebController](#webcontroller) \| [WebviewController<sup>9+</sup>](../apis/js-apis-webview.md#webviewcontroller) | 是    | 控制器。    |
Z
zengyawen 已提交
31

Z
zhou-liting125 已提交
32
**示例:**
L
update  
laosan_ted 已提交
33

L
laosan_ted 已提交
34
  加载在线网页
Z
zhou-liting125 已提交
35 36
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
37
  @Entry
L
update  
laosan_ted 已提交
38 39
  @Component
  struct WebComponent {
Y
yamila 已提交
40
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
41 42
    build() {
      Column() {
43
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
44 45 46 47
      }
    }
  }
  ```
Y
yuhaoge 已提交
48 49 50 51 52 53 54
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
55
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
56 57 58 59 60 61 62
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
Z
zengyawen 已提交
63

L
laosan_ted 已提交
64 65 66 67 68 69
  加载本地网页
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
70
    controller: WebController = new WebController()
L
laosan_ted 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    build() {
      Column() {
        Web({ src: $rawfile("index.html"), controller: this.controller })
      }
    }
  }
  ```

  ```html
  <!-- index.html -->
  <!DOCTYPE html>
  <html>
      <body>
          <p>Hello World</p>
      </body>
  </html>
  ```
Z
zengyawen 已提交
88

L
update  
laosan_ted 已提交
89
## 属性
Z
zhou-liting125 已提交
90

H
HelloCrease 已提交
91
通用属性仅支持[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
zhou-liting125 已提交
92 93 94 95 96 97 98

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

Z
zhou-liting125 已提交
99
**参数:**
L
laosan_ted 已提交
100

H
HelloCrease 已提交
101 102
| 参数名              | 参数类型    | 必填   | 默认值   | 参数描述                                 |
| ---------------- | ------- | ---- | ----- | ------------------------------------ |
103
| domStorageAccess | boolean | 是    | false | 设置是否开启文档对象模型存储接口(DOM Storage API)权限。 |
Z
zhou-liting125 已提交
104

Z
zhou-liting125 已提交
105
**示例:**
L
laosan_ted 已提交
106

Z
zhou-liting125 已提交
107 108
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
109
  @Entry
L
update  
laosan_ted 已提交
110 111
  @Component
  struct WebComponent {
Y
yamila 已提交
112
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
113 114
    build() {
      Column() {
115 116
        Web({ src: 'www.example.com', controller: this.controller })
          .domStorageAccess(true)
L
update  
laosan_ted 已提交
117 118 119 120 121
      }
    }
  }
  ```

Z
zhou-liting125 已提交
122 123 124 125
### fileAccess

fileAccess(fileAccess: boolean)

E
echoorchid 已提交
126
设置是否开启应用中文件系统的访问,默认启用。[$rawfile(filepath/filename)](../../quick-start/resource-categories-and-access.md)中rawfile路径的文件不受该属性影响而限制访问。
Z
zhou-liting125 已提交
127

Z
zhou-liting125 已提交
128
**参数:**
L
laosan_ted 已提交
129

H
HelloCrease 已提交
130 131
| 参数名        | 参数类型    | 必填   | 默认值  | 参数描述                   |
| ---------- | ------- | ---- | ---- | ---------------------- |
L
laosan_ted 已提交
132
| fileAccess | boolean | 是    | true | 设置是否开启应用中文件系统的访问,默认启用。 |
Z
zhou-liting125 已提交
133

Z
zhou-liting125 已提交
134
**示例:**
L
laosan_ted 已提交
135

Z
zhou-liting125 已提交
136 137
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
138
  @Entry
L
update  
laosan_ted 已提交
139 140
  @Component
  struct WebComponent {
Y
yamila 已提交
141
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
142 143
    build() {
      Column() {
144
        Web({ src: 'www.example.com', controller: this.controller })
145
          .fileAccess(true)
L
update  
laosan_ted 已提交
146 147 148 149 150
      }
    }
  }
  ```

Z
zhou-liting125 已提交
151 152 153 154 155 156
### imageAccess

imageAccess(imageAccess: boolean)

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

Z
zhou-liting125 已提交
157
**参数:**
L
laosan_ted 已提交
158

159 160
| 参数名         | 参数类型    | 必填   | 默认值  | 参数描述            |
| ----------- | ------- | ---- | ---- | --------------- |
161
| imageAccess | boolean | 是    | true | 设置是否允许自动加载图片资源。 |
Z
zhou-liting125 已提交
162

Z
zhou-liting125 已提交
163
**示例:**
Z
zhou-liting125 已提交
164 165
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
166
  @Entry
L
update  
laosan_ted 已提交
167 168
  @Component
  struct WebComponent {
Y
yamila 已提交
169
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
170 171
    build() {
      Column() {
172 173
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
174 175 176 177 178
      }
    }
  }
  ```

Z
zhou-liting125 已提交
179 180 181
### javaScriptProxy

javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\<string\>,
Y
yuhaoge 已提交
182
    controller: WebController | WebviewController})
Z
zhou-liting125 已提交
183 184 185

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

Z
zhou-liting125 已提交
186
**参数:**
L
laosan_ted 已提交
187

H
HelloCrease 已提交
188 189 190 191 192 193
| 参数名        | 参数类型                                     | 必填   | 默认值  | 参数描述                      |
| ---------- | ---------------------------------------- | ---- | ---- | ------------------------- |
| object     | object                                   | 是    | -    | 参与注册的对象。只能声明方法,不能声明属性。    |
| name       | string                                   | 是    | -    | 注册对象的名称,与window中调用的对象名一致。 |
| methodList | Array\<string\>                          | 是    | -    | 参与注册的应用侧JavaScript对象的方法。  |
| controller | [WebController](#webcontroller)[WebviewController](../apis/js-apis-webview.md#webviewcontroller) | 是    | -    | 控制器。                      |
194

Z
zhou-liting125 已提交
195
**示例:**
L
laosan_ted 已提交
196

Z
zhou-liting125 已提交
197 198
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
199
  @Entry
L
update  
laosan_ted 已提交
200 201
  @Component
  struct WebComponent {
Y
yamila 已提交
202
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
203 204
    testObj = {
      test: (data1, data2, data3) => {
Y
yamila 已提交
205 206 207 208
        console.log("data1:" + data1)
        console.log("data2:" + data2)
        console.log("data3:" + data3)
        return "AceString"
L
update  
laosan_ted 已提交
209 210
      },
      toString: () => {
Y
yamila 已提交
211
        console.log('toString' + "interface instead.")
L
update  
laosan_ted 已提交
212 213 214 215
      }
    }
    build() {
      Column() {
216 217 218 219 220 221 222
        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 已提交
223 224 225 226 227
        })
      }
    }
  }
  ```
Y
yuhaoge 已提交
228 229 230 231 232 233 234
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
235
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
236 237
    testObj = {
      test: (data1, data2, data3) => {
Y
yamila 已提交
238 239 240 241
        console.log("data1:" + data1)
        console.log("data2:" + data2)
        console.log("data3:" + data3)
        return "AceString"
Y
yuhaoge 已提交
242 243
      },
      toString: () => {
Y
yamila 已提交
244
        console.log('toString' + "interface instead.")
Y
yuhaoge 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
      }
    }
    build() {
      Column() {
        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 已提交
261

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

javaScriptAccess(javaScriptAccess: boolean)

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

Z
zhou-liting125 已提交
268
**参数:**
L
laosan_ted 已提交
269

270 271
| 参数名              | 参数类型    | 必填   | 默认值  | 参数描述                |
| ---------------- | ------- | ---- | ---- | ------------------- |
272
| javaScriptAccess | boolean | 是    | true | 是否允许执行JavaScript脚本。 |
Z
zhou-liting125 已提交
273

Z
zhou-liting125 已提交
274
**示例:**
L
laosan_ted 已提交
275

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

Z
zhou-liting125 已提交
291 292 293 294 295 296
### mixedMode

mixedMode(mixedMode: MixedMode)

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

Z
zhou-liting125 已提交
297
**参数:**
L
laosan_ted 已提交
298

H
HelloCrease 已提交
299 300
| 参数名       | 参数类型                        | 必填   | 默认值            | 参数描述      |
| --------- | --------------------------- | ---- | -------------- | --------- |
301
| mixedMode | [MixedMode](#mixedmode枚举说明) | 是    | MixedMode.None | 要设置的混合内容。 |
Z
zhou-liting125 已提交
302

Z
zhou-liting125 已提交
303
**示例:**
L
laosan_ted 已提交
304

Z
zhou-liting125 已提交
305 306
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
307
  @Entry
L
update  
laosan_ted 已提交
308 309
  @Component
  struct WebComponent {
Y
yamila 已提交
310 311
    controller: WebController = new WebController()
    @State mode: MixedMode = MixedMode.All
L
update  
laosan_ted 已提交
312 313
    build() {
      Column() {
314 315
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
316 317 318 319 320
      }
    }
  }
  ```

Z
zhou-liting125 已提交
321 322 323 324 325 326
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

Z
zhou-liting125 已提交
327
**参数:**
L
laosan_ted 已提交
328

329 330
| 参数名               | 参数类型    | 必填   | 默认值  | 参数描述             |
| ----------------- | ------- | ---- | ---- | ---------------- |
331
| onlineImageAccess | boolean | 是    | true | 设置是否允许从网络加载图片资源。 |
Z
zhou-liting125 已提交
332

Z
zhou-liting125 已提交
333
**示例:**
L
laosan_ted 已提交
334

Z
zhou-liting125 已提交
335 336
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
337
  @Entry
L
update  
laosan_ted 已提交
338 339
  @Component
  struct WebComponent {
Y
yamila 已提交
340
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
341 342
    build() {
      Column() {
343 344
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
345 346 347 348 349
      }
    }
  }
  ```

Z
zhou-liting125 已提交
350 351 352 353 354 355
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

Z
zhou-liting125 已提交
356
**参数:**
L
laosan_ted 已提交
357

358 359
| 参数名        | 参数类型    | 必填   | 默认值  | 参数描述          |
| ---------- | ------- | ---- | ---- | ------------- |
360
| zoomAccess | boolean | 是    | true | 设置是否支持手势进行缩放。 |
Z
zhou-liting125 已提交
361

Z
zhou-liting125 已提交
362
**示例:**
L
laosan_ted 已提交
363

Z
zhou-liting125 已提交
364 365
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
366
  @Entry
L
update  
laosan_ted 已提交
367 368
  @Component
  struct WebComponent {
Y
yamila 已提交
369
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
370 371
    build() {
      Column() {
372 373
        Web({ src: 'www.example.com', controller: this.controller })
          .zoomAccess(true)
L
update  
laosan_ted 已提交
374 375 376 377 378
      }
    }
  }
  ```

Z
zhou-liting125 已提交
379 380 381 382 383 384
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

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

Z
zhou-liting125 已提交
385
**参数:**
L
laosan_ted 已提交
386

387 388
| 参数名                | 参数类型    | 必填   | 默认值  | 参数描述            |
| ------------------ | ------- | ---- | ---- | --------------- |
389
| overviewModeAccess | boolean | 是    | true | 设置是否使用概览模式加载网页。 |
Z
zhou-liting125 已提交
390

Z
zhou-liting125 已提交
391
**示例:**
L
laosan_ted 已提交
392

Z
zhou-liting125 已提交
393 394
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
395
  @Entry
L
update  
laosan_ted 已提交
396 397
  @Component
  struct WebComponent {
Y
yamila 已提交
398
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
399 400
    build() {
      Column() {
401 402
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
403 404 405 406 407
      }
    }
  }
  ```

Z
zhou-liting125 已提交
408 409 410 411 412 413
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

Z
zhou-liting125 已提交
414
**参数:**
L
laosan_ted 已提交
415

H
HelloCrease 已提交
416 417
| 参数名            | 参数类型    | 必填   | 默认值   | 参数描述              |
| -------------- | ------- | ---- | ----- | ----------------- |
418
| databaseAccess | boolean | 是    | false | 设置是否开启数据库存储API权限。 |
Z
zhou-liting125 已提交
419

L
laosan_ted 已提交
420
**示例:**
L
laosan_ted 已提交
421

Z
zhou-liting125 已提交
422 423
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
424
  @Entry
L
update  
laosan_ted 已提交
425 426
  @Component
  struct WebComponent {
Y
yamila 已提交
427
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
428 429
    build() {
      Column() {
430 431
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
432 433 434 435 436
      }
    }
  }
  ```

L
laosan_ted 已提交
437 438 439 440 441 442 443
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

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

**参数:**
L
laosan_ted 已提交
444

H
HelloCrease 已提交
445 446 447
| 参数名               | 参数类型    | 必填   | 默认值  | 参数描述            |
| ----------------- | ------- | ---- | ---- | --------------- |
| geolocationAccess | boolean | 是    | true | 设置是否开启获取地理位置权限。 |
L
laosan_ted 已提交
448 449

**示例:**
L
laosan_ted 已提交
450

L
laosan_ted 已提交
451 452 453 454 455
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
456
    controller: WebController = new WebController()
L
laosan_ted 已提交
457 458
    build() {
      Column() {
459 460
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
461 462 463 464 465
      }
    }
  }
  ```

L
laosan_ted 已提交
466 467 468 469
### mediaPlayGestureAccess

mediaPlayGestureAccess(access: boolean)

L
laosan_ted 已提交
470
设置有声视频播放是否需要用户手动点击,静音视频播放不受该接口管控。
L
laosan_ted 已提交
471 472 473

**参数:**

H
HelloCrease 已提交
474 475
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述              |
| ------ | ------- | ---- | ---- | ----------------- |
L
laosan_ted 已提交
476
| access | boolean | 是    | true | 设置有声视频播放是否需要用户手动点击。 |
L
laosan_ted 已提交
477 478 479 480 481 482 483 484

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
485 486
    controller: WebController = new WebController()
    @State access: boolean = true
L
laosan_ted 已提交
487 488 489 490 491 492 493 494 495
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .mediaPlayGestureAccess(this.access)
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
496 497 498 499 500 501 502 503
### multiWindowAccess<sup>9+</sup>

multiWindowAccess(multiWindow: boolean)

设置是否开启多窗口权限,默认不开启。

**参数:**

H
HelloCrease 已提交
504 505
| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
X
xiongjun_gitee 已提交
506 507 508 509 510 511 512 513 514
| multiWindow | boolean | 是    | false | 设置是否开启多窗口权限。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
515
    controller: WebController = new WebController()
X
xiongjun_gitee 已提交
516 517 518 519 520 521 522 523 524
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .multiWindowAccess(true)
      }
    }
  }
  ```

L
laosan_ted 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
### horizontalScrollBarAccess<sup>9+</sup>

horizontalScrollBarAccess(horizontalScrollBar: boolean)

设置是否显示横向滚动条,包括系统默认滚动条和用户自定义滚动条。默认显示。

**参数:**

| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
| horizontalScrollBar | boolean | 是    | true | 设置是否显示横向滚动条。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .horizontalScrollBarAccess(true)
      }
    }
  }
  ```

  ```html
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
      <title>Demo</title>
      <style>
        body {
          width:3000px;
          height:3000px;
          padding-right:170px;
          padding-left:170px;
          border:5px solid blueviolet
        }
      </style>
  </head>
  <body>
  Scroll Test
  </body>
  </html>
  ```

### verticalScrollBarAccess<sup>9+</sup>

verticalScrollBarAccess(verticalScrollBar: boolean)

设置是否显示纵向滚动条,包括系统默认滚动条和用户自定义滚动条。默认显示。

**参数:**

| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
| verticalScrollBarAccess | boolean | 是    | true | 设置是否显示纵向滚动条。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .verticalScrollBarAccess(true)
      }
    }
  }
  ```

  ```html
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
      <title>Demo</title>
      <style>
        body {
          width:3000px;
          height:3000px;
          padding-right:170px;
          padding-left:170px;
          border:5px solid blueviolet
        }
      </style>
  </head>
  <body>
  Scroll Test
  </body>
  </html>
  ```


Z
zhou-liting125 已提交
628 629 630 631 632 633
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
634
**参数:**
L
laosan_ted 已提交
635

H
HelloCrease 已提交
636 637
| 参数名       | 参数类型                        | 必填   | 默认值               | 参数描述      |
| --------- | --------------------------- | ---- | ----------------- | --------- |
638
| cacheMode | [CacheMode](#cachemode枚举说明) | 是    | CacheMode.Default | 要设置的缓存模式。 |
Z
zhou-liting125 已提交
639

Z
zhou-liting125 已提交
640
**示例:**
L
laosan_ted 已提交
641

Z
zhou-liting125 已提交
642 643
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
644
  @Entry
L
update  
laosan_ted 已提交
645 646
  @Component
  struct WebComponent {
Y
yamila 已提交
647 648
    controller: WebController = new WebController()
    @State mode: CacheMode = CacheMode.None
L
update  
laosan_ted 已提交
649 650
    build() {
      Column() {
651 652
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
653 654 655 656 657
      }
    }
  }
  ```

L
laosan_ted 已提交
658
### textZoomRatio<sup>9+</sup>
Z
zhou-liting125 已提交
659

L
laosan_ted 已提交
660
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
661 662 663

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

Z
zhou-liting125 已提交
664
**参数:**
L
laosan_ted 已提交
665

H
HelloCrease 已提交
666 667 668
| 参数名           | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------------- | ------ | ---- | ---- | --------------- |
| textZoomRatio | number | 是    | 100  | 要设置的页面的文本缩放百分比。 |
Z
zhou-liting125 已提交
669

Z
zhou-liting125 已提交
670
**示例:**
L
laosan_ted 已提交
671

Z
zhou-liting125 已提交
672 673
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
674
  @Entry
L
update  
laosan_ted 已提交
675 676
  @Component
  struct WebComponent {
Y
yamila 已提交
677 678
    controller: WebController = new WebController()
    @State atio: number = 150
L
update  
laosan_ted 已提交
679 680
    build() {
      Column() {
681 682
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
683 684 685 686 687
      }
    }
  }
  ```

L
laosan_ted 已提交
688 689 690 691 692 693 694 695
### initialScale<sup>9+</sup>

initialScale(percent: number)

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

**参数:**

H
HelloCrease 已提交
696 697 698
| 参数名     | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------- | ------ | ---- | ---- | --------------- |
| percent | number | 是    | 100  | 要设置的整体页面的缩放百分比。 |
L
laosan_ted 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
    @State percent: number = 100
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .initialScale(this.percent)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
718 719 720 721 722 723
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
724
**参数:**
L
laosan_ted 已提交
725

726 727 728
| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| userAgent | string | 是    | -    | 要设置的用户代理。 |
Z
zengyawen 已提交
729

Z
zhou-liting125 已提交
730
**示例:**
L
laosan_ted 已提交
731

Z
zhou-liting125 已提交
732 733
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
734
  @Entry
L
update  
laosan_ted 已提交
735 736
  @Component
  struct WebComponent {
Y
yamila 已提交
737 738
    controller: WebController = new WebController()
    @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 已提交
739 740
    build() {
      Column() {
741 742
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
743 744 745 746 747
      }
    }
  }
  ```

L
laosan_ted 已提交
748 749 750 751 752 753 754 755
### webDebuggingAccess<sup>9+</sup>

webDebuggingAccess(webDebuggingAccess: boolean)

设置是否启用网页调试功能。

**参数:**

H
HelloCrease 已提交
756 757 758
| 参数名                | 参数类型    | 必填   | 默认值   | 参数描述          |
| ------------------ | ------- | ---- | ----- | ------------- |
| webDebuggingAccess | boolean | 是    | false | 设置是否启用网页调试功能。 |
L
laosan_ted 已提交
759 760 761 762 763 764 765 766

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
767 768
    controller: WebController = new WebController()
    @State webDebuggingAccess: boolean = true
L
laosan_ted 已提交
769 770 771 772 773 774 775 776 777
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webDebuggingAccess(this.webDebuggingAccess)
      }
    }
  }
  ```

C
chensi10 已提交
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
### blockNetwork<sup>9+</sup>

blockNetwork(block: boolean)

设置Web组件是否阻止从网络加载资源。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                            |
| ------ | -------- | ---- | ------ | ----------------------------------- |
| block  | boolean  | 是   | false  | 设置Web组件是否阻止从网络加载资源。 |

**示例:**

  ```ts
  // xxx.ets
C
chensi10 已提交
794
  import web_webview from '@ohos.web.webview'
C
chensi10 已提交
795 796 797
  @Entry
  @Component
  struct WebComponent {
C
chensi10 已提交
798
    controller: web_webview.WebviewController = new web_webview.WebviewController()
C
chensi10 已提交
799 800 801 802
    @State block: boolean = true
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
C
chensi10 已提交
803
          .blockNetwork(this.block)
C
chensi10 已提交
804 805 806 807 808 809 810 811 812
      }
    }
  }
  ```

### defaultFixedFontSize<sup>9+</sup>

defaultFixedFontSize(size: number)

813
设置网页的默认等宽字体大小。
C
chensi10 已提交
814 815 816 817 818

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                     |
| ------ | -------- | ---- | ------ | ---------------------------- |
819
| size   | number   | 是   | 13     | 设置网页的默认等宽字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
820 821 822 823 824 825 826 827 828 829

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
830
    @State fontSize: number = 16
C
chensi10 已提交
831 832 833
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
834
          .defaultFixedFontSize(this.fontSize)
C
chensi10 已提交
835 836 837 838 839 840 841 842 843 844 845 846 847 848 849
      }
    }
  }
  ```

### defaultFontSize<sup>9+</sup>

defaultFontSize(size: number)

设置网页的默认字体大小。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
850
| size   | number   | 是   | 16     | 设置网页的默认字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
851 852 853 854 855 856 857 858 859 860

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
861
    @State fontSize: number = 13
C
chensi10 已提交
862 863 864
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
865
          .defaultFontSize(this.fontSize)
C
chensi10 已提交
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
      }
    }
  }
  ```

### minFontSize<sup>9+</sup>

minFontSize(size: number)

设置网页字体大小最小值。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
881
| size   | number   | 是   | 8      | 设置网页字体大小最小值,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
882 883 884 885 886 887 888 889 890 891

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
892
    @State fontSize: number = 13
C
chensi10 已提交
893 894 895
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
896
          .minFontSize(this.fontSize)
C
chensi10 已提交
897 898 899 900 901
      }
    }
  }
  ```

902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
### minLogicalFontSize<sup>9+</sup>

minLogicalFontSize(size: number)

设置网页逻辑字体大小最小值。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
| size   | number   | 是   | 8      | 设置网页逻辑字体大小最小值,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
923
    @State fontSize: number = 13
924 925 926
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
927
          .minLogicalFontSize(this.fontSize)
928 929 930 931 932 933
      }
    }
  }
  ```


C
chensi10 已提交
934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
### webFixedFont<sup>9+</sup>

webFixedFont(family: string)

设置网页的fixed font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值    | 参数描述                     |
| ------ | -------- | ---- | --------- | ---------------------------- |
| family | string   | 是   | monospace | 设置网页的fixed font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "monospace"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webFixedFont(this.family)
      }
    }
  }
  ```

### webSansSerifFont<sup>9+</sup>

webSansSerifFont(family: string)

设置网页的sans serif font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值     | 参数描述                          |
| ------ | -------- | ---- | ---------- | --------------------------------- |
| family | string   | 是   | sans-serif | 设置网页的sans serif font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "sans-serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webSansSerifFont(this.family)
      }
    }
  }
  ```

### webSerifFont<sup>9+</sup>

webSerifFont(family: string)

设置网页的serif font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                     |
| ------ | -------- | ---- | ------ | ---------------------------- |
| family | string   | 是   | serif  | 设置网页的serif font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webSerifFont(this.family)
      }
    }
  }
  ```

### webStandardFont<sup>9+</sup>

webStandardFont(family: string)

设置网页的standard font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值     | 参数描述                        |
| ------ | -------- | ---- | ---------- | ------------------------------- |
| family | string   | 是   | sans serif | 设置网页的standard font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "sans-serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webStandardFont(this.family)
      }
    }
  }
  ```

### webFantasyFont<sup>9+</sup>

webFantasyFont(family: string)

设置网页的fantasy font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | -------- | ---- | ------- | ------------------------------ |
| family | string   | 是   | fantasy | 设置网页的fantasy font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "fantasy"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webFantasyFont(this.family)
      }
    }
  }
  ```

### webCursiveFont<sup>9+</sup>

webCursiveFont(family: string)

设置网页的cursive font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | -------- | ---- | ------- | ------------------------------ |
| family | string   | 是   | cursive | 设置网页的cursive font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "cursive"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webCursiveFont(this.family)
      }
    }
  }
  ```

Y
yuhaoge 已提交
1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
### darkMode<sup>9+</sup>

darkMode(mode: WebDarkMode)

设置Web深色模式,默认关闭。当深色模式开启时,Web将启用媒体查询prefer-color-scheme中网页所定义的深色样式,若网页未定义深色样式,则保持原状。如需开启强制深色模式,建议配合[forceDarkAccess](#forcedarkaccess9)使用。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ----------- | ---- | --------------- | ------------------ |
|  mode  | [WebDarkMode](#webdarkmode9枚举说明) | 是   | WebDarkMode.Off | 设置Web的深色模式为关闭、开启或跟随系统。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State mode: WebDarkMode = WebDarkMode.On
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .darkMode(this.mode)
      }
    }
  }
  ```

### forceDarkAccess<sup>9+</sup>

forceDarkAccess(access: boolean)

设置网页是否开启强制深色模式。默认关闭。该属性仅在[darkMode](#darkmode9)开启深色模式时生效。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ------- | ---- | ----- | ------------------ |
| access | boolean | 是   | false | 设置网页是否开启强制深色模式。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State mode: WebDarkMode = WebDarkMode.On
    @State access: boolean = true
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .darkMode(this.mode)
          .forceDarkAccess(this.access)
      }
    }
  }
  ```

Z
zengyawen 已提交
1184 1185
## 事件

L
liwenzhen 已提交
1186
不支持通用事件。
Z
zengyawen 已提交
1187

L
update  
laosan_ted 已提交
1188 1189 1190 1191 1192 1193
### onAlert

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

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

Z
zhou-liting125 已提交
1194
**参数:**
L
laosan_ted 已提交
1195

1196 1197 1198 1199 1200
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
1201

Z
zhou-liting125 已提交
1202
**返回值:**
L
laosan_ted 已提交
1203

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

Z
zhou-liting125 已提交
1208
**示例:**
L
laosan_ted 已提交
1209

Z
zhou-liting125 已提交
1210 1211
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1212
  @Entry
L
update  
laosan_ted 已提交
1213 1214
  @Component
  struct WebComponent {
Y
yamila 已提交
1215
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
1216 1217
    build() {
      Column() {
1218
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1219 1220
          .onAlert((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
1221
              title: 'onAlert',
L
laosan_ted 已提交
1222
              message: 'text',
L
laosan_ted 已提交
1223 1224 1225 1226 1227 1228 1229 1230
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1231 1232 1233 1234 1235 1236 1237 1238
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1239
            return true
L
update  
laosan_ted 已提交
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
          })
      }
    }
  }
  ```

### onBeforeUnload

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

L
laosan_ted 已提交
1250
刷新或关闭场景下,在即将离开当前页面时触发此回调。刷新或关闭当前页面应先通过点击等方式获取焦点,才会触发此回调。
L
update  
laosan_ted 已提交
1251

Z
zhou-liting125 已提交
1252
**参数:**
L
laosan_ted 已提交
1253

1254 1255 1256 1257 1258
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
1259

Z
zhou-liting125 已提交
1260
**返回值:**
L
laosan_ted 已提交
1261

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

Z
zhou-liting125 已提交
1266
**示例:**
L
laosan_ted 已提交
1267

Z
zhou-liting125 已提交
1268 1269
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1270
  @Entry
L
update  
laosan_ted 已提交
1271 1272
  @Component
  struct WebComponent {
Y
yamila 已提交
1273
    controller: WebController = new WebController()
L
laosan_ted 已提交
1274
  
L
update  
laosan_ted 已提交
1275 1276
    build() {
      Column() {
Z
zhou-liting125 已提交
1277
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1278
          .onBeforeUnload((event) => {
Y
yamila 已提交
1279 1280
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
            AlertDialog.show({
              title: 'onBeforeUnload',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1300
            return true
L
laosan_ted 已提交
1301 1302
          })
      }
L
update  
laosan_ted 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312
    }
  }
  ```

### onConfirm

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

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

Z
zhou-liting125 已提交
1313
**参数:**
L
laosan_ted 已提交
1314

1315 1316 1317 1318 1319
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
1320

Z
zhou-liting125 已提交
1321
**返回值:**
L
laosan_ted 已提交
1322

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

Z
zhou-liting125 已提交
1327
**示例:**
L
laosan_ted 已提交
1328

Z
zhou-liting125 已提交
1329 1330
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1331
  @Entry
L
update  
laosan_ted 已提交
1332 1333
  @Component
  struct WebComponent {
Y
yamila 已提交
1334
    controller: WebController = new WebController()
L
laosan_ted 已提交
1335
  
L
update  
laosan_ted 已提交
1336 1337
    build() {
      Column() {
Z
zhou-liting125 已提交
1338
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1339
          .onConfirm((event) => {
Y
yamila 已提交
1340 1341 1342
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
            console.log("event.result:" + event.result)
L
laosan_ted 已提交
1343
            AlertDialog.show({
L
laosan_ted 已提交
1344
              title: 'onConfirm',
L
laosan_ted 已提交
1345
              message: 'text',
L
laosan_ted 已提交
1346 1347 1348 1349 1350 1351 1352 1353
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1354 1355 1356 1357 1358 1359 1360 1361
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1362
            return true
L
update  
laosan_ted 已提交
1363
          })
L
laosan_ted 已提交
1364
      }
L
update  
laosan_ted 已提交
1365 1366 1367 1368 1369 1370 1371 1372
    }
  }
  ```

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

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

Z
zhou-liting125 已提交
1373
**参数:**
L
laosan_ted 已提交
1374

1375 1376 1377 1378 1379
| 参数名     | 参数类型                  | 参数描述            |
| ------- | --------------------- | --------------- |
| url     | string                | 当前显示弹窗所在网页的URL。 |
| message | string                | 弹窗中显示的信息。       |
| result  | [JsResult](#jsresult) | 通知Web组件用户操作行为。  |
L
update  
laosan_ted 已提交
1380

Z
zhou-liting125 已提交
1381
**返回值:**
L
laosan_ted 已提交
1382

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

Z
zhou-liting125 已提交
1387
**示例:**
L
laosan_ted 已提交
1388

Z
zhou-liting125 已提交
1389 1390
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1391
  @Entry
L
update  
laosan_ted 已提交
1392 1393
  @Component
  struct WebComponent {
Y
yamila 已提交
1394
    controller: WebController = new WebController()
L
laosan_ted 已提交
1395
  
L
update  
laosan_ted 已提交
1396 1397
    build() {
      Column() {
1398
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1399
          .onPrompt((event) => {
Y
yamila 已提交
1400 1401 1402
            console.log("url:" + event.url)
            console.log("message:" + event.message)
            console.log("value:" + event.value)
L
laosan_ted 已提交
1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
            AlertDialog.show({
              title: 'onPrompt',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1422
            return true
L
laosan_ted 已提交
1423 1424
          })
      }
L
update  
laosan_ted 已提交
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
    }
  }
  ```

### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
1435
**参数:**
L
laosan_ted 已提交
1436

1437 1438 1439
| 参数名     | 参数类型                              | 参数描述      |
| ------- | --------------------------------- | --------- |
| message | [ConsoleMessage](#consolemessage) | 触发的控制台信息。 |
L
update  
laosan_ted 已提交
1440

Z
zhou-liting125 已提交
1441
**返回值:**
L
laosan_ted 已提交
1442

1443 1444 1445
| 类型      | 说明                                  |
| ------- | ----------------------------------- |
| boolean | 当返回true时,该条消息将不会再打印至控制台,反之仍会打印至控制台。 |
L
update  
laosan_ted 已提交
1446

Z
zhou-liting125 已提交
1447
**示例:**
L
laosan_ted 已提交
1448

Z
zhou-liting125 已提交
1449 1450
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1451
  @Entry
L
update  
laosan_ted 已提交
1452 1453
  @Component
  struct WebComponent {
Y
yamila 已提交
1454
    controller: WebController = new WebController()
L
laosan_ted 已提交
1455
  
L
update  
laosan_ted 已提交
1456 1457
    build() {
      Column() {
Z
zhou-liting125 已提交
1458
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1459
          .onConsole((event) => {
Y
yamila 已提交
1460 1461 1462 1463 1464
            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
laosan_ted 已提交
1465 1466
          })
      }
L
update  
laosan_ted 已提交
1467 1468 1469 1470 1471 1472 1473 1474
    }
  }
  ```

### onDownloadStart

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

Z
zhou-liting125 已提交
1475
**参数:**
L
laosan_ted 已提交
1476

1477 1478 1479 1480 1481 1482
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
1483

Z
zhou-liting125 已提交
1484
**示例:**
L
laosan_ted 已提交
1485

Z
zhou-liting125 已提交
1486 1487
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1488
  @Entry
L
update  
laosan_ted 已提交
1489 1490
  @Component
  struct WebComponent {
Y
yamila 已提交
1491
    controller: WebController = new WebController()
L
laosan_ted 已提交
1492
  
L
update  
laosan_ted 已提交
1493 1494
    build() {
      Column() {
Z
zhou-liting125 已提交
1495
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1496
          .onDownloadStart((event) => {
Y
yamila 已提交
1497 1498 1499 1500 1501
            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
laosan_ted 已提交
1502 1503
          })
      }
L
update  
laosan_ted 已提交
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
    }
  }
  ```

### onErrorReceive

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

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

Z
zhou-liting125 已提交
1514
**参数:**
L
laosan_ted 已提交
1515

1516 1517 1518 1519
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
| error   | [WebResourceError](#webresourceerror)    | 网页加载资源错误的封装信息 。 |
L
update  
laosan_ted 已提交
1520

Z
zhou-liting125 已提交
1521
**示例:**
L
laosan_ted 已提交
1522

Z
zhou-liting125 已提交
1523 1524
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1525
  @Entry
L
update  
laosan_ted 已提交
1526 1527
  @Component
  struct WebComponent {
Y
yamila 已提交
1528
    controller: WebController = new WebController()
L
laosan_ted 已提交
1529
  
L
update  
laosan_ted 已提交
1530 1531
    build() {
      Column() {
Z
zhou-liting125 已提交
1532
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1533
          .onErrorReceive((event) => {
Y
yamila 已提交
1534 1535 1536 1537 1538 1539 1540 1541 1542
            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)
L
laosan_ted 已提交
1543
            for (let i of result) {
Y
yamila 已提交
1544
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue)
L
laosan_ted 已提交
1545 1546 1547
            }
          })
      }
L
update  
laosan_ted 已提交
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
1558
**参数:**
L
laosan_ted 已提交
1559

1560 1561 1562
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
L
laosan_ted 已提交
1563
| response | [WebResourceResponse](#webresourceresponse)    | 资源响应的封装信息。 |
L
update  
laosan_ted 已提交
1564

Z
zhou-liting125 已提交
1565
**示例:**
L
laosan_ted 已提交
1566

Z
zhou-liting125 已提交
1567 1568
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1569
  @Entry
L
update  
laosan_ted 已提交
1570 1571
  @Component
  struct WebComponent {
Y
yamila 已提交
1572
    controller: WebController = new WebController()
L
laosan_ted 已提交
1573
  
L
update  
laosan_ted 已提交
1574 1575
    build() {
      Column() {
Z
zhou-liting125 已提交
1576
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1577
          .onHttpErrorReceive((event) => {
Y
yamila 已提交
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
            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)
L
laosan_ted 已提交
1589
            for (let i of result) {
Y
yamila 已提交
1590
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1591
            }
Y
yamila 已提交
1592 1593
            let resph = event.response.getResponseHeader()
            console.log('The response header result size is ' + resph.length)
L
laosan_ted 已提交
1594
            for (let i of resph) {
Y
yamila 已提交
1595
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1596 1597 1598
            }
          })
      }
L
update  
laosan_ted 已提交
1599 1600 1601 1602 1603 1604 1605 1606
    }
  }
  ```

### onPageBegin

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

1607

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

Z
zhou-liting125 已提交
1610
**参数:**
L
laosan_ted 已提交
1611

1612 1613 1614
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1615

Z
zhou-liting125 已提交
1616
**示例:**
L
laosan_ted 已提交
1617

Z
zhou-liting125 已提交
1618 1619
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1620
  @Entry
L
update  
laosan_ted 已提交
1621 1622
  @Component
  struct WebComponent {
Y
yamila 已提交
1623
    controller: WebController = new WebController()
L
laosan_ted 已提交
1624
  
L
update  
laosan_ted 已提交
1625 1626
    build() {
      Column() {
Z
zhou-liting125 已提交
1627
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1628
          .onPageBegin((event) => {
Y
yamila 已提交
1629
            console.log('url:' + event.url)
L
laosan_ted 已提交
1630 1631
          })
      }
L
update  
laosan_ted 已提交
1632 1633 1634 1635 1636 1637 1638 1639
    }
  }
  ```

### onPageEnd

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

1640

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

Z
zhou-liting125 已提交
1643
**参数:**
L
laosan_ted 已提交
1644

1645 1646 1647
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1648

Z
zhou-liting125 已提交
1649
**示例:**
L
laosan_ted 已提交
1650

Z
zhou-liting125 已提交
1651 1652
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1653
  @Entry
L
update  
laosan_ted 已提交
1654 1655
  @Component
  struct WebComponent {
Y
yamila 已提交
1656
    controller: WebController = new WebController()
L
laosan_ted 已提交
1657
  
L
update  
laosan_ted 已提交
1658 1659
    build() {
      Column() {
Z
zhou-liting125 已提交
1660
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1661
          .onPageEnd((event) => {
Y
yamila 已提交
1662
            console.log('url:' + event.url)
L
laosan_ted 已提交
1663 1664
          })
      }
L
update  
laosan_ted 已提交
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
    }
  }
  ```

### onProgressChange

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

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

Z
zhou-liting125 已提交
1675
**参数:**
L
laosan_ted 已提交
1676

1677 1678 1679
| 参数名         | 参数类型   | 参数描述                  |
| ----------- | ------ | --------------------- |
| newProgress | number | 新的加载进度,取值范围为0到100的整数。 |
L
update  
laosan_ted 已提交
1680

L
laosan_ted 已提交
1681 1682
**示例:**

Z
zhou-liting125 已提交
1683 1684
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1685
  @Entry
L
update  
laosan_ted 已提交
1686 1687
  @Component
  struct WebComponent {
Y
yamila 已提交
1688
    controller: WebController = new WebController()
L
laosan_ted 已提交
1689
  
L
update  
laosan_ted 已提交
1690 1691
    build() {
      Column() {
Z
zhou-liting125 已提交
1692
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1693 1694 1695 1696
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
    }
  }
  ```

### onTitleReceive

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

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

Z
zhou-liting125 已提交
1707
**参数:**
L
laosan_ted 已提交
1708

1709 1710 1711
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
1712

L
laosan_ted 已提交
1713 1714
**示例:**

Z
zhou-liting125 已提交
1715 1716
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1717
  @Entry
L
update  
laosan_ted 已提交
1718 1719
  @Component
  struct WebComponent {
Y
yamila 已提交
1720
    controller: WebController = new WebController()
L
laosan_ted 已提交
1721
  
L
update  
laosan_ted 已提交
1722 1723
    build() {
      Column() {
Z
zhou-liting125 已提交
1724
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1725 1726 1727 1728
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738
    }
  }
  ```

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
1739
**参数:**
L
laosan_ted 已提交
1740

H
HelloCrease 已提交
1741 1742 1743
| 参数名         | 参数类型    | 参数描述                                     |
| ----------- | ------- | ---------------------------------------- |
| url         | string  | 访问的url。                                  |
L
laosan_ted 已提交
1744
| isRefreshed | boolean | true表示该页面是被重新加载的(调用[refresh](#refresh)接口),false表示该页面是新加载的。 |
L
update  
laosan_ted 已提交
1745

L
laosan_ted 已提交
1746 1747
**示例:**

Z
zhou-liting125 已提交
1748 1749
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1750
  @Entry
L
update  
laosan_ted 已提交
1751 1752
  @Component
  struct WebComponent {
Y
yamila 已提交
1753
    controller: WebController = new WebController()
L
laosan_ted 已提交
1754
  
L
update  
laosan_ted 已提交
1755 1756
    build() {
      Column() {
Z
zhou-liting125 已提交
1757
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1758
          .onRefreshAccessedHistory((event) => {
Y
yamila 已提交
1759
            console.log('url:' + event.url + ' isReload:' + event.isRefreshed)
L
laosan_ted 已提交
1760 1761
          })
      }
L
update  
laosan_ted 已提交
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
    }
  }
  ```

### onRenderExited

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

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

Z
zhou-liting125 已提交
1772
**参数:**
L
laosan_ted 已提交
1773

1774 1775 1776
| 参数名              | 参数类型                                     | 参数描述             |
| ---------------- | ---------------------------------------- | ---------------- |
| renderExitReason | [RenderExitReason](#renderexitreason枚举说明) | 渲染进程进程异常退出的具体原因。 |
L
update  
laosan_ted 已提交
1777

L
laosan_ted 已提交
1778 1779
**示例:**

Z
zhou-liting125 已提交
1780 1781
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1782
  @Entry
L
update  
laosan_ted 已提交
1783 1784
  @Component
  struct WebComponent {
Y
yamila 已提交
1785
    controller: WebController = new WebController()
L
laosan_ted 已提交
1786
  
L
update  
laosan_ted 已提交
1787 1788
    build() {
      Column() {
L
laosan_ted 已提交
1789 1790
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
Y
yamila 已提交
1791
            console.log('reason:' + event.renderExitReason)
L
laosan_ted 已提交
1792 1793
          })
      }
L
update  
laosan_ted 已提交
1794 1795 1796 1797 1798 1799
    }
  }
  ```

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

L
laosan_ted 已提交
1800
onShowFileSelector(callback: (event?: { result: FileSelectorResult, fileSelector: FileSelectorParam }) => boolean)
L
update  
laosan_ted 已提交
1801

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

Z
zhou-liting125 已提交
1804
**参数:**
L
laosan_ted 已提交
1805

1806 1807 1808 1809
| 参数名          | 参数类型                                     | 参数描述              |
| ------------ | ---------------------------------------- | ----------------- |
| result       | [FileSelectorResult](#fileselectorresult9) | 用于通知Web组件文件选择的结果。 |
| fileSelector | [FileSelectorParam](#fileselectorparam9) | 文件选择器的相关信息。       |
L
update  
laosan_ted 已提交
1810

L
laosan_ted 已提交
1811 1812
**返回值:**

H
HelloCrease 已提交
1813 1814
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
L
laosan_ted 已提交
1815 1816
| boolean | 当返回值为true时,用户可以调用系统提供的弹窗能力。当返回值为false时,触发Web默认弹窗。 |

L
laosan_ted 已提交
1817 1818
**示例:**

Z
zhou-liting125 已提交
1819 1820
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1821
  @Entry
L
update  
laosan_ted 已提交
1822 1823
  @Component
  struct WebComponent {
Y
yamila 已提交
1824
    controller: WebController = new WebController()
L
laosan_ted 已提交
1825

L
update  
laosan_ted 已提交
1826 1827
    build() {
      Column() {
Z
zhou-liting125 已提交
1828
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
          .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 已提交
1845
              }
L
laosan_ted 已提交
1846
            })
Y
yamila 已提交
1847
            return true
L
update  
laosan_ted 已提交
1848
          })
L
laosan_ted 已提交
1849
      }
L
update  
laosan_ted 已提交
1850 1851 1852 1853
    }
  }
  ```

L
laosan_ted 已提交
1854 1855 1856 1857 1858 1859 1860 1861
### onResourceLoad<sup>9+</sup>

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

通知Web组件所加载的资源文件url信息。

**参数:**

H
HelloCrease 已提交
1862 1863 1864
| 参数名  | 参数类型   | 参数描述           |
| ---- | ------ | -------------- |
| url  | string | 所加载的资源文件url信息。 |
L
laosan_ted 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
  
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onResourceLoad((event) => {
            console.log('onResourceLoad: ' + event.url)
          })
      }
    }
  }
  ```

### onScaleChange<sup>9+</sup>

onScaleChange(callback: (event: {oldScale: number, newScale: number}) => void)

当前页面显示比例的变化时触发该回调。

**参数:**

H
HelloCrease 已提交
1894 1895
| 参数名      | 参数类型   | 参数描述         |
| -------- | ------ | ------------ |
L
laosan_ted 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
| oldScale | number | 变化前的显示比例百分比。 |
| newScale | number | 变化后的显示比例百分比。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
  
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onScaleChange((event) => {
            console.log('onScaleChange changed from ' + event.oldScale + ' to ' + event.newScale)
          })
      }
    }
  }
  ```

L
update  
laosan_ted 已提交
1919 1920 1921 1922 1923 1924
### onUrlLoadIntercept

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

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

Z
zhou-liting125 已提交
1925
**参数:**
L
laosan_ted 已提交
1926

1927 1928 1929
| 参数名  | 参数类型                                     | 参数描述      |
| ---- | ---------------------------------------- | --------- |
| data | string / [WebResourceRequest](#webresourcerequest) | url的相关信息。 |
L
update  
laosan_ted 已提交
1930

Z
zhou-liting125 已提交
1931
**返回值:**
L
laosan_ted 已提交
1932

1933 1934 1935
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
1936

L
laosan_ted 已提交
1937 1938
**示例:**

Z
zhou-liting125 已提交
1939 1940
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1941
  @Entry
L
update  
laosan_ted 已提交
1942 1943
  @Component
  struct WebComponent {
Y
yamila 已提交
1944
    controller: WebController = new WebController()
L
laosan_ted 已提交
1945
  
L
update  
laosan_ted 已提交
1946 1947
    build() {
      Column() {
Z
zhou-liting125 已提交
1948
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1949 1950
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
Y
yamila 已提交
1951
            return true
L
laosan_ted 已提交
1952 1953
          })
      }
L
update  
laosan_ted 已提交
1954 1955 1956 1957 1958 1959
    }
  }
  ```

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

L
laosan_ted 已提交
1960
onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)
L
update  
laosan_ted 已提交
1961 1962 1963

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

Z
zhou-liting125 已提交
1964
**参数:**
L
laosan_ted 已提交
1965

1966 1967 1968
| 参数名     | 参数类型                                     | 参数描述        |
| ------- | ---------------------------------------- | ----------- |
| request | [WebResourceRequest](#webresourcerequest) | url请求的相关信息。 |
L
update  
laosan_ted 已提交
1969

Z
zhou-liting125 已提交
1970
**返回值:**
L
laosan_ted 已提交
1971

H
HelloCrease 已提交
1972 1973
| 类型                                       | 说明                                       |
| ---------------------------------------- | ---------------------------------------- |
L
laosan_ted 已提交
1974
| [WebResourceResponse](#webresourceresponse) | 返回响应数据则按照响应数据加载,无响应数据则返回null表示按照原来的方式加载。 |
L
update  
laosan_ted 已提交
1975

L
laosan_ted 已提交
1976 1977
**示例:**

Z
zhou-liting125 已提交
1978 1979
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1980
  @Entry
L
update  
laosan_ted 已提交
1981 1982
  @Component
  struct WebComponent {
Y
yamila 已提交
1983 1984 1985
    controller: WebController = new WebController()
    responseweb: WebResourceResponse = new WebResourceResponse()
    heads:Header[] = new Array()
L
laosan_ted 已提交
1986 1987 1988 1989 1990 1991 1992 1993 1994
    @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 已提交
1995 1996
    build() {
      Column() {
1997
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1998
          .onInterceptRequest((event) => {
Y
yamila 已提交
1999
            console.log('url:' + event.request.getRequestUrl())
L
laosan_ted 已提交
2000 2001 2002 2003 2004 2005 2006 2007
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
Y
yamila 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016
            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
laosan_ted 已提交
2017
          })
L
update  
laosan_ted 已提交
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
2029
**参数:**
L
laosan_ted 已提交
2030

2031 2032 2033 2034 2035
| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| handler | [HttpAuthHandler](#httpauthhandler9) | 通知Web组件用户操作行为。   |
| host    | string                               | HTTP身份验证凭据应用的主机。 |
| realm   | string                               | HTTP身份验证凭据应用的域。  |
L
update  
laosan_ted 已提交
2036

Z
zhou-liting125 已提交
2037
**返回值:**
L
laosan_ted 已提交
2038

2039 2040 2041
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
2042

L
laosan_ted 已提交
2043 2044
**示例:**

Z
zhou-liting125 已提交
2045 2046
  ```ts
  // xxx.ets
L
laosan_ted 已提交
2047
  import web_webview from '@ohos.web.webview'
Z
zhou-liting125 已提交
2048
  @Entry
L
update  
laosan_ted 已提交
2049 2050
  @Component
  struct WebComponent {
Y
yamila 已提交
2051 2052
    controller: WebController = new WebController()
    httpAuth: boolean = false
L
laosan_ted 已提交
2053
  
L
update  
laosan_ted 已提交
2054 2055
    build() {
      Column() {
2056 2057 2058
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
2059
              title: 'onHttpAuthRequest',
2060
              message: 'text',
L
laosan_ted 已提交
2061 2062 2063
              primaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2064
                  event.handler.cancel()
L
laosan_ted 已提交
2065 2066 2067 2068
                }
              },
              secondaryButton: {
                value: 'ok',
2069
                action: () => {
Y
yamila 已提交
2070
                  this.httpAuth = event.handler.isHttpAuthInfoSaved()
2071
                  if (this.httpAuth == false) {
L
laosan_ted 已提交
2072
                    web_webview.WebDataBase.saveHttpAuthCredentials(
2073 2074 2075 2076 2077
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
Y
yamila 已提交
2078
                    event.handler.cancel()
2079
                  }
L
update  
laosan_ted 已提交
2080
                }
2081 2082
              },
              cancel: () => {
Y
yamila 已提交
2083
                event.handler.cancel()
L
update  
laosan_ted 已提交
2084
              }
2085
            })
Y
yamila 已提交
2086
            return true
L
update  
laosan_ted 已提交
2087
          })
Y
yu-shihao4 已提交
2088
      }
L
update  
laosan_ted 已提交
2089 2090 2091
    }
  }
  ```
2092 2093
### onSslErrorEventReceive<sup>9+</sup>

I
i-am-a-little-bird 已提交
2094
onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslError }) => void)
2095

I
i-am-a-little-bird 已提交
2096
通知用户加载资源时发生SSL错误。
2097 2098

**参数:**
I
i-am-a-little-bird 已提交
2099

H
HelloCrease 已提交
2100 2101
| 参数名     | 参数类型                                 | 参数描述           |
| ------- | ------------------------------------ | -------------- |
I
bugfix  
i-am-a-little-bird 已提交
2102
| handler | [SslErrorHandler](#sslerrorhandler9) | 通知Web组件用户操作行为。 |
H
HelloCrease 已提交
2103
| error   | [SslError](#sslerror9枚举说明)           | 错误码。           |
I
bugfix  
i-am-a-little-bird 已提交
2104 2105

**示例:**
2106 2107 2108

  ```ts
  // xxx.ets
I
bugfix  
i-am-a-little-bird 已提交
2109
  import web_webview from '@ohos.web.webview'
2110 2111 2112
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2113
    controller: WebController = new WebController()
I
bugfix  
i-am-a-little-bird 已提交
2114
  
2115 2116 2117
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
I
bugfix  
i-am-a-little-bird 已提交
2118
          .onSslErrorEventReceive((event) => {
2119
            AlertDialog.show({
I
bugfix  
i-am-a-little-bird 已提交
2120
              title: 'onSslErrorEventReceive',
2121
              message: 'text',
I
bugfix  
i-am-a-little-bird 已提交
2122 2123
              primaryButton: {
                value: 'confirm',
2124
                action: () => {
Y
yamila 已提交
2125
                  event.handler.handleConfirm()
I
bugfix  
i-am-a-little-bird 已提交
2126 2127 2128 2129 2130
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2131
                  event.handler.handleCancel()
2132 2133 2134
                }
              },
              cancel: () => {
Y
yamila 已提交
2135
                event.handler.handleCancel()
2136 2137
              }
            })
Y
yamila 已提交
2138
            return true
2139 2140 2141 2142 2143 2144
          })
      }
    }
  }
  ```

I
i-am-a-little-bird 已提交
2145 2146 2147 2148
### onClientAuthenticationRequest<sup>9+</sup>

onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationHandler, host : string, port : number, keyTypes : Array<string>, issuers : Array<string>}) => void)

I
bugfix  
i-am-a-little-bird 已提交
2149
通知用户收到SSL客户端证书请求事件。
I
i-am-a-little-bird 已提交
2150 2151 2152

**参数:**

H
HelloCrease 已提交
2153 2154 2155 2156 2157 2158 2159
| 参数名      | 参数类型                                     | 参数描述            |
| -------- | ---------------------------------------- | --------------- |
| handler  | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。  |
| host     | string                                   | 请求证书服务器的主机名。    |
| port     | number                                   | 请求证书服务器的端口号。    |
| keyTypes | Array<string>                            | 可接受的非对称秘钥类型。    |
| issuers  | Array<string>                            | 与私钥匹配的证书可接受颁发者。 |
I
i-am-a-little-bird 已提交
2160 2161 2162 2163 2164 2165 2166 2167

  **示例:**
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2168
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'onClientAuthenticationRequest',
              message: 'text',
              primaryButton: {
                value: 'confirm',
                action: () => {
Y
yamila 已提交
2180
                  event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem")
I
i-am-a-little-bird 已提交
2181 2182 2183 2184 2185
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2186
                  event.handler.cancel()
I
i-am-a-little-bird 已提交
2187 2188 2189
                }
              },
              cancel: () => {
Y
yamila 已提交
2190
                event.handler.ignore()
I
i-am-a-little-bird 已提交
2191 2192
              }
            })
Y
yamila 已提交
2193
            return true
I
i-am-a-little-bird 已提交
2194 2195 2196 2197 2198 2199
          })
      }
    }
  }
  ```

2200 2201 2202 2203 2204 2205 2206
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

**参数:**
L
laosan_ted 已提交
2207

H
HelloCrease 已提交
2208 2209 2210
| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| request | [PermissionRequest](#permissionrequest9) | 通知Web组件用户操作行为。 |
2211

L
laosan_ted 已提交
2212 2213
**示例:**

2214 2215 2216 2217 2218
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2219
    controller: WebController = new WebController()
2220 2221
    build() {
      Column() {
2222 2223 2224 2225 2226
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
2227 2228 2229
              primaryButton: {
                value: 'deny',
                action: () => {
Y
yamila 已提交
2230
                  event.request.deny()
L
laosan_ted 已提交
2231 2232 2233
                }
              },
              secondaryButton: {
2234 2235
                value: 'onConfirm',
                action: () => {
Y
yamila 已提交
2236
                  event.request.grant(event.request.getAccessibleResource())
2237 2238 2239
                }
              },
              cancel: () => {
Y
yamila 已提交
2240
                event.request.deny()
2241
              }
2242
            })
2243
          })
Y
yu-shihao4 已提交
2244
      }
2245 2246 2247
    }
  }
  ```
2248

2249 2250 2251 2252
### onContextMenuShow<sup>9+</sup>

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

I
i-am-a-little-bird 已提交
2253
长按特定元素(例如图片,链接)或鼠标右键,跳出菜单。
2254 2255

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

H
HelloCrease 已提交
2257 2258 2259 2260
| 参数名    | 参数类型                                     | 参数描述        |
| ------ | ---------------------------------------- | ----------- |
| param  | [WebContextMenuParam](#webcontextmenuparam9) | 菜单相关参数。     |
| result | [WebContextMenuResult](#webcontextmenuresult9) | 菜单相应事件传入内核。 |
2261

Y
yu-shihao4 已提交
2262 2263
**返回值:**

H
HelloCrease 已提交
2264 2265
| 类型      | 说明                       |
| ------- | ------------------------ |
Y
yu-shihao4 已提交
2266 2267
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
2268
**示例:**
Y
yu-shihao4 已提交
2269

2270 2271 2272 2273 2274
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2275
    controller: WebController = new WebController()
2276 2277
    build() {
      Column() {
2278
        Web({ src: 'www.example.com', controller: this.controller })
Y
yu-shihao4 已提交
2279
          .onContextMenuShow((event) => {
Y
yamila 已提交
2280 2281 2282
            console.info("x coord = " + event.param.x())
            console.info("link url = " + event.param.getLinkUrl())
            return true
2283 2284
        })
      }
2285 2286 2287
    }
  }
  ```
2288

L
laosan_ted 已提交
2289 2290 2291 2292 2293 2294 2295 2296
### onScroll<sup>9+</sup>

onScroll(callback: (event: {xOffset: number, yOffset: number}) => void)

通知网页滚动条滚动位置。

**参数:**

H
HelloCrease 已提交
2297 2298 2299 2300
| 参数名     | 参数类型   | 参数描述         |
| ------- | ------ | ------------ |
| xOffset | number | 水平滚动条滚动所在位置。 |
| yOffset | number | 竖直滚动条滚动所在位置。 |
L
laosan_ted 已提交
2301 2302 2303 2304 2305 2306 2307 2308

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2309
    controller: WebController = new WebController()
L
laosan_ted 已提交
2310 2311 2312 2313
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .onScroll((event) => {
Y
yamila 已提交
2314 2315
            console.info("x = " + event.xOffset)
            console.info("y = " + event.yOffset)
L
laosan_ted 已提交
2316 2317 2318 2319 2320 2321
        })
      }
    }
  }
  ```

2322 2323 2324 2325
### onGeolocationShow

onGeolocationShow(callback: (event?: { origin: string, geolocation: JsGeolocation }) => void)

2326
通知用户收到地理位置信息获取请求。
2327 2328 2329

**参数:**

H
HelloCrease 已提交
2330 2331
| 参数名         | 参数类型                            | 参数描述           |
| ----------- | ------------------------------- | -------------- |
2332
| origin      | string                          | 指定源的字符串索引。     |
H
HelloCrease 已提交
2333
| geolocation | [JsGeolocation](#jsgeolocation) | 通知Web组件用户操作行为。 |
2334 2335

**示例:**
2336

2337 2338 2339 2340 2341
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2342
    controller:WebController = new WebController()
2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationShow((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
Y
yamila 已提交
2354
                event.geolocation.invoke(event.origin, true, true)
2355 2356 2357
              }
            },
            cancel: () => {
Y
yamila 已提交
2358
              event.geolocation.invoke(event.origin, false, true)
2359 2360 2361 2362 2363 2364 2365 2366
            }
          })
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2367 2368 2369 2370 2371 2372 2373 2374
### onGeolocationHide

onGeolocationHide(callback: () => void)

通知用户先前被调用[onGeolocationShow](#ongeolocationshow)时收到地理位置信息获取请求已被取消。

**参数:**

H
HelloCrease 已提交
2375 2376 2377
| 参数名      | 参数类型       | 参数描述                 |
| -------- | ---------- | -------------------- |
| callback | () => void | 地理位置信息获取请求已被取消的回调函数。 |
L
laosan_ted 已提交
2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller:WebController = new WebController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationHide(() => {
          console.log("onGeolocationHide...")
        })
      }
    }
  }
  ```

E
echoorchid 已提交
2399 2400 2401 2402 2403 2404 2405 2406
### onFullScreenEnter<sup>9+</sup>

onFullScreenEnter(callback: (event: { handler: FullScreenExitHandler }) => void)

通知开发者web组件进入全屏模式。

**参数:**

H
HelloCrease 已提交
2407 2408 2409
| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| handler | [FullScreenExitHandler](#fullscreenexithandler9) | 用于退出全屏模式的函数句柄。 |
E
echoorchid 已提交
2410 2411 2412 2413 2414 2415 2416 2417

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2418 2419
    controller:WebController = new WebController()
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2420 2421 2422 2423
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2424 2425
          console.log("onFullScreenEnter...")
          this.handler = event.handler
E
echoorchid 已提交
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
        })
      }
    }
  }
  ```

### onFullScreenExit<sup>9+</sup>

onFullScreenExit(callback: () => void)

通知开发者web组件退出全屏模式。

**参数:**

H
HelloCrease 已提交
2440 2441 2442
| 参数名      | 参数类型       | 参数描述          |
| -------- | ---------- | ------------- |
| callback | () => void | 退出全屏模式时的回调函数。 |
E
echoorchid 已提交
2443 2444 2445 2446 2447 2448 2449 2450

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2451 2452
    controller:WebController = new WebController()
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2453 2454 2455 2456
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenExit(() => {
Y
yamila 已提交
2457 2458
          console.log("onFullScreenExit...")
          this.handler.exitFullScreen()
E
echoorchid 已提交
2459 2460
        })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2461
          this.handler = event.handler
E
echoorchid 已提交
2462 2463 2464 2465 2466 2467
        })
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
2468 2469 2470 2471 2472 2473 2474 2475
### onWindowNew<sup>9+</sup>

onWindowNew(callback: (event: {isAlert: boolean, isUserTrigger: boolean, targetUrl: string, handler: ControllerHandler}) => void)

通知用户新建窗口请求。

**参数:**

H
HelloCrease 已提交
2476 2477 2478 2479 2480 2481
| 参数名           | 参数类型                                     | 参数描述                       |
| ------------- | ---------------------------------------- | -------------------------- |
| isAlert       | boolean                                  | true代表请求创建对话框,false代表新标签页。 |
| isUserTrigger | boolean                                  | true代表用户触发,false代表非用户触发。   |
| targetUrl     | string                                   | 目标url。                     |
| handler       | [ControllerHandler](#controllerhandler9) | 用于设置新建窗口的WebController实例。  |
X
xiongjun_gitee 已提交
2482 2483 2484 2485 2486

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
2487
  import web_webview from '@ohos.web.webview'
X
xiongjun_gitee 已提交
2488 2489 2490
  @Entry
  @Component
  struct WebComponent {
2491
    controller: web_webview.WebviewController = new web_webview.WebviewController()
X
xiongjun_gitee 已提交
2492 2493 2494 2495 2496
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
        .multiWindowAccess(true)
        .onWindowNew((event) => {
Y
yamila 已提交
2497
          console.log("onWindowNew...")
2498
          var popController: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2499
          event.handler.setWebController(popController)
X
xiongjun_gitee 已提交
2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
        })
      }
    }
  }
  ```

### onWindowExit<sup>9+</sup>

onWindowExit(callback: () => void)

通知用户窗口关闭请求。

**参数:**

H
HelloCrease 已提交
2514 2515 2516
| 参数名      | 参数类型       | 参数描述         |
| -------- | ---------- | ------------ |
| callback | () => void | 窗口请求关闭的回调函数。 |
X
xiongjun_gitee 已提交
2517 2518 2519 2520 2521 2522 2523 2524

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2525
    controller:WebController = new WebController()
X
xiongjun_gitee 已提交
2526 2527 2528
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2529
        .onWindowExit(() => {
Y
yamila 已提交
2530
          console.log("onWindowExit...")
X
xiongjun_gitee 已提交
2531 2532 2533 2534 2535 2536
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2537 2538 2539 2540 2541 2542 2543 2544
### onSearchResultReceive<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2545 2546 2547 2548 2549
| 参数名                | 参数类型    | 参数描述                                     |
| ------------------ | ------- | ---------------------------------------- |
| activeMatchOrdinal | number  | 当前匹配的查找项的序号(从0开始)。                       |
| numberOfMatches    | number  | 所有匹配到的关键词的个数。                            |
| isDoneCounting     | boolean | 当次页内查找操作是否结束。该方法可能会回调多次,直到isDoneCounting为true为止。 |
L
laosan_ted 已提交
2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571

**示例:**

  ```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)
          })
      }
    }
  }
  ```

C
chensi10 已提交
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581
### onDataResubmitted<sup>9+</sup>

onDataResubmitted(callback: (event: {handler: DataResubmissionHandler}) => void)

设置网页表单可以重新提交时触发的回调函数。

**参数:**

| 参数名  | 参数类型                                             | 参数描述               |
| ------- | ---------------------------------------------------- | ---------------------- |
C
chensi10 已提交
2582
| handler | [DataResubmissionHandler](#dataresubmissionhandler9) | 表单数据重新提交句柄。 |
C
chensi10 已提交
2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
2596
         .onDataResubmitted((event) => {
C
chensi10 已提交
2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608
          console.log('onDataResubmitted')
          event.handler.resend();
        })
      }
    }
  }
  ```

### onPageVisible<sup>9+</sup>

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

C
chensi10 已提交
2609
设置旧页面不再呈现,新页面即将可见时触发的回调函数。
C
chensi10 已提交
2610 2611 2612

**参数:**

C
chensi10 已提交
2613 2614 2615
| 参数名 | 参数类型 | 参数描述                                          |
| ------ | -------- | ------------------------------------------------- |
| url    | string   | 旧页面不再呈现,新页面即将可见时新页面的url地址。 |
C
chensi10 已提交
2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
2629
         .onPageVisible((event) => {
C
chensi10 已提交
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648
          console.log('onPageVisible url:' + event.url)
        })
      }
    }
  }
  ```

### onInterceptKeyEvent<sup>9+</sup>

onInterceptKeyEvent(callback: (event: KeyEvent) => boolean)

设置键盘事件的回调函数,该回调在被Webview消费前触发。

**参数:**

| 参数名 | 参数类型                                                | 参数描述             |
| ------ | ------------------------------------------------------- | -------------------- |
| event  | [KeyEvent](ts-universal-events-key.md#keyevent对象说明) | 触发的KeyEvent事件。 |

C
chensi10 已提交
2649 2650 2651 2652 2653 2654
**返回值:**

| 类型    | 说明                                                         |
| ------- | ------------------------------------------------------------ |
| boolean | 回调函数通过返回boolean类型值来决定是否继续将该KeyEvent传入Webview内核。 |

C
chensi10 已提交
2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666
**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
2667
         .onInterceptKeyEvent((event) => {
C
chensi10 已提交
2668 2669 2670 2671 2672
          	if (event.keyCode == 2017 || event.keyCode == 2018) {
            console.info(`onInterceptKeyEvent get event.keyCode ${event.keyCode}`)
            return true;
          }
          return false;
C
chensi10 已提交
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
        })
      }
    }
  }
  ```

### onTouchIconUrlReceived<sup>9+</sup>

onTouchIconUrlReceived(callback: (event: {url: string, precomposed: boolean}) => void)

设置接收到apple-touch-icon url地址时的回调函数。

**参数:**

| 参数名      | 参数类型 | 参数描述                           |
| ----------- | -------- | ---------------------------------- |
| url         | string   | 接收到的apple-touch-icon url地址。 |
| precomposed | boolean  | 对应apple-touch-icon是否为预合成。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
C
chensi10 已提交
2703 2704
        Web({ src:'www.baidu.com', controller: this.controller })
         .onTouchIconUrlReceived((event) => {
C
chensi10 已提交
2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737
          console.log('onTouchIconUrlReceived:' + JSON.stringify(event))
        })
      }
    }
  }
  ```

### onFaviconReceived<sup>9+</sup>

onFaviconReceived(callback: (event: {favicon: image.PixelMap}) => void)

设置应用为当前页面接收到新的favicon时的回调函数。

**参数:**

| 参数名  | 参数类型                                       | 参数描述                            |
| ------- | ---------------------------------------------- | ----------------------------------- |
| favicon | [PixelMap](../apis/js-apis-image.md#pixelmap7) | 接收到的favicon图标的PixelMap对象。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  import image from "@ohos.multimedia.image"
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State icon: image.PixelMap = undefined;
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
2738 2739
         .onFaviconReceived((event) => {
          console.log('onFaviconReceived:' + JSON.stringify(event))
C
chensi10 已提交
2740 2741 2742 2743 2744 2745 2746
          this.icon = event.favicon;
        })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
2747
## ConsoleMessage
2748

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

Z
zhou-liting125 已提交
2751
### getLineNumber
2752

Z
zhou-liting125 已提交
2753 2754 2755 2756
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
2757
**返回值:** 
L
laosan_ted 已提交
2758

2759 2760 2761
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
2762 2763 2764 2765 2766 2767 2768

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
2769
**返回值:** 
L
laosan_ted 已提交
2770

2771 2772 2773
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
2774 2775 2776 2777

### getMessageLevel

getMessageLevel(): MessageLevel
2778

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

Z
zhou-liting125 已提交
2781
**返回值:** 
L
laosan_ted 已提交
2782

2783 2784 2785
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
2786 2787 2788 2789 2790 2791 2792

### getSourceId

getSourceId(): string

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

Z
zhou-liting125 已提交
2793
**返回值:** 
L
laosan_ted 已提交
2794

2795 2796 2797
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
2798 2799

## JsResult
L
lixingchi1 已提交
2800

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

Z
zhou-liting125 已提交
2803 2804 2805
### handleCancel

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

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

Z
zhou-liting125 已提交
2809
### handleConfirm
L
add web  
liujinwei 已提交
2810

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

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

Z
zhou-liting125 已提交
2815 2816 2817 2818 2819 2820
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
2821
**参数:**
L
laosan_ted 已提交
2822

2823 2824 2825
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
2826

E
echoorchid 已提交
2827 2828 2829 2830 2831 2832 2833 2834 2835 2836
## FullScreenExitHandler<sup>9+</sup>

通知开发者Web组件退出全屏。示例代码参考[onFullScreenEnter事件](#onfullscreenenter9)

### exitFullScreen<sup>9+</sup>

exitFullScreen(): void

通知开发者Web组件退出全屏。

X
xiongjun_gitee 已提交
2837 2838
## ControllerHandler<sup>9+</sup>

2839
设置用户新建web组件的的WebviewController对象。示例代码参考[onWindowNew事件](#onwindownew9)
X
xiongjun_gitee 已提交
2840 2841 2842

### setWebController<sup>9+</sup>

2843
setWebController(controller: WebviewController): void
X
xiongjun_gitee 已提交
2844

2845
设置WebviewController对象。
X
xiongjun_gitee 已提交
2846 2847 2848

**参数:**

H
HelloCrease 已提交
2849 2850
| 参数名        | 参数类型          | 必填   | 默认值  | 参数描述                      |
| ---------- | ------------- | ---- | ---- | ------------------------- |
2851
| controller | [WebviewController](../apis/js-apis-webview.md#webviewcontroller) | 是    | -    | 新建web组件的的WebviewController对象。 |
X
xiongjun_gitee 已提交
2852

Z
zhou-liting125 已提交
2853 2854
## WebResourceError

L
update  
laosan_ted 已提交
2855
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
2856 2857 2858 2859 2860 2861 2862

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
2863
**返回值:** 
L
laosan_ted 已提交
2864

2865 2866 2867
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
2868 2869 2870 2871 2872 2873 2874

### getErrorInfo

getErrorInfo(): string

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

Z
zhou-liting125 已提交
2875
**返回值:** 
L
laosan_ted 已提交
2876

2877 2878 2879
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
2880 2881 2882

## WebResourceRequest

L
update  
laosan_ted 已提交
2883
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
2884 2885 2886 2887 2888 2889 2890

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

Z
zhou-liting125 已提交
2891
**返回值:** 
L
laosan_ted 已提交
2892

2893 2894 2895
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
2896 2897 2898 2899 2900 2901 2902

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

Z
zhou-liting125 已提交
2903
**返回值:** 
L
laosan_ted 已提交
2904

2905 2906 2907
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
2908 2909 2910 2911 2912 2913 2914

### isMainFrame

isMainFrame(): boolean

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

Z
zhou-liting125 已提交
2915
**返回值:** 
L
laosan_ted 已提交
2916

2917 2918 2919
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
2920 2921 2922 2923 2924 2925 2926

### isRedirect

isRedirect(): boolean

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

Z
zhou-liting125 已提交
2927
**返回值:** 
L
laosan_ted 已提交
2928

2929 2930 2931
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
2932 2933 2934 2935 2936 2937 2938

### isRequestGesture

isRequestGesture(): boolean

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

Z
zhou-liting125 已提交
2939
**返回值:** 
L
laosan_ted 已提交
2940

2941 2942 2943
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
2944 2945

## Header
L
liwenzhen 已提交
2946 2947 2948

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

2949 2950 2951 2952
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
2953

L
add web  
liujinwei 已提交
2954

Z
zhou-liting125 已提交
2955
## WebResourceResponse
L
add web  
liujinwei 已提交
2956

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

Z
zhou-liting125 已提交
2959
### getReasonMessage
T
Ted 已提交
2960

Z
zhou-liting125 已提交
2961
getReasonMessage(): string
T
Ted 已提交
2962

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

Z
zhou-liting125 已提交
2965
**返回值:** 
L
laosan_ted 已提交
2966

2967 2968 2969
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
2970

Z
zhou-liting125 已提交
2971
### getResponseCode
T
Ted 已提交
2972

Z
zhou-liting125 已提交
2973 2974 2975 2976
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
2977
**返回值:** 
L
laosan_ted 已提交
2978

2979 2980 2981
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
2982 2983 2984 2985 2986 2987 2988

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
2989
**返回值:** 
L
laosan_ted 已提交
2990

2991 2992 2993
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
2994 2995 2996 2997 2998 2999 3000

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
3001
**返回值:** 
L
laosan_ted 已提交
3002

3003 3004 3005
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
3006 3007 3008 3009 3010 3011 3012

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
3013
**返回值:** 
L
laosan_ted 已提交
3014

3015 3016 3017
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
3018 3019 3020 3021 3022 3023 3024

### getResponseMimeType

getResponseMimeType(): string

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

Z
zhou-liting125 已提交
3025
**返回值:** 
L
laosan_ted 已提交
3026

3027 3028 3029
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3030 3031 3032 3033 3034 3035 3036

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

setResponseData(data: string)

设置资源响应数据。

Z
zhou-liting125 已提交
3037
**参数:**
L
laosan_ted 已提交
3038

3039 3040 3041
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
3042 3043 3044 3045 3046 3047 3048

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
3049
**参数:**
L
laosan_ted 已提交
3050

3051 3052 3053
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
3054 3055 3056 3057 3058 3059 3060

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
3061
**参数:**
L
laosan_ted 已提交
3062

3063 3064 3065
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3066 3067 3068 3069 3070 3071 3072

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
3073
**参数:**
L
laosan_ted 已提交
3074

3075 3076 3077
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
3078 3079 3080 3081 3082 3083 3084

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
3085
**参数:**
L
laosan_ted 已提交
3086

3087 3088 3089
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
3090 3091 3092 3093 3094 3095 3096

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
3097
**参数:**
L
laosan_ted 已提交
3098

3099 3100 3101
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
3102 3103

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

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

Z
zhou-liting125 已提交
3107
### handleFileList<sup>9+</sup>
3108

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

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

Z
zhou-liting125 已提交
3113
**参数:**
L
laosan_ted 已提交
3114

3115 3116 3117
| 参数名      | 参数类型            | 必填   | 默认值  | 参数描述         |
| -------- | --------------- | ---- | ---- | ------------ |
| fileList | Array\<string\> | 是    | -    | 需要进行操作的文件列表。 |
3118

Z
zhou-liting125 已提交
3119 3120
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
3121
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
3122 3123 3124 3125 3126 3127 3128

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

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
3129
**返回值:** 
L
laosan_ted 已提交
3130

3131 3132 3133
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
3134 3135 3136 3137 3138 3139 3140

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

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
3141
**返回值:** 
L
laosan_ted 已提交
3142

3143 3144 3145
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
3146 3147 3148 3149 3150 3151 3152

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
3153
**返回值:** 
L
laosan_ted 已提交
3154

3155 3156 3157
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
3158 3159 3160 3161 3162 3163 3164

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

isCapture(): boolean

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

Z
zhou-liting125 已提交
3165
**返回值:** 
L
laosan_ted 已提交
3166

3167 3168 3169
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
3170 3171 3172

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

Z
zhou-liting125 已提交
3173
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
3174 3175 3176 3177 3178 3179 3180 3181

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

cancel(): void

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

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

3183 3184 3185 3186
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
3187
**参数:**
3188

3189 3190 3191 3192
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述       |
| -------- | ------ | ---- | ---- | ---------- |
| userName | string | 是    | -    | HTTP认证用户名。 |
| pwd      | string | 是    | -    | HTTP认证密码。  |
3193

Z
zhou-liting125 已提交
3194
**返回值:**
L
laosan_ted 已提交
3195

3196 3197 3198
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
3199 3200 3201 3202 3203 3204 3205

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

isHttpAuthInfoSaved(): boolean

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

Z
zhou-liting125 已提交
3206
**返回值:**
L
laosan_ted 已提交
3207

3208 3209 3210
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
3211

3212 3213
## SslErrorHandler<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3214
Web组件返回的SSL错误通知事件用户处理功能对象。示例代码参考[onSslErrorEventReceive事件](#onsslerroreventreceive9)
3215 3216 3217 3218 3219

### handleCancel<sup>9+</sup>

handleCancel(): void

I
i-am-a-little-bird 已提交
3220
通知Web组件取消此请求。
3221 3222 3223 3224 3225

### handleConfirm<sup>9+</sup>

handleConfirm(): void

I
i-am-a-little-bird 已提交
3226 3227 3228 3229
通知Web组件继续使用SSL证书。

## ClientAuthenticationHandler<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3230
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onclientauthenticationrequest9)
I
i-am-a-little-bird 已提交
3231 3232 3233 3234 3235 3236

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

confirm(priKeyFile : string, certChainFile : string): void

通知Web组件使用指定的私钥和客户端证书链。
I
bugfix  
i-am-a-little-bird 已提交
3237

I
i-am-a-little-bird 已提交
3238 3239
**参数:**

H
HelloCrease 已提交
3240 3241 3242 3243
| 参数名           | 参数类型   | 必填   | 参数描述               |
| ------------- | ------ | ---- | ------------------ |
| priKeyFile    | string | 是    | 存放私钥的文件,包含路径和文件名。  |
| certChainFile | string | 是    | 存放证书链的文件,包含路径和文件名。 |
I
i-am-a-little-bird 已提交
3244 3245

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

I
i-am-a-little-bird 已提交
3247 3248
cancel(): void

I
bugfix  
i-am-a-little-bird 已提交
3249
通知Web组件取消相同host和port服务器发送的客户端证书请求事件。同时,相同host和port服务器的请求,不重复上报该事件。
I
i-am-a-little-bird 已提交
3250 3251 3252 3253 3254 3255

### ignore<sup>9+</sup>

ignore(): void

通知Web组件忽略本次请求。
3256

3257 3258
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
3259
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

H
HelloCrease 已提交
3275 3276 3277
| 类型     | 说明           |
| ------ | ------------ |
| string | 当前请求权限网页的来源。 |
3278 3279 3280 3281 3282

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
3283
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
3284 3285 3286

**返回值:**

H
HelloCrease 已提交
3287 3288
| 类型              | 说明            |
| --------------- | ------------- |
3289 3290 3291 3292 3293 3294
| Array\<string\> | 网页所请求的权限资源列表。 |

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

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

X
xiongjun_gitee 已提交
3295
对网页访问的给定权限进行授权。
3296 3297 3298

**参数:**

H
HelloCrease 已提交
3299 3300
| 参数名       | 参数类型            | 必填   | 默认值  | 参数描述          |
| --------- | --------------- | ---- | ---- | ------------- |
L
laosan_ted 已提交
3301
| resources | Array\<string\> | 是    | -    | 授予网页请求的权限的资源列表。 |
3302

I
i-am-a-little-bird 已提交
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337
## ContextMenuSourceType<sup>9+</sup>枚举说明
| 名称                   | 描述         |
| -------------------- | ---------- |
| None        | 其他事件来源。  |
| Mouse       | 鼠标事件。  |
| LongPress   | 长按事件。  |

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

| 名称           | 描述          |
| ------------ | ----------- |
| None      | 非特殊媒体或其他媒体类型。 |
| Image     | 图片。     |

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

| 名称           | 描述          |
| ------------ | ----------- |
| None      | 非输入框。       |
| PlainText | 纯文本类型,包括text、search、email等。   |
| Password  | 密码类型。     |
| Number    | 数字类型。     |
| Telephone | 电话号码类型。 |
| Other     | 其他类型。     |

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

| 名称         | 描述         |
| ------------ | ----------- |
| NONE         | 不可编辑。   |
| CAN_CUT      | 支持剪切。   |
| CAN_COPY     | 支持拷贝。   |
| CAN_PASTE    | 支持粘贴。   |
| CAN_SELECT_ALL  | 支持全选。 |

3338 3339
## WebContextMenuParam<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3340
实现长按页面元素或鼠标右键弹出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
3341 3342 3343 3344 3345 3346 3347 3348 3349

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

x(): number

弹出菜单的x坐标。

**返回值:**

H
HelloCrease 已提交
3350 3351
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
3352
| number | 显示正常返回非负整数,否则返回-1。 |
3353 3354 3355 3356 3357 3358 3359 3360 3361

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

y(): number

弹出菜单的y坐标。

**返回值:**

H
HelloCrease 已提交
3362 3363
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
3364
| number | 显示正常返回非负整数,否则返回-1。 |
3365 3366 3367 3368 3369

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

getLinkUrl(): string

Y
yu-shihao4 已提交
3370
获取链接地址。
3371 3372 3373

**返回值:**

H
HelloCrease 已提交
3374 3375
| 类型     | 说明                        |
| ------ | ------------------------- |
Y
yu-shihao4 已提交
3376
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
3377

3378
### getUnfilteredLinkUrl<sup>9+</sup>
3379

3380
getUnfilteredLinkUrl(): string
3381

Y
yu-shihao4 已提交
3382
获取链接地址。
3383 3384 3385

**返回值:**

H
HelloCrease 已提交
3386 3387
| 类型     | 说明                    |
| ------ | --------------------- |
Y
yu-shihao4 已提交
3388
| string | 如果长按位置是链接,返回原始的url链接。 |
3389 3390 3391 3392 3393 3394 3395 3396 3397

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

getSourceUrl(): string

获取sourceUrl链接。

**返回值:**

H
HelloCrease 已提交
3398 3399
| 类型     | 说明                       |
| ------ | ------------------------ |
3400 3401 3402 3403 3404 3405 3406 3407 3408 3409
| string | 如果选中的元素有src属性,返回src的url。 |

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

existsImageContents(): boolean

是否存在图像内容。

**返回值:**

H
HelloCrease 已提交
3410 3411
| 类型      | 说明                        |
| ------- | ------------------------- |
3412 3413
| boolean | 长按位置中有图片返回true,否则返回false。 |

I
i-am-a-little-bird 已提交
3414 3415
### getMediaType<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3416
getMediaType(): ContextMenuMediaType
I
i-am-a-little-bird 已提交
3417 3418 3419 3420 3421 3422 3423

获取网页元素媒体类型。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
3424
| [ContextMenuMediaType](#contextmenumediatype9枚举说明) | 网页元素媒体类型。 |
I
i-am-a-little-bird 已提交
3425 3426 3427

### getSelectionText<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3428
getSelectionText(): string
I
i-am-a-little-bird 已提交
3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439

获取选中文本。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
| string | 菜单上下文选中文本内容,不存在则返回空。 |

### getSourceType<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3440
getSourceType(): ContextMenuSourceType
I
i-am-a-little-bird 已提交
3441 3442 3443 3444 3445 3446 3447

获取菜单事件来源。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
3448
| [ContextMenuSourceType](#contextmenusourcetype9枚举说明) | 菜单事件来源。 |
I
i-am-a-little-bird 已提交
3449 3450 3451

### getInputFieldType<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3452
getInputFieldType(): ContextMenuInputFieldType
I
i-am-a-little-bird 已提交
3453 3454 3455 3456 3457 3458 3459

获取网页元素输入框类型。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
3460
| [ContextMenuInputFieldType](#contextmenuinputfieldtype9枚举说明) | 输入框类型。 |
I
i-am-a-little-bird 已提交
3461 3462 3463

### isEditable<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3464
isEditable(): boolean
I
i-am-a-little-bird 已提交
3465 3466 3467 3468 3469 3470 3471

获取网页元素是否可编辑标识。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
I
bugfix  
i-am-a-little-bird 已提交
3472
| boolean | 网页元素可编辑返回true,不可编辑返回false。 |
I
i-am-a-little-bird 已提交
3473 3474 3475

### getEditStateFlags<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3476
getEditStateFlags(): number
I
i-am-a-little-bird 已提交
3477 3478 3479 3480 3481 3482 3483

获取网页元素可编辑标识。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
I
bugfix  
i-am-a-little-bird 已提交
3484
| number | 网页元素可编辑标识,参照[ContextMenuEditStateFlags](#contextmenueditstateflags9枚举说明)。 |
I
i-am-a-little-bird 已提交
3485

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

I
bugfix  
i-am-a-little-bird 已提交
3488
实现长按页面元素或鼠标右键弹出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501

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

closeContextMenu(): void

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

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

copyImage(): void

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

I
i-am-a-little-bird 已提交
3502 3503
### copy<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3504
copy(): void
I
i-am-a-little-bird 已提交
3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525

执行与此上下文菜单相关的拷贝操作。

### paste<sup>9+</sup>

paste(): void

执行与此上下文菜单相关的粘贴操作。

### cut<sup>9+</sup>

cut(): void

执行与此上下文菜单相关的剪切操作。

### selectAll<sup>9+</sup>

selectAll(): void

执行与此上下文菜单相关的全选操作。

3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537
## JsGeolocation

Web组件返回授权或拒绝权限功能的对象。示例代码参考[onGeolocationShow事件](#ongeolocationshow)

### invoke

invoke(origin: string, allow: boolean, retain: boolean): void

设置网页地理位置权限状态。

**参数:**

H
HelloCrease 已提交
3538 3539 3540 3541 3542
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述                                     |
| ------ | ------- | ---- | ---- | ---------------------------------------- |
| origin | string  | 是    | -    | 指定源的字符串索引。                               |
| allow  | boolean | 是    | -    | 设置的地理位置权限状态。                             |
| retain | boolean | 是    | -    | 是否允许将地理位置权限状态保存到系统中。可通过[GeolocationPermissions](#geolocationpermissions9)接口管理保存到系统的地理位置权限。 |
3543

Z
zengyawen 已提交
3544 3545
## WebController

L
liwenzhen 已提交
3546
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
3547 3548 3549 3550 3551 3552 3553

### 创建对象

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

L
laosan_ted 已提交
3554 3555 3556 3557 3558 3559 3560
### requestFocus

requestFocus()

使当前web页面获取焦点。

**示例:**
L
laosan_ted 已提交
3561

L
laosan_ted 已提交
3562 3563 3564 3565 3566
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3567
    controller: WebController = new WebController()
L
laosan_ted 已提交
3568 3569 3570 3571 3572
  
    build() {
      Column() {
        Button('requestFocus')
          .onClick(() => {
Y
yamila 已提交
3573
            this.controller.requestFocus()
L
laosan_ted 已提交
3574 3575 3576 3577 3578 3579 3580
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
lixingchi1 已提交
3581 3582 3583 3584
### accessBackward

accessBackward(): boolean

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

Z
zhou-liting125 已提交
3587
**返回值:**
L
laosan_ted 已提交
3588

3589 3590 3591
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
3592

Z
zhou-liting125 已提交
3593
**示例:**
L
laosan_ted 已提交
3594

Z
zhou-liting125 已提交
3595 3596
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3597
  @Entry
L
update  
laosan_ted 已提交
3598 3599
  @Component
  struct WebComponent {
Y
yamila 已提交
3600
    controller: WebController = new WebController()
L
laosan_ted 已提交
3601
  
L
update  
laosan_ted 已提交
3602 3603 3604
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
3605
          .onClick(() => {
Y
yamila 已提交
3606 3607
            let result = this.controller.accessBackward()
            console.log('result:' + result)
L
laosan_ted 已提交
3608
          })
Z
zhou-liting125 已提交
3609
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3610
      }
L
update  
laosan_ted 已提交
3611 3612 3613 3614
    }
  }
  ```

L
lixingchi1 已提交
3615 3616 3617 3618
### accessForward

accessForward(): boolean

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

Z
zhou-liting125 已提交
3621
**返回值:**
L
laosan_ted 已提交
3622

3623 3624 3625
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
3626

Z
zhou-liting125 已提交
3627
**示例:**
L
laosan_ted 已提交
3628

Z
zhou-liting125 已提交
3629 3630
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3631
  @Entry
L
update  
laosan_ted 已提交
3632 3633
  @Component
  struct WebComponent {
Y
yamila 已提交
3634
    controller: WebController = new WebController()
L
laosan_ted 已提交
3635
  
L
update  
laosan_ted 已提交
3636 3637 3638
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
3639
          .onClick(() => {
Y
yamila 已提交
3640 3641
            let result = this.controller.accessForward()
            console.log('result:' + result)
L
laosan_ted 已提交
3642
          })
Z
zhou-liting125 已提交
3643
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3644
      }
L
update  
laosan_ted 已提交
3645 3646 3647 3648
    }
  }
  ```

L
lixingchi1 已提交
3649
### accessStep
Z
zengyawen 已提交
3650

L
lixingchi1 已提交
3651
accessStep(step: number): boolean
Z
zengyawen 已提交
3652

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

Z
zhou-liting125 已提交
3655
**参数:**
Z
zengyawen 已提交
3656

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

Z
zhou-liting125 已提交
3661
**返回值:**
L
laosan_ted 已提交
3662

3663 3664 3665
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
3666

Z
zhou-liting125 已提交
3667
**示例:**
L
laosan_ted 已提交
3668

Z
zhou-liting125 已提交
3669 3670
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3671
  @Entry
L
update  
laosan_ted 已提交
3672 3673
  @Component
  struct WebComponent {
Y
yamila 已提交
3674 3675
    controller: WebController = new WebController()
    @State steps: number = 2
L
laosan_ted 已提交
3676
  
L
update  
laosan_ted 已提交
3677 3678 3679
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
3680
          .onClick(() => {
Y
yamila 已提交
3681 3682
            let result = this.controller.accessStep(this.steps)
            console.log('result:' + result)
L
laosan_ted 已提交
3683
          })
Z
zhou-liting125 已提交
3684
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3685
      }
L
update  
laosan_ted 已提交
3686 3687 3688 3689
    }
  }
  ```

L
lixingchi1 已提交
3690 3691
### backward

L
update  
laosan_ted 已提交
3692
backward(): void
L
lixingchi1 已提交
3693

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

Z
zhou-liting125 已提交
3696
**示例:**
L
laosan_ted 已提交
3697

Z
zhou-liting125 已提交
3698 3699
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3700
  @Entry
L
update  
laosan_ted 已提交
3701 3702
  @Component
  struct WebComponent {
Y
yamila 已提交
3703
    controller: WebController = new WebController()
L
laosan_ted 已提交
3704
  
L
update  
laosan_ted 已提交
3705 3706 3707
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
3708
          .onClick(() => {
Y
yamila 已提交
3709
            this.controller.backward()
L
laosan_ted 已提交
3710
          })
Z
zhou-liting125 已提交
3711
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3712
      }
L
update  
laosan_ted 已提交
3713 3714 3715
    }
  }
  ```
L
lixingchi1 已提交
3716 3717 3718

### forward

L
update  
laosan_ted 已提交
3719
forward(): void
L
lixingchi1 已提交
3720

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

Z
zhou-liting125 已提交
3723
**示例:**
L
laosan_ted 已提交
3724

Z
zhou-liting125 已提交
3725 3726
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3727
  @Entry
L
update  
laosan_ted 已提交
3728 3729
  @Component
  struct WebComponent {
Y
yamila 已提交
3730
    controller: WebController = new WebController()
L
laosan_ted 已提交
3731
  
L
update  
laosan_ted 已提交
3732 3733 3734
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
3735
          .onClick(() => {
Y
yamila 已提交
3736
            this.controller.forward()
L
laosan_ted 已提交
3737
          })
Z
zhou-liting125 已提交
3738
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3739
      }
L
update  
laosan_ted 已提交
3740 3741 3742 3743
    }
  }
  ```

3744 3745 3746 3747 3748 3749
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

Z
zhou-liting125 已提交
3750
**参数:**
L
laosan_ted 已提交
3751

3752 3753 3754
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| step | number | 是    | -    | 需要前进或后退的步长。 |
3755

Z
zhou-liting125 已提交
3756
**示例:**
L
laosan_ted 已提交
3757

Z
zhou-liting125 已提交
3758 3759
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3760
  @Entry
L
update  
laosan_ted 已提交
3761 3762
  @Component
  struct WebComponent {
Y
yamila 已提交
3763 3764
    controller: WebController = new WebController()
    @State step: number = -2
L
laosan_ted 已提交
3765
  
L
update  
laosan_ted 已提交
3766 3767 3768
    build() {
      Column() {
        Button('backOrForward')
L
laosan_ted 已提交
3769
          .onClick(() => {
Y
yamila 已提交
3770
            this.controller.backOrForward(this.step)
L
laosan_ted 已提交
3771
          })
3772
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3773
      }
L
update  
laosan_ted 已提交
3774 3775 3776 3777 3778 3779 3780 3781
    }
  }
  ```

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

Z
zhou-liting125 已提交
3784
**参数:**
L
laosan_ted 已提交
3785

3786 3787 3788
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---- | ------ | ---- | ---- | ---------------------------------------- |
| name | string | 是    | -    | 注册对象的名称,可在网页侧JavaScript中通过此名称调用应用侧JavaScript对象。 |
L
update  
laosan_ted 已提交
3789

Z
zhou-liting125 已提交
3790
**示例:**
L
laosan_ted 已提交
3791

Z
zhou-liting125 已提交
3792 3793
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3794
  @Entry
L
update  
laosan_ted 已提交
3795 3796
  @Component
  struct WebComponent {
Y
yamila 已提交
3797 3798
    controller: WebController = new WebController()
    @State name: string = 'Object'
L
laosan_ted 已提交
3799
  
L
update  
laosan_ted 已提交
3800 3801 3802
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
3803
          .onClick(() => {
Y
yamila 已提交
3804
            this.controller.deleteJavaScriptRegister(this.name)
L
laosan_ted 已提交
3805
          })
Z
zhou-liting125 已提交
3806
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3807
      }
L
update  
laosan_ted 已提交
3808 3809 3810 3811
    }
  }
  ```

L
lixingchi1 已提交
3812 3813 3814 3815
### getHitTest

getHitTest(): HitTestType

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

Z
zhou-liting125 已提交
3818
**返回值:**
L
laosan_ted 已提交
3819

3820 3821 3822
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
3823

Z
zhou-liting125 已提交
3824
**示例:**
L
laosan_ted 已提交
3825

Z
zhou-liting125 已提交
3826 3827
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3828
  @Entry
L
update  
laosan_ted 已提交
3829 3830
  @Component
  struct WebComponent {
Y
yamila 已提交
3831
    controller: WebController = new WebController()
L
laosan_ted 已提交
3832
  
L
update  
laosan_ted 已提交
3833 3834 3835
    build() {
      Column() {
        Button('getHitTest')
L
laosan_ted 已提交
3836
          .onClick(() => {
Y
yamila 已提交
3837 3838
            let hitType = this.controller.getHitTest()
            console.log("hitType: " + hitType)
L
laosan_ted 已提交
3839
          })
Z
zhou-liting125 已提交
3840
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3841
      }
L
update  
laosan_ted 已提交
3842 3843 3844 3845
    }
  }
  ```

3846 3847 3848 3849 3850
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

Z
zhou-liting125 已提交
3851
**返回值:**
L
laosan_ted 已提交
3852

3853 3854 3855
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
3856

Z
zhou-liting125 已提交
3857
**示例:**
L
laosan_ted 已提交
3858

Z
zhou-liting125 已提交
3859 3860
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3861
  @Entry
L
update  
laosan_ted 已提交
3862 3863
  @Component
  struct WebComponent {
Y
yamila 已提交
3864
    controller: WebController = new WebController()
L
laosan_ted 已提交
3865
  
L
update  
laosan_ted 已提交
3866 3867 3868
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
3869
          .onClick(() => {
Y
yamila 已提交
3870 3871 3872
            let hitValue = this.controller.getHitTestValue()
            console.log("hitType: " + hitValue.getType())
            console.log("extra: " + hitValue.getExtra())
L
laosan_ted 已提交
3873
          })
Z
zhou-liting125 已提交
3874
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3875
      }
L
update  
laosan_ted 已提交
3876 3877 3878 3879
    }
  }
  ```

3880 3881 3882 3883 3884
### getWebId<sup>9+</sup>
getWebId(): number

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

Z
zhou-liting125 已提交
3885
**返回值:**
L
laosan_ted 已提交
3886

3887 3888 3889
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
3890

Z
zhou-liting125 已提交
3891
**示例:**
L
laosan_ted 已提交
3892

Z
zhou-liting125 已提交
3893 3894
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3895
  @Entry
L
update  
laosan_ted 已提交
3896 3897
  @Component
  struct WebComponent {
Y
yamila 已提交
3898
    controller: WebController = new WebController()
L
laosan_ted 已提交
3899
  
L
update  
laosan_ted 已提交
3900 3901 3902
    build() {
      Column() {
        Button('getWebId')
L
laosan_ted 已提交
3903
          .onClick(() => {
Y
yamila 已提交
3904 3905
            let id = this.controller.getWebId()
            console.log("id: " + id)
L
laosan_ted 已提交
3906
          })
Z
zhou-liting125 已提交
3907
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3908
      }
L
update  
laosan_ted 已提交
3909 3910 3911 3912
    }
  }
  ```

3913 3914 3915 3916
### getTitle<sup>9+</sup>
getTitle(): string

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

**返回值:**
L
laosan_ted 已提交
3919

3920 3921 3922
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
3923

Z
zhou-liting125 已提交
3924
**示例:**
L
laosan_ted 已提交
3925

Z
zhou-liting125 已提交
3926 3927
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3928
  @Entry
L
update  
laosan_ted 已提交
3929 3930
  @Component
  struct WebComponent {
Y
yamila 已提交
3931
    controller: WebController = new WebController()
L
laosan_ted 已提交
3932
  
L
update  
laosan_ted 已提交
3933 3934 3935
    build() {
      Column() {
        Button('getTitle')
L
laosan_ted 已提交
3936
          .onClick(() => {
Y
yamila 已提交
3937 3938
            let title = this.controller.getTitle()
            console.log("title: " + title)
L
laosan_ted 已提交
3939
          })
Z
zhou-liting125 已提交
3940
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3941
      }
L
update  
laosan_ted 已提交
3942 3943 3944 3945
    }
  }
  ```

3946 3947 3948 3949
### getPageHeight<sup>9+</sup>
getPageHeight(): number

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

**返回值:**
L
laosan_ted 已提交
3952

3953 3954 3955
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
3956

Z
zhou-liting125 已提交
3957
**示例:**
L
laosan_ted 已提交
3958

Z
zhou-liting125 已提交
3959 3960
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3961
  @Entry
L
update  
laosan_ted 已提交
3962 3963
  @Component
  struct WebComponent {
Y
yamila 已提交
3964
    controller: WebController = new WebController()
L
laosan_ted 已提交
3965
  
L
update  
laosan_ted 已提交
3966 3967 3968
    build() {
      Column() {
        Button('getPageHeight')
L
laosan_ted 已提交
3969
          .onClick(() => {
Y
yamila 已提交
3970 3971
            let pageHeight = this.controller.getPageHeight()
            console.log("pageHeight: " + pageHeight)
L
laosan_ted 已提交
3972
          })
Z
zhou-liting125 已提交
3973
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3974
      }
L
update  
laosan_ted 已提交
3975 3976 3977
    }
  }
  ```
3978 3979 3980 3981 3982

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

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

Z
zhou-liting125 已提交
3984
**返回值:**
L
laosan_ted 已提交
3985

3986 3987 3988
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
3989

Z
zhou-liting125 已提交
3990
**示例:**
L
laosan_ted 已提交
3991

Z
zhou-liting125 已提交
3992 3993
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3994
  @Entry
L
update  
laosan_ted 已提交
3995 3996
  @Component
  struct WebComponent {
Y
yamila 已提交
3997
    controller: WebController = new WebController()
L
laosan_ted 已提交
3998
  
L
update  
laosan_ted 已提交
3999 4000 4001
    build() {
      Column() {
        Button('getDefaultUserAgent')
L
laosan_ted 已提交
4002
          .onClick(() => {
Y
yamila 已提交
4003 4004
            let userAgent = this.controller.getDefaultUserAgent()
            console.log("userAgent: " + userAgent)
L
laosan_ted 已提交
4005
          })
Z
zhou-liting125 已提交
4006
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4007
      }
L
update  
laosan_ted 已提交
4008 4009 4010 4011
    }
  }
  ```

L
lixingchi1 已提交
4012 4013
### loadData

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

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

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

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

Z
zhou-liting125 已提交
4022
**参数:**
L
laosan_ted 已提交
4023

4024 4025 4026 4027 4028 4029 4030
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
4031

Z
zhou-liting125 已提交
4032
**示例:**
L
laosan_ted 已提交
4033

Z
zhou-liting125 已提交
4034 4035
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4036
  @Entry
L
update  
laosan_ted 已提交
4037 4038
  @Component
  struct WebComponent {
Y
yamila 已提交
4039
    controller: WebController = new WebController()
L
laosan_ted 已提交
4040
  
L
update  
laosan_ted 已提交
4041 4042 4043
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
4044 4045 4046 4047 4048
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
Y
yamila 已提交
4049
            })
L
laosan_ted 已提交
4050
          })
Z
zhou-liting125 已提交
4051
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4052
      }
L
update  
laosan_ted 已提交
4053 4054 4055 4056
    }
  }
  ```

Z
zengyawen 已提交
4057 4058
### loadUrl

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

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

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

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

Z
zhou-liting125 已提交
4067
**参数:**
L
laosan_ted 已提交
4068

4069 4070 4071 4072
| 参数名     | 参数类型                       | 必填   | 默认值  | 参数描述           |
| ------- | -------------------------- | ---- | ---- | -------------- |
| url     | string                     | 是    | -    | 需要加载的 URL。     |
| headers | Array\<[Header](#header)\> | 否    | []   | URL的附加HTTP请求头。 |
L
lixingchi1 已提交
4073

Z
zhou-liting125 已提交
4074
**示例:**
L
laosan_ted 已提交
4075

Z
zhou-liting125 已提交
4076 4077
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4078
  @Entry
L
update  
laosan_ted 已提交
4079 4080
  @Component
  struct WebComponent {
Y
yamila 已提交
4081
    controller: WebController = new WebController()
L
laosan_ted 已提交
4082
  
L
update  
laosan_ted 已提交
4083 4084 4085
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
4086
          .onClick(() => {
Y
yamila 已提交
4087
            this.controller.loadUrl({ url: 'www.example.com' })
L
laosan_ted 已提交
4088
          })
Z
zhou-liting125 已提交
4089
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4090
      }
L
update  
laosan_ted 已提交
4091 4092 4093 4094
    }
  }
  ```

L
lixingchi1 已提交
4095 4096 4097 4098
### onActive

onActive(): void

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

Z
zhou-liting125 已提交
4101
**示例:**
L
laosan_ted 已提交
4102

Z
zhou-liting125 已提交
4103 4104
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4105
  @Entry
L
update  
laosan_ted 已提交
4106 4107
  @Component
  struct WebComponent {
Y
yamila 已提交
4108
    controller: WebController = new WebController()
L
laosan_ted 已提交
4109
  
L
update  
laosan_ted 已提交
4110 4111 4112
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
4113
          .onClick(() => {
Y
yamila 已提交
4114
            this.controller.onActive()
L
laosan_ted 已提交
4115
          })
Z
zhou-liting125 已提交
4116
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4117
      }
L
update  
laosan_ted 已提交
4118 4119 4120 4121
    }
  }
  ```

L
lixingchi1 已提交
4122 4123 4124 4125
### onInactive

onInactive(): void

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

Z
zhou-liting125 已提交
4128
**示例:**
L
laosan_ted 已提交
4129

Z
zhou-liting125 已提交
4130 4131
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4132
  @Entry
L
update  
laosan_ted 已提交
4133 4134
  @Component
  struct WebComponent {
Y
yamila 已提交
4135
    controller: WebController = new WebController()
L
laosan_ted 已提交
4136
  
L
update  
laosan_ted 已提交
4137 4138 4139
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
4140
          .onClick(() => {
Y
yamila 已提交
4141
            this.controller.onInactive()
L
laosan_ted 已提交
4142
          })
Z
zhou-liting125 已提交
4143
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4144
      }
L
update  
laosan_ted 已提交
4145 4146 4147 4148
    }
  }
  ```

4149 4150 4151 4152
### zoom
zoom(factor: number): void

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

Z
zhou-liting125 已提交
4154
**参数:**
L
laosan_ted 已提交
4155

4156 4157 4158
| 参数名    | 参数类型   | 必填   | 参数描述                           |
| ------ | ------ | ---- | ------------------------------ |
| factor | number | 是    | 基于当前网页所需调整的相对缩放比例,正值为放大,负值为缩小。 |
4159

Z
zhou-liting125 已提交
4160
**示例:**
L
laosan_ted 已提交
4161

Z
zhou-liting125 已提交
4162 4163
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4164
  @Entry
L
update  
laosan_ted 已提交
4165 4166
  @Component
  struct WebComponent {
Y
yamila 已提交
4167 4168
    controller: WebController = new WebController()
    @State factor: number = 1
L
laosan_ted 已提交
4169
  
L
update  
laosan_ted 已提交
4170 4171 4172
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
4173
          .onClick(() => {
Y
yamila 已提交
4174
            this.controller.zoom(this.factor)
L
laosan_ted 已提交
4175
          })
Z
zhou-liting125 已提交
4176
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4177
      }
L
update  
laosan_ted 已提交
4178 4179 4180 4181
    }
  }
  ```

4182 4183 4184 4185
### zoomIn<sup>9+</sup>
zoomIn(): boolean

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

**返回值:**
L
laosan_ted 已提交
4188

4189 4190 4191
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
4192

Z
zhou-liting125 已提交
4193
**示例:**
L
laosan_ted 已提交
4194

Z
zhou-liting125 已提交
4195 4196
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4197
  @Entry
L
update  
laosan_ted 已提交
4198 4199
  @Component
  struct WebComponent {
Y
yamila 已提交
4200
    controller: WebController = new WebController()
L
laosan_ted 已提交
4201
  
L
update  
laosan_ted 已提交
4202 4203 4204
    build() {
      Column() {
        Button('zoomIn')
L
laosan_ted 已提交
4205
          .onClick(() => {
Y
yamila 已提交
4206 4207
            let result = this.controller.zoomIn()
            console.log("result: " + result)
L
laosan_ted 已提交
4208
          })
Z
zhou-liting125 已提交
4209
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4210
      }
L
update  
laosan_ted 已提交
4211 4212 4213 4214
    }
  }
  ```

4215 4216 4217 4218
### zoomOut<sup>9+</sup>
zoomOut(): boolean

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

**返回值:**
L
laosan_ted 已提交
4221

4222 4223 4224
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
4225

Z
zhou-liting125 已提交
4226
**示例:**
L
laosan_ted 已提交
4227

Z
zhou-liting125 已提交
4228 4229
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4230
  @Entry
L
update  
laosan_ted 已提交
4231 4232
  @Component
  struct WebComponent {
Y
yamila 已提交
4233
    controller: WebController = new WebController()
L
laosan_ted 已提交
4234
  
L
update  
laosan_ted 已提交
4235 4236 4237
    build() {
      Column() {
        Button('zoomOut')
L
laosan_ted 已提交
4238
          .onClick(() => {
Y
yamila 已提交
4239 4240
            let result = this.controller.zoomOut()
            console.log("result: " + result)
L
laosan_ted 已提交
4241
          })
Z
zhou-liting125 已提交
4242
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4243
      }
L
update  
laosan_ted 已提交
4244 4245 4246 4247
    }
  }
  ```

L
lixingchi1 已提交
4248 4249
### refresh

Z
zhou-liting125 已提交
4250
refresh()
L
lixingchi1 已提交
4251

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

Z
zhou-liting125 已提交
4254
**示例:**
L
laosan_ted 已提交
4255

Z
zhou-liting125 已提交
4256 4257
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4258
  @Entry
L
update  
laosan_ted 已提交
4259 4260
  @Component
  struct WebComponent {
Y
yamila 已提交
4261
    controller: WebController = new WebController()
L
laosan_ted 已提交
4262
  
L
update  
laosan_ted 已提交
4263 4264 4265
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
4266
          .onClick(() => {
Y
yamila 已提交
4267
            this.controller.refresh()
L
laosan_ted 已提交
4268
          })
Z
zhou-liting125 已提交
4269
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4270
      }
L
update  
laosan_ted 已提交
4271 4272 4273 4274
    }
  }
  ```

L
lixingchi1 已提交
4275 4276
### registerJavaScriptProxy

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

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

Z
zhou-liting125 已提交
4281
**参数:**
L
laosan_ted 已提交
4282

4283 4284 4285 4286 4287
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                                     |
| ---------- | --------------- | ---- | ---- | ---------------------------------------- |
| object     | object          | 是    | -    | 参与注册的应用侧JavaScript对象。只能声明方法,不能声明属性 。其中方法的参数和返回类型只能为string,number,boolean |
| name       | string          | 是    | -    | 注册对象的名称,与window中调用的对象名一致。注册后window对象可以通过此名字访问应用侧JavaScript对象。 |
| methodList | Array\<string\> | 是    | -    | 参与注册的应用侧JavaScript对象的方法。                 |
L
lixingchi1 已提交
4288

Z
zhou-liting125 已提交
4289
**示例:**
L
laosan_ted 已提交
4290

Z
zhou-liting125 已提交
4291 4292
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4293
  @Entry
L
update  
laosan_ted 已提交
4294 4295 4296 4297 4298
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
Y
yamila 已提交
4299
        return "ArkUI Web Component"
L
update  
laosan_ted 已提交
4300 4301
      },
      toString: () => {
Y
yamila 已提交
4302
        console.log('Web Component toString')
L
update  
laosan_ted 已提交
4303 4304 4305 4306 4307 4308 4309 4310 4311 4312
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
Y
yamila 已提交
4313
            })
L
update  
laosan_ted 已提交
4314 4315 4316 4317 4318 4319 4320 4321
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
4322

L
update  
laosan_ted 已提交
4323
  ```html
L
laosan_ted 已提交
4324
  <!-- index.html -->
L
update  
laosan_ted 已提交
4325 4326 4327 4328 4329 4330 4331 4332
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
Y
yamila 已提交
4333 4334
          str = objName.test("test function")
          console.log('objName.test result:'+ str)
L
update  
laosan_ted 已提交
4335 4336 4337 4338 4339 4340
      }
  </script>
  </html>
  
  ```

L
lixingchi1 已提交
4341 4342
### runJavaScript

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

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

Z
zhou-liting125 已提交
4347
**参数:**
L
laosan_ted 已提交
4348

4349 4350 4351 4352
| 参数名      | 参数类型                     | 必填   | 默认值  | 参数描述                                     |
| -------- | ------------------------ | ---- | ---- | ---------------------------------------- |
| script   | string                   | 是    | -    | JavaScript脚本。                            |
| callback | (result: string) => void | 否    | -    | 回调执行JavaScript脚本结果。JavaScript脚本若执行失败或无返回值时,返回null。 |
L
lixingchi1 已提交
4353

Z
zhou-liting125 已提交
4354
**示例:**
L
laosan_ted 已提交
4355

Z
zhou-liting125 已提交
4356 4357
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4358
  @Entry
L
update  
laosan_ted 已提交
4359 4360
  @Component
  struct WebComponent {
Y
yamila 已提交
4361
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373
    @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}`)
Y
yamila 已提交
4374 4375
            }})
          console.info('url: ', e.url)
L
update  
laosan_ted 已提交
4376 4377 4378 4379 4380 4381 4382
        })
      }
    }
  }
  ```

  ```html
L
laosan_ted 已提交
4383
  <!-- index.html -->
L
update  
laosan_ted 已提交
4384 4385 4386 4387 4388 4389 4390 4391
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
Y
yamila 已提交
4392
        console.log('Ark WebComponent')
L
update  
laosan_ted 已提交
4393 4394 4395 4396 4397 4398 4399
        return "This value is from index.html"
    }
    </script>
  </html>

  ```

L
lixingchi1 已提交
4400 4401
### stop

Z
zhou-liting125 已提交
4402
stop()
Z
zengyawen 已提交
4403

L
lixingchi1 已提交
4404
停止页面加载。
Z
zengyawen 已提交
4405

Z
zhou-liting125 已提交
4406
**示例:**
L
laosan_ted 已提交
4407

Z
zhou-liting125 已提交
4408 4409
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4410
  @Entry
L
update  
laosan_ted 已提交
4411 4412
  @Component
  struct WebComponent {
Y
yamila 已提交
4413
    controller: WebController = new WebController()
L
laosan_ted 已提交
4414
  
L
update  
laosan_ted 已提交
4415 4416 4417
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
4418
          .onClick(() => {
Y
yamila 已提交
4419
            this.controller.stop()
L
laosan_ted 已提交
4420
          })
Z
zhou-liting125 已提交
4421
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4422
      }
L
update  
laosan_ted 已提交
4423 4424 4425 4426
    }
  }
  ```

T
Ted 已提交
4427 4428 4429 4430 4431 4432
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
4433
**示例:**
L
laosan_ted 已提交
4434

Z
zhou-liting125 已提交
4435 4436
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4437
  @Entry
L
update  
laosan_ted 已提交
4438 4439
  @Component
  struct WebComponent {
Y
yamila 已提交
4440
    controller: WebController = new WebController()
L
laosan_ted 已提交
4441
  
L
update  
laosan_ted 已提交
4442 4443 4444
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
4445
          .onClick(() => {
Y
yamila 已提交
4446
            this.controller.clearHistory()
L
laosan_ted 已提交
4447
          })
Z
zhou-liting125 已提交
4448
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4449
      }
L
update  
laosan_ted 已提交
4450 4451 4452 4453
    }
  }
  ```

I
i-am-a-little-bird 已提交
4454 4455 4456 4457
### clearSslCache

clearSslCache(): void

I
bugfix  
i-am-a-little-bird 已提交
4458
清除Web组件记录的SSL证书错误事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
4459 4460 4461 4462 4463 4464 4465 4466

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4467
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
4468 4469 4470 4471 4472

    build() {
      Column() {
        Button('clearSslCache')
          .onClick(() => {
Y
yamila 已提交
4473
            this.controller.clearSslCache()
I
i-am-a-little-bird 已提交
4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### clearClientAuthenticationCache

clearClientAuthenticationCache(): void

I
bugfix  
i-am-a-little-bird 已提交
4485
清除Web组件记录的客户端证书请求事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
4486 4487 4488 4489 4490 4491 4492 4493

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4494
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
4495 4496 4497 4498 4499

    build() {
      Column() {
        Button('clearClientAuthenticationCache')
          .onClick(() => {
Y
yamila 已提交
4500
            this.controller.clearClientAuthenticationCache()
I
i-am-a-little-bird 已提交
4501 4502 4503 4504 4505 4506 4507
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
4508
### getCookieManager<sup>9+</sup>
T
Ted 已提交
4509 4510 4511 4512

getCookieManager(): WebCookie

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

**返回值:**
L
laosan_ted 已提交
4515

4516 4517 4518
| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
4519

Z
zhou-liting125 已提交
4520
**示例:**
L
laosan_ted 已提交
4521

Z
zhou-liting125 已提交
4522 4523
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4524
  @Entry
L
update  
laosan_ted 已提交
4525 4526
  @Component
  struct WebComponent {
Y
yamila 已提交
4527
    controller: WebController = new WebController()
L
laosan_ted 已提交
4528
  
L
update  
laosan_ted 已提交
4529 4530 4531
    build() {
      Column() {
        Button('getCookieManager')
L
laosan_ted 已提交
4532
          .onClick(() => {
Y
yamila 已提交
4533
            let cookieManager = this.controller.getCookieManager()
L
laosan_ted 已提交
4534
          })
Z
zhou-liting125 已提交
4535
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4536
      }
L
update  
laosan_ted 已提交
4537 4538 4539 4540
    }
  }
  ```

4541 4542
### createWebMessagePorts<sup>9+</sup>

E
echoorchid 已提交
4543
createWebMessagePorts(): Array\<WebMessagePort\>
4544

E
echoorchid 已提交
4545
创建Web消息端口。
4546 4547

**返回值:**
4548

L
laosan_ted 已提交
4549

H
HelloCrease 已提交
4550 4551
| 类型                                       | 说明         |
| ---------------------------------------- | ---------- |
E
echoorchid 已提交
4552
| Array\<[WebMessagePort](#webmessageport9)\> | web消息端口列表。 |
4553 4554

**示例:**
L
laosan_ted 已提交
4555

4556 4557 4558 4559 4560
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4561 4562
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
4563 4564 4565 4566
    build() {
      Column() {
        Button('createWebMessagePorts')
          .onClick(() => {
Y
yamila 已提交
4567
            this.ports = this.controller.createWebMessagePorts()
4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579
            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 已提交
4580
发送Web消息端口到HTML5。
4581 4582

**参数:**
4583

H
HelloCrease 已提交
4584 4585 4586 4587
| 参数名     | 参数类型                                 | 必填   | 默认值  | 参数描述              |
| ------- | ------------------------------------ | ---- | ---- | ----------------- |
| message | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息,包含数据和消息端口。 |
| uri     | string                               | 是    | -    | 接收该消息的URI。        |
4588 4589

**示例:**
L
laosan_ted 已提交
4590

4591
  ```ts
E
echoorchid 已提交
4592
  // index.ets
4593 4594 4595
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4596 4597 4598 4599
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
    @State sendFromEts: string = 'Send this message from ets to HTML'
    @State receivedFromHtml: string = 'Display received message send from HTML'
E
echoorchid 已提交
4600

4601 4602
    build() {
      Column() {
E
echoorchid 已提交
4603 4604 4605 4606 4607
        // 展示接收到的来自HTML的内容
        Text(this.receivedFromHtml)
        // 输入框的内容发送到HTML
        TextInput({placeholder: 'Send this message from ets to HTML'})
        .onChange((value: string) => {
Y
yamila 已提交
4608
          this.sendFromEts = value
E
echoorchid 已提交
4609 4610 4611 4612 4613
        })

        // 1、创建两个消息端口
        Button('1.CreateWebMessagePorts')
          .onClick(() => {
Y
yamila 已提交
4614
            this.ports = this.controller.createWebMessagePorts()
E
echoorchid 已提交
4615 4616 4617 4618 4619
            console.log("createWebMessagePorts size:" + this.ports.length)
          })

        // 2、将其中一个消息端口发送到HTML侧,由HTML侧保存并使用。
        Button('2.PostMessagePort')
4620
          .onClick(() => {
Y
yamila 已提交
4621 4622 4623 4624 4625
            var sendPortArray = new Array(this.ports[1])
            var msgEvent = new WebMessageEvent()
            msgEvent.setData("__init_port__")
            msgEvent.setPorts(sendPortArray)
            this.controller.postMessage({message: msgEvent, uri: "*"})
4626
          })
E
echoorchid 已提交
4627 4628 4629 4630 4631

        // 3、另一个消息端口在应用侧注册回调事件。
        Button('3.RegisterCallback')
          .onClick(() => {
              this.ports[0].onMessageEvent((result: string) => {
Y
yamila 已提交
4632 4633
                var msg = 'Got msg from HTML: ' + result
                this.receivedFromHtml = msg
E
echoorchid 已提交
4634 4635 4636 4637 4638 4639
              })
          })

        // 4、使用应用侧的端口给另一个已经发送到HTML的消息端口发送消息。
        Button('4.SendDataToHtml5')
          .onClick(() => {
Y
yamila 已提交
4640 4641 4642
            var msg = new WebMessageEvent()
            msg.setData(this.sendFromEts)
            this.ports[0].postMessageEvent(msg)
E
echoorchid 已提交
4643 4644 4645 4646
          })
        Web({ src: $rawfile("index.html"), controller: this.controller })
          .javaScriptAccess(true)
          .fileAccess(true)
4647 4648 4649
      }
    }
  }
E
echoorchid 已提交
4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665

  // index.html
  <!DOCTYPE html>
  <html>
      <body>
          <h1>Web Message Port Demo</h1>
          <div style="font-size: 24pt;">
            <input type="button" value="5.SendToEts" onclick="PostMsgToEts(msgFromJS.value);" /><br/>
            <input id="msgFromJS" type="text" value="send this message from HTML to ets" style="font-size: 16pt;" /><br/>
          </div>
          <p class="output">display received message send from ets</p>
      </body>
      <script src="index.js"></script>
  </html>

  // index.js
4666
  var h5Port;
E
echoorchid 已提交
4667 4668 4669
  var output = document.querySelector('.output');
  window.addEventListener('message', function(event) {
    if (event.data == '__init_port__') {
4670
      if(event.ports[0] != null) {
E
echoorchid 已提交
4671
        h5Port = event.ports[0]; // 1. 保存从ets侧发送过来的端口
4672
        h5Port.onmessage = function(event) {
E
echoorchid 已提交
4673 4674 4675
          // 2. 接收ets侧发送过来的消息.
          var msg = 'Got message from ets:' + event.data;
          output.innerHTML = msg;
4676 4677 4678 4679
        }
      }
    }
  })
E
echoorchid 已提交
4680 4681 4682 4683 4684

  // 3. 使用h5Port往ets侧发送消息.
  function PostMsgToEts(data) {
    h5Port.postMessage(data)
  }
4685 4686
  ```

Y
yu-shihao4 已提交
4687 4688 4689 4690 4691 4692 4693 4694
### getUrl<sup>9+</sup>

getUrl(): string

获取当前页面的url地址。

**返回值:**

H
HelloCrease 已提交
4695 4696
| 类型     | 说明          |
| ------ | ----------- |
Y
yu-shihao4 已提交
4697 4698 4699 4700 4701 4702 4703 4704 4705
| string | 当前页面的url地址。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4706
    controller: WebController = new WebController()
Y
yu-shihao4 已提交
4707 4708 4709 4710
    build() {
      Column() {
        Button('getUrl')
          .onClick(() => {
Y
yamila 已提交
4711
            console.log("url: " + this.controller.getUrl())
Y
yu-shihao4 已提交
4712 4713 4714 4715 4716 4717 4718
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
laosan_ted 已提交
4719 4720 4721 4722 4723 4724 4725 4726
### searchAllAsync<sup>9+</sup>

searchAllAsync(searchString: string): void

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

**参数:**

H
HelloCrease 已提交
4727 4728
| 参数名          | 参数类型   | 必填   | 默认值  | 参数描述    |
| ------------ | ------ | ---- | ---- | ------- |
L
laosan_ted 已提交
4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799
| 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

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

**参数:**

H
HelloCrease 已提交
4800 4801
| 参数名     | 参数类型    | 必填   | 默认值  | 参数描述        |
| ------- | ------- | ---- | ---- | ----------- |
L
laosan_ted 已提交
4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825
| 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 })
      }
    }
  }
  ```

4826
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
4827
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
4828 4829 4830 4831 4832

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

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

**返回值:**
L
laosan_ted 已提交
4835

4836 4837 4838
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
4839 4840 4841 4842 4843

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

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

**返回值:**
L
laosan_ted 已提交
4846

4847 4848 4849
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
4850

L
laosan_ted 已提交
4851

T
Ted 已提交
4852
## WebCookie
Z
zhou-liting125 已提交
4853

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

### setCookie<sup>9+</sup>
T
Ted 已提交
4857 4858 4859 4860
setCookie(url: string, value: string): boolean

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

Z
zhou-liting125 已提交
4861
**参数:**
L
laosan_ted 已提交
4862

4863 4864 4865 4866
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
4867

Z
zhou-liting125 已提交
4868
**返回值:** 
L
laosan_ted 已提交
4869

4870 4871 4872
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
4873

Z
zhou-liting125 已提交
4874
**示例:**
L
laosan_ted 已提交
4875

Z
zhou-liting125 已提交
4876 4877
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4878
  @Entry
L
update  
laosan_ted 已提交
4879 4880
  @Component
  struct WebComponent {
Y
yamila 已提交
4881
    controller: WebController = new WebController()
L
laosan_ted 已提交
4882
  
L
update  
laosan_ted 已提交
4883 4884 4885
    build() {
      Column() {
        Button('setCookie')
L
laosan_ted 已提交
4886
          .onClick(() => {
Y
yamila 已提交
4887 4888
            let result = this.controller.getCookieManager().setCookie("www.example.com", "a=b")
            console.log("result: " + result)
L
laosan_ted 已提交
4889
          })
Z
zhou-liting125 已提交
4890
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4891
      }
L
update  
laosan_ted 已提交
4892 4893 4894 4895
    }
  }
  ```

Z
zhou-liting125 已提交
4896
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
4897 4898 4899
saveCookieSync(): boolean

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

**返回值:**
L
laosan_ted 已提交
4902

4903 4904 4905
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |
4906

Z
zhou-liting125 已提交
4907
**示例:**
L
laosan_ted 已提交
4908

Z
zhou-liting125 已提交
4909 4910
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4911
  @Entry
L
update  
laosan_ted 已提交
4912 4913
  @Component
  struct WebComponent {
Y
yamila 已提交
4914
    controller: WebController = new WebController()
L
laosan_ted 已提交
4915
  
L
update  
laosan_ted 已提交
4916 4917 4918
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
4919
          .onClick(() => {
Y
yamila 已提交
4920 4921
            let result = this.controller.getCookieManager().saveCookieSync()
            console.log("result: " + result)
L
laosan_ted 已提交
4922
          })
Z
zhou-liting125 已提交
4923
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4924
      }
L
update  
laosan_ted 已提交
4925 4926 4927 4928
    }
  }
  ```

L
laosan_ted 已提交
4929 4930
### getCookie<sup>9+</sup>
getCookie(url: string): string
4931

L
laosan_ted 已提交
4932
获取指定url对应cookie的值。
4933

L
laosan_ted 已提交
4934
**参数:**
4935

H
HelloCrease 已提交
4936 4937 4938
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述              |
| ---- | ------ | ---- | ---- | ----------------- |
| url  | string | 是    | -    | 要获取的cookie所属的url。 |
4939

L
laosan_ted 已提交
4940 4941
**返回值:**

H
HelloCrease 已提交
4942 4943
| 类型     | 说明                |
| ------ | ----------------- |
L
laosan_ted 已提交
4944
| string | 指定url对应的cookie的值。 |
4945

Z
zhou-liting125 已提交
4946
**示例:**
L
laosan_ted 已提交
4947

Z
zhou-liting125 已提交
4948 4949
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4950
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4951 4952 4953
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4954
    controller: WebController = new WebController()
L
laosan_ted 已提交
4955 4956 4957
  
    build() {
      Column() {
L
laosan_ted 已提交
4958
        Button('getCookie')
L
laosan_ted 已提交
4959
          .onClick(() => {
L
laosan_ted 已提交
4960
            let value = web_webview.WebCookieManager.getCookie('www.example.com')
Y
yamila 已提交
4961
            console.log("value: " + value)
L
laosan_ted 已提交
4962
          })
Z
zhou-liting125 已提交
4963
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4964 4965 4966
      }
    }
  }
L
update  
laosan_ted 已提交
4967 4968
  ```

L
laosan_ted 已提交
4969 4970
### setCookie<sup>9+</sup>
setCookie(url: string, value: string): boolean
4971

L
laosan_ted 已提交
4972
为指定url设置单个cookie的值。
4973

L
laosan_ted 已提交
4974
**参数:**
4975

L
laosan_ted 已提交
4976 4977 4978
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
H
HelloCrease 已提交
4979
| value | string | 是    | -    | 要设置的cookie的值。     |
L
laosan_ted 已提交
4980 4981 4982

**返回值:**

H
HelloCrease 已提交
4983 4984
| 类型      | 说明            |
| ------- | ------------- |
L
laosan_ted 已提交
4985 4986 4987 4988 4989 4990
| boolean | 设置cookie是否成功。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4991
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4992 4993 4994
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4995
    controller: WebController = new WebController()
L
laosan_ted 已提交
4996 4997 4998 4999 5000
  
    build() {
      Column() {
        Button('setCookie')
          .onClick(() => {
Y
yamila 已提交
5001 5002
            let result = web_webview.WebCookieManager.setCookie('www.example.com', 'a=b')
            console.log("result: " + result)
L
laosan_ted 已提交
5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieSync<sup>9+</sup>
saveCookieSync(): boolean

将当前存在内存中的cookie保存到磁盘中,该方法为同步方法。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5025
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5026 5027 5028
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5029
    controller: WebController = new WebController()
L
laosan_ted 已提交
5030 5031 5032 5033 5034
  
    build() {
      Column() {
        Button('saveCookieSync')
          .onClick(() => {
Y
yamila 已提交
5035 5036
            let result = web_webview.WebCookieManager.saveCookieSync()
            console.log("result: " + result)
L
laosan_ted 已提交
5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieAsync<sup>9+</sup>
saveCookieAsync(): Promise\<boolean>

将当前存在内存中的cookie以Promise方法异步保存到磁盘中。

**返回值:**

H
HelloCrease 已提交
5051 5052
| 类型                | 说明                          |
| ----------------- | --------------------------- |
L
laosan_ted 已提交
5053 5054 5055 5056 5057 5058
| Promise\<boolean> | Promise实例,用于获取cookie是否成功保存。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5059
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5060 5061 5062
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5063
    controller: WebController = new WebController()
L
laosan_ted 已提交
5064 5065 5066 5067 5068
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
5069
            web_webview.WebCookieManager.saveCookieAsync()
L
laosan_ted 已提交
5070
              .then (function(result) {
Y
yamila 已提交
5071
                console.log("result: " + result)
L
laosan_ted 已提交
5072 5073
              })
              .catch(function(error) {
Y
yamila 已提交
5074 5075
                console.error("error: " + error)
              })
L
laosan_ted 已提交
5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieAsync<sup>9+</sup>
saveCookieAsync(callback: AsyncCallback\<boolean>): void

将当前存在内存中的cookie异步保存到磁盘中。

**参数:**

H
HelloCrease 已提交
5090 5091 5092
| 参数名      | 参数类型                    | 必填   | 默认值  | 参数描述                         |
| -------- | ----------------------- | ---- | ---- | ---------------------------- |
| callback | AsyncCallback\<boolean> | 是    | -    | 返回cookie是否成功保存的布尔值作为回调函数的入参。 |
L
laosan_ted 已提交
5093 5094 5095 5096 5097

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5098
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5099 5100 5101
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5102
    controller: WebController = new WebController()
L
laosan_ted 已提交
5103 5104 5105 5106 5107
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
5108
            web_webview.WebCookieManager.saveCookieAsync(function(result) {
Y
yamila 已提交
5109 5110
              console.log("result: " + result)
            })
L
laosan_ted 已提交
5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### isCookieAllowed<sup>9+</sup>
isCookieAllowed(): boolean

获取WebCookieManager实例是否拥有发送和接收cookie的权限。

**返回值:**

H
HelloCrease 已提交
5125 5126
| 类型      | 说明                  |
| ------- | ------------------- |
L
laosan_ted 已提交
5127 5128 5129 5130 5131 5132
| boolean | 是否拥有发送和接收cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5133
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5134 5135 5136
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5137
    controller: WebController = new WebController()
L
laosan_ted 已提交
5138 5139 5140 5141 5142
  
    build() {
      Column() {
        Button('isCookieAllowed')
          .onClick(() => {
Y
yamila 已提交
5143 5144
            let result = web_webview.WebCookieManager.isCookieAllowed()
            console.log("result: " + result)
L
laosan_ted 已提交
5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### putAcceptCookieEnabled<sup>9+</sup>
putAcceptCookieEnabled(accept: boolean): void

设置WebCookieManager实例是否拥有发送和接收cookie的权限。

**参数:**

H
HelloCrease 已提交
5159 5160 5161
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述                  |
| ------ | ------- | ---- | ---- | --------------------- |
| accept | boolean | 是    | -    | 设置是否拥有发送和接收cookie的权限。 |
L
laosan_ted 已提交
5162 5163 5164 5165 5166

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5167
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5168 5169 5170
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5171
    controller: WebController = new WebController()
L
laosan_ted 已提交
5172 5173 5174 5175 5176
  
    build() {
      Column() {
        Button('putAcceptCookieEnabled')
          .onClick(() => {
Y
yamila 已提交
5177
            web_webview.WebCookieManager.putAcceptCookieEnabled(false)
L
laosan_ted 已提交
5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### isThirdPartyCookieAllowed<sup>9+</sup>
isThirdCookieAllowed(): boolean

获取WebCookieManager实例是否拥有发送和接收第三方cookie的权限。

**返回值:**

H
HelloCrease 已提交
5192 5193
| 类型      | 说明                     |
| ------- | ---------------------- |
L
laosan_ted 已提交
5194 5195 5196 5197 5198 5199
| boolean | 是否拥有发送和接收第三方cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5200
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5201 5202 5203
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5204
    controller: WebController = new WebController()
L
laosan_ted 已提交
5205 5206 5207 5208 5209
  
    build() {
      Column() {
        Button('isThirdPartyCookieAllowed')
          .onClick(() => {
Y
yamila 已提交
5210 5211
            let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed()
            console.log("result: " + result)
L
laosan_ted 已提交
5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### putAcceptThirdPartyCookieEnabled<sup>9+</sup>
putAcceptThirdPartyCookieEnabled(accept: boolean): void

设置WebCookieManager实例是否拥有发送和接收第三方cookie的权限。

**参数:**

H
HelloCrease 已提交
5226 5227 5228
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述                     |
| ------ | ------- | ---- | ---- | ------------------------ |
| accept | boolean | 是    | -    | 设置是否拥有发送和接收第三方cookie的权限。 |
L
laosan_ted 已提交
5229 5230 5231 5232 5233

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5234
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5235 5236 5237
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5238
    controller: WebController = new WebController()
L
laosan_ted 已提交
5239 5240 5241 5242 5243
  
    build() {
      Column() {
        Button('putAcceptThirdPartyCookieEnabled')
          .onClick(() => {
Y
yamila 已提交
5244
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false)
L
laosan_ted 已提交
5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### existCookie<sup>9+</sup>
existCookie(): boolean

获取是否存在cookie。

**返回值:**

H
HelloCrease 已提交
5259 5260
| 类型      | 说明          |
| ------- | ----------- |
L
laosan_ted 已提交
5261 5262 5263 5264 5265 5266
| boolean | 是否存在cookie。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5267
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5268 5269 5270
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5271
    controller: WebController = new WebController()
L
laosan_ted 已提交
5272 5273 5274 5275 5276
  
    build() {
      Column() {
        Button('existCookie')
          .onClick(() => {
Y
yamila 已提交
5277 5278
            let result = web_webview.WebCookieManager.existCookie()
            console.log("result: " + result)
L
laosan_ted 已提交
5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteEntireCookie<sup>9+</sup>
deleteEntireCookie(): void

清除所有cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5295
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5296 5297 5298
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5299
    controller: WebController = new WebController()
L
laosan_ted 已提交
5300 5301 5302 5303 5304
  
    build() {
      Column() {
        Button('deleteEntireCookie')
          .onClick(() => {
Y
yamila 已提交
5305
            web_webview.WebCookieManager.deleteEntireCookie()
L
laosan_ted 已提交
5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteSessionCookie<sup>9+</sup>
deleteSessionCookie(): void

清除所有会话cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5322
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5323 5324 5325
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5326
    controller: WebController = new WebController()
L
laosan_ted 已提交
5327 5328 5329 5330 5331
  
    build() {
      Column() {
        Button('deleteSessionCookie')
          .onClick(() => {
L
laosan_ted 已提交
5332
            web_webview.WebCookieManager.deleteSessionCookie()
L
laosan_ted 已提交
5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

## WebDataBase<sup>9+</sup>
web组件数据库管理对象。

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

static existHttpAuthCredentials(): boolean

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

**返回值:** 

| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 是否存在任何已保存的HTTP身份验证凭据。存在返回true,不存在返回false |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5359
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5360 5361 5362
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5363
    controller: WebController = new WebController()
L
laosan_ted 已提交
5364 5365 5366 5367 5368
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5369 5370
            let result = web_webview.WebDataBase.existHttpAuthCredentials()
            console.log('result: ' + result)
L
laosan_ted 已提交
5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteHttpAuthCredentials<sup>9+</sup>

static deleteHttpAuthCredentials(): void

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5388
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5389
  @Entry
L
laosan_ted 已提交
5390 5391
  @Component
  struct WebComponent {
Y
yamila 已提交
5392
    controller: WebController = new WebController()
L
laosan_ted 已提交
5393 5394 5395 5396 5397
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5398
            web_webview.WebDataBase.deleteHttpAuthCredentials()
L
laosan_ted 已提交
5399
          })
Z
zhou-liting125 已提交
5400
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5401 5402 5403
      }
    }
  }
L
update  
laosan_ted 已提交
5404 5405
  ```

5406 5407 5408 5409
### getHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
5412
**参数:**
L
laosan_ted 已提交
5413

5414 5415 5416 5417
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
5418

Z
zhou-liting125 已提交
5419
**返回值:** 
L
laosan_ted 已提交
5420

5421 5422 5423
| 类型              | 说明                     |
| --------------- | ---------------------- |
| Array\<string\> | 包含用户名和密码的组数,检索失败返回空数组。 |
5424

Z
zhou-liting125 已提交
5425
**示例:**
L
laosan_ted 已提交
5426

Z
zhou-liting125 已提交
5427 5428
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5429
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5430 5431 5432
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5433 5434 5435 5436
    controller: WebController = new WebController()
    host: string = "www.spincast.org"
    realm: string = "protected example"
    username_password: string[]
L
laosan_ted 已提交
5437 5438 5439 5440
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5441 5442
            this.username_password = web_webview.WebDataBase.getHttpAuthCredentials(this.host, this.realm)
            console.log('num: ' + this.username_password.length)
L
laosan_ted 已提交
5443
            ForEach(this.username_password, (item) => {
Y
yamila 已提交
5444
              console.log('username_password: ' + item)
L
laosan_ted 已提交
5445 5446
            }, item => item)
          })
Z
zhou-liting125 已提交
5447
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5448 5449 5450
      }
    }
  }
L
update  
laosan_ted 已提交
5451 5452
  ```

5453 5454 5455 5456
### saveHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
5459
**参数:**
L
laosan_ted 已提交
5460

5461 5462 5463 5464 5465 5466
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
5467

Z
zhou-liting125 已提交
5468
**示例:**
L
laosan_ted 已提交
5469

Z
zhou-liting125 已提交
5470 5471
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5472
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5473 5474 5475
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5476 5477 5478
    controller: WebController = new WebController()
    host: string = "www.spincast.org"
    realm: string = "protected example"
L
laosan_ted 已提交
5479 5480 5481 5482
    build() {
      Column() {
        Button('saveHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5483
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche")
L
laosan_ted 已提交
5484
          })
Z
zhou-liting125 已提交
5485
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5486 5487 5488
      }
    }
  }
L
update  
laosan_ted 已提交
5489 5490
  ```

5491 5492 5493 5494 5495 5496 5497 5498
## GeolocationPermissions<sup>9+</sup>

web组件地理位置权限管理对象。

### allowGeolocation<sup>9+</sup>

static allowGeolocation(origin: string): void

5499
允许指定来源使用地理位置接口。
5500 5501 5502

**参数:**

H
HelloCrease 已提交
5503 5504 5505
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述       |
| ------ | ------ | ---- | ---- | ---------- |
| origin | string | 是    | -    | 指定源的字符串索引。 |
5506 5507

**示例:**
5508

5509 5510
  ```ts
  // xxx.ets
Y
yamila 已提交
5511
  import web_webview from '@ohos.web.webview'
5512 5513 5514
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5515 5516
    controller: WebController = new WebController()
    origin: string = "file:///"
5517 5518 5519 5520
    build() {
      Column() {
        Button('allowGeolocation')
          .onClick(() => {
Y
yamila 已提交
5521
            web_webview.GeolocationPermissions.allowGeolocation(this.origin)
5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteGeolocation<sup>9+</sup>

static deleteGeolocation(origin: string): void

清除指定来源的地理位置权限状态。

**参数:**

H
HelloCrease 已提交
5537 5538 5539
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述       |
| ------ | ------ | ---- | ---- | ---------- |
| origin | string | 是    | -    | 指定源的字符串索引。 |
5540 5541

**示例:**
5542

5543 5544
  ```ts
  // xxx.ets
Y
yamila 已提交
5545
  import web_webview from '@ohos.web.webview'
5546 5547 5548
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5549 5550
    controller: WebController = new WebController()
    origin: string = "file:///"
5551 5552 5553 5554
    build() {
      Column() {
        Button('deleteGeolocation')
          .onClick(() => {
Y
yamila 已提交
5555
            web_webview.GeolocationPermissions.deleteGeolocation(this.origin)
5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteAllGeolocation<sup>9+</sup>

static deleteAllGeolocation(): void

清除所有来源的地理位置权限状态。

**示例:**
5570

5571 5572
  ```ts
  // xxx.ets
Y
yamila 已提交
5573
  import web_webview from '@ohos.web.webview'
5574 5575 5576
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5577
    controller: WebController = new WebController()
5578 5579 5580 5581
    build() {
      Column() {
        Button('deleteAllGeolocation')
          .onClick(() => {
Y
yamila 已提交
5582
            web_webview.GeolocationPermissions.deleteAllGeolocation()
5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getAccessibleGeolocation<sup>9+</sup>

static getAccessibleGeolocation(origin: string, callback: AsyncCallback\<boolean\>): void

以回调方式异步获取指定源的地理位置权限状态。

**参数:**

H
HelloCrease 已提交
5598 5599 5600 5601
| 参数名      | 参数类型                     | 必填   | 默认值  | 参数描述                                     |
| -------- | ------------------------ | ---- | ---- | ---------------------------------------- |
| origin   | string                   | 是    | -    | 指定源的字符串索引。                               |
| callback | AsyncCallback\<boolean\> | 是    | -    | 返回指定源的地理位置权限状态。获取成功,true表示已授权,false表示拒绝访问。获取失败,表示不存在指定源的权限状态。 |
5602 5603

**示例:**
5604

5605 5606
  ```ts
  // xxx.ets
Y
yamila 已提交
5607
  import web_webview from '@ohos.web.webview'
5608 5609 5610
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5611 5612
    controller: WebController = new WebController()
    origin: string = "file:///"
5613 5614 5615 5616
    build() {
      Column() {
        Button('getAccessibleGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
5617
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
5618
              if (error) {
Y
yamila 已提交
5619 5620
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error))
                return
5621
              }
Y
yamila 已提交
5622 5623
              console.log('getAccessibleGeolocationAsync result: ' + result)
            })
5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getAccessibleGeolocation<sup>9+</sup>

static getAccessibleGeolocation(origin: string): Promise\<boolean\>

以Promise方式异步获取指定源的地理位置权限状态。

**参数:**

H
HelloCrease 已提交
5639 5640 5641
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述       |
| ------ | ------ | ---- | ---- | ---------- |
| origin | string | 是    | -    | 指定源的字符串索引。 |
5642 5643 5644

**返回值:**

H
HelloCrease 已提交
5645 5646
| 类型                 | 说明                                       |
| ------------------ | ---------------------------------------- |
5647
| Promise\<boolean\> | Promise实例,用于获取指定源的权限状态,获取成功,true表示已授权,false表示拒绝访问。获取失败,表示不存在指定源的权限状态。 |
5648 5649

**示例:**
5650

5651 5652
  ```ts
  // xxx.ets
Y
yamila 已提交
5653
  import web_webview from '@ohos.web.webview'
5654 5655 5656
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5657 5658
    controller: WebController = new WebController()
    origin: string = "file:///"
5659 5660 5661 5662
    build() {
      Column() {
        Button('getAccessibleGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
5663
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin).then(result => {
Y
yamila 已提交
5664
              console.log('getAccessibleGeolocationPromise result: ' + result)
5665
            }).catch(error => {
Y
yamila 已提交
5666 5667
              console.log('getAccessibleGeolocationPromise error: ' + JSON.stringify(error))
            })
5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getStoredGeolocation<sup>9+</sup>

static getStoredGeolocation(callback: AsyncCallback\<Array\<string\>\>): void

5679
以回调方式异步获取已存储地理位置权限状态的所有源信息。
5680 5681 5682

**参数:**

H
HelloCrease 已提交
5683 5684 5685
| 参数名      | 参数类型                             | 必填   | 默认值  | 参数描述                 |
| -------- | -------------------------------- | ---- | ---- | -------------------- |
| callback | AsyncCallback\<Array\<string\>\> | 是    | -    | 返回已存储地理位置权限状态的所有源信息。 |
5686 5687

**示例:**
5688

5689 5690
  ```ts
  // xxx.ets
Y
yamila 已提交
5691
  import web_webview from '@ohos.web.webview'
5692 5693 5694
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5695
    controller: WebController = new WebController()
5696 5697 5698 5699
    build() {
      Column() {
        Button('getStoredGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
5700
            web_webview.GeolocationPermissions.getStoredGeolocation((error, origins) => {
5701
              if (error) {
Y
yamila 已提交
5702 5703
                console.log('getStoredGeolocationAsync error: ' + JSON.stringify(error))
                return
5704
              }
Y
yamila 已提交
5705 5706 5707
              let origins_str: string = origins.join()
              console.log('getStoredGeolocationAsync origins: ' + origins_str)
            })
5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getStoredGeolocation<sup>9+</sup>

static getStoredGeolocation(): Promise\<Array\<string\>\>

5719
以Promise方式异步获取已存储地理位置权限状态的所有源信息。
5720 5721 5722

**参数:**

H
HelloCrease 已提交
5723 5724 5725
| 参数名      | 参数类型                             | 必填   | 默认值  | 参数描述                 |
| -------- | -------------------------------- | ---- | ---- | -------------------- |
| callback | AsyncCallback\<Array\<string\>\> | 是    | -    | 返回已存储地理位置权限状态的所有源信息。 |
5726 5727 5728

**返回值:**

H
HelloCrease 已提交
5729 5730
| 类型                         | 说明                               |
| -------------------------- | -------------------------------- |
5731
| Promise\<Array\<string\>\> | Promise实例,用于获取已存储地理位置权限状态的所有源信息。 |
5732 5733

**示例:**
5734

5735 5736
  ```ts
  // xxx.ets
Y
yamila 已提交
5737
  import web_webview from '@ohos.web.webview'
5738 5739 5740
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5741
    controller: WebController = new WebController()
5742 5743 5744 5745
    build() {
      Column() {
        Button('getStoredGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
5746
            web_webview.GeolocationPermissions.getStoredGeolocation().then(origins => {
Y
yamila 已提交
5747 5748
              let origins_str: string = origins.join()
              console.log('getStoredGeolocationPromise origins: ' + origins_str)
5749
            }).catch(error => {
Y
yamila 已提交
5750 5751
                console.log('getStoredGeolocationPromise error: ' + JSON.stringify(error))
            })
5752 5753 5754 5755 5756 5757 5758
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

5759 5760 5761 5762 5763 5764
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

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

Z
zhou-liting125 已提交
5766
**示例:**
L
laosan_ted 已提交
5767

Z
zhou-liting125 已提交
5768 5769
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5770
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5771 5772 5773
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5774
    controller: WebController = new WebController()
L
laosan_ted 已提交
5775 5776 5777 5778
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
Y
yamila 已提交
5779
            web_webview.WebStorage.deleteAllData()
L
laosan_ted 已提交
5780
          })
Z
zhou-liting125 已提交
5781
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5782 5783 5784 5785
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5786 5787
  ```

5788 5789 5790 5791
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

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

Z
zhou-liting125 已提交
5793
**参数:**
L
laosan_ted 已提交
5794

5795 5796 5797
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
5798

Z
zhou-liting125 已提交
5799
**示例:**
L
laosan_ted 已提交
5800

Z
zhou-liting125 已提交
5801 5802
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5803
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5804 5805 5806
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5807 5808
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5809 5810 5811 5812
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5813
            web_webview.WebStorage.deleteOrigin(this.origin)
L
laosan_ted 已提交
5814
          })
Z
zhou-liting125 已提交
5815
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5816 5817 5818 5819
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5820 5821
  ```

5822
### getOrigins<sup>9+</sup>
Z
zengyawen 已提交
5823
static getOrigins(callback: AsyncCallback\<Array\<WebStorageOrigin>>) : void
5824 5825

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

Z
zhou-liting125 已提交
5827
**参数:**
L
laosan_ted 已提交
5828

5829 5830 5831
| 参数名      | 参数类型                                     | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| callback | AsyncCallback<Array<[WebStorageOrigin](#webstorageorigin9)>> | 是    | 以数组方式返回源的信息,信息内容参考WebStorageOrigin。 |
5832

Z
zhou-liting125 已提交
5833
**示例:**
L
laosan_ted 已提交
5834

Z
zhou-liting125 已提交
5835 5836
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5837
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5838 5839 5840
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5841 5842
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5843 5844 5845 5846
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
5847
            web_webview.WebStorage.getOrigins((error, origins) => {
L
laosan_ted 已提交
5848
              if (error) {
Y
yamila 已提交
5849 5850
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
5851 5852
              }
              for (let i = 0; i < origins.length; i++) {
Y
yamila 已提交
5853 5854 5855
                console.log('origin: ' + origins[i].origin)
                console.log('usage: ' + origins[i].usage)
                console.log('quota: ' + origins[i].quota)
L
laosan_ted 已提交
5856 5857 5858
              }
            })
          })
Z
zhou-liting125 已提交
5859
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5860 5861
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5862
    }
L
laosan_ted 已提交
5863 5864
  }
  ```
L
update  
laosan_ted 已提交
5865

5866
### getOrigins<sup>9+</sup>
Z
zengyawen 已提交
5867
static getOrigins() : Promise\<Array\<WebStorageOrigin>>
5868 5869

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

Z
zhou-liting125 已提交
5871
**返回值:**
L
laosan_ted 已提交
5872

5873 5874 5875
| 类型                                       | 说明                                       |
| ---------------------------------------- | ---------------------------------------- |
| Promise<Array<[WebStorageOrigin](#webstorageorigin9)>> | Promise实例,用于获取当前所有源的信息,信息内容参考WebStorageOrigin。 |
5876

Z
zhou-liting125 已提交
5877
**示例:**
L
laosan_ted 已提交
5878

Z
zhou-liting125 已提交
5879 5880
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5881
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5882 5883 5884
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5885 5886
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5887 5888 5889 5890
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
5891
            web_webview.WebStorage.getOrigins()
L
laosan_ted 已提交
5892 5893
              .then(origins => {
                for (let i = 0; i < origins.length; i++) {
Y
yamila 已提交
5894 5895 5896
                  console.log('origin: ' + origins[i].origin)
                  console.log('usage: ' + origins[i].usage)
                  console.log('quota: ' + origins[i].quota)
L
laosan_ted 已提交
5897 5898 5899
                }
              })
              .catch(error => {
Y
yamila 已提交
5900
                console.log('error: ' + error)
L
laosan_ted 已提交
5901 5902
              })
          })
Z
zhou-liting125 已提交
5903
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5904 5905
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5906
    }
L
laosan_ted 已提交
5907
  }
L
update  
laosan_ted 已提交
5908 5909
  ```

5910
### getOriginQuota<sup>9+</sup>
5911
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
5912 5913

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

Z
zhou-liting125 已提交
5915
**参数:**
L
laosan_ted 已提交
5916

5917 5918 5919
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
5920
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
5921

Z
zhou-liting125 已提交
5922
**示例:**
L
laosan_ted 已提交
5923

Z
zhou-liting125 已提交
5924 5925
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5926
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5927 5928 5929
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5930 5931
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5932 5933 5934 5935
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
5936
            web_webview.WebStorage.getOriginQuota(this.origin, (error, quota) => {
L
laosan_ted 已提交
5937
              if (error) {
Y
yamila 已提交
5938 5939
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
5940
              }
Y
yamila 已提交
5941
              console.log('quota: ' + quota)
L
laosan_ted 已提交
5942 5943
            })
          })
Z
zhou-liting125 已提交
5944
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5945 5946
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5947
    }
L
laosan_ted 已提交
5948
  }
L
update  
laosan_ted 已提交
5949 5950
  ```

5951
### getOriginQuota<sup>9+</sup>
5952
static getOriginQuota(origin : string) : Promise\<number>
5953 5954

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

Z
zhou-liting125 已提交
5956
**参数:**
L
laosan_ted 已提交
5957

5958 5959 5960
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
5961

Z
zhou-liting125 已提交
5962
**返回值:**
L
laosan_ted 已提交
5963

5964 5965
| 类型               | 说明                      |
| ---------------- | ----------------------- |
5966
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
5967

Z
zhou-liting125 已提交
5968
**示例:**
L
laosan_ted 已提交
5969

Z
zhou-liting125 已提交
5970 5971
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5972
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5973 5974 5975 5976
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
5977
    origin: string = "origin"
L
laosan_ted 已提交
5978 5979 5980 5981
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
5982
            web_webview.WebStorage.getOriginQuota(this.origin)
L
laosan_ted 已提交
5983
              .then(quota => {
Y
yamila 已提交
5984
                console.log('quota: ' + quota)
L
laosan_ted 已提交
5985 5986
              })
              .catch(error => {
Y
yamila 已提交
5987
                console.log('error: ' + error)
L
laosan_ted 已提交
5988 5989
              })
          })
Z
zhou-liting125 已提交
5990
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5991 5992 5993 5994
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5995 5996
  ```

5997
### getOriginUsage<sup>9+</sup>
5998
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
5999 6000

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

Z
zhou-liting125 已提交
6002
**参数:**
L
laosan_ted 已提交
6003

6004 6005 6006
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
6007
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
6008

Z
zhou-liting125 已提交
6009
**示例:**
L
laosan_ted 已提交
6010

Z
zhou-liting125 已提交
6011 6012
  ```ts
  // xxx.ets
L
laosan_ted 已提交
6013
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
6014 6015 6016 6017
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
6018
    origin: string = "origin"
L
laosan_ted 已提交
6019 6020 6021 6022
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
L
laosan_ted 已提交
6023
            web_webview.WebStorage.getOriginUsage(this.origin, (error, usage) => {
L
laosan_ted 已提交
6024
              if (error) {
Y
yamila 已提交
6025 6026
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
6027
              }
Y
yamila 已提交
6028
              console.log('usage: ' + usage)
L
laosan_ted 已提交
6029 6030
            })
          })
Z
zhou-liting125 已提交
6031
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
6032 6033
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
6034
    }
L
laosan_ted 已提交
6035
  }
L
update  
laosan_ted 已提交
6036 6037
  ```

6038
### getOriginUsage<sup>9+</sup>
6039
static getOriginUsage(origin : string) : Promise\<number>
6040 6041

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

Z
zhou-liting125 已提交
6043
**参数:**
L
laosan_ted 已提交
6044

6045 6046 6047
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
6048

Z
zhou-liting125 已提交
6049
**返回值:**
L
laosan_ted 已提交
6050

6051 6052
| 类型               | 说明                     |
| ---------------- | ---------------------- |
6053
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
6054

Z
zhou-liting125 已提交
6055
**示例:**
L
laosan_ted 已提交
6056

Z
zhou-liting125 已提交
6057 6058
  ```ts
  // xxx.ets
L
laosan_ted 已提交
6059
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
6060 6061 6062 6063
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
6064
    origin: string = "origin"
L
laosan_ted 已提交
6065 6066 6067 6068
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
6069
            web_webview.WebStorage.getOriginUsage(this.origin)
L
laosan_ted 已提交
6070
              .then(usage => {
Y
yamila 已提交
6071
                console.log('usage: ' + usage)
L
laosan_ted 已提交
6072 6073
              })
              .catch(error => {
Y
yamila 已提交
6074
                console.log('error: ' + error)
L
laosan_ted 已提交
6075 6076
              })
          })
Z
zhou-liting125 已提交
6077
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
6078 6079 6080 6081
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
6082 6083
  ```

6084
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
6085

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

Z
zhou-liting125 已提交
6088
**参数:**
L
laosan_ted 已提交
6089

6090 6091 6092 6093 6094
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
6095 6096 6097

## MessageLevel枚举说明

6098 6099
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
6100 6101 6102 6103 6104 6105 6106 6107 6108 6109
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

6110 6111 6112 6113 6114 6115 6116
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
6117 6118 6119

## MixedMode枚举说明

6120 6121
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
6122
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
6123 6124
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
6125 6126

## CacheMode枚举说明
6127 6128
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
6129
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
6130 6131 6132
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
6133 6134

## FileSelectorMode枚举说明
6135 6136 6137 6138
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
6139
| FileOpenFolderMode   | 打开上传文件夹模式。 |
6140
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
6141 6142 6143

 ## HitTestType枚举说明

6144 6145 6146 6147 6148 6149 6150 6151
| 名称            | 描述                       |
| ------------- | ------------------------ |
| EditText      | 可编辑的区域。                  |
| Email         | 电子邮件地址。                  |
| HttpAnchor    | 超链接,其src为http。           |
| HttpAnchorImg | 带有超链接的图片,其中超链接的src为http。 |
| Img           | HTML::img标签。             |
| Map           | 地理地址。                    |
H
HelloCrease 已提交
6152
| Phone         | 电话号码。                    |
6153 6154
| Unknown       | 未知内容。                    |

I
bugfix  
i-am-a-little-bird 已提交
6155
## SslError<sup>9+</sup>枚举说明
6156 6157 6158

onSslErrorEventReceive接口返回的SSL错误的具体原因。

H
HelloCrease 已提交
6159 6160 6161 6162 6163 6164
| 名称           | 描述          |
| ------------ | ----------- |
| Invalid      | 一般错误。       |
| HostMismatch | 主机名不匹配。     |
| DateInvalid  | 证书日期无效。     |
| Untrusted    | 证书颁发机构不受信任。 |
6165

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

H
HelloCrease 已提交
6168 6169 6170
| 名称        | 描述            | 备注                         |
| --------- | ------------- | -------------------------- |
| MidiSysex | MIDI SYSEX资源。 | 目前仅支持权限事件上报,MIDI设备的使用还未支持。 |
6171

Y
yuhaoge 已提交
6172 6173 6174 6175 6176 6177 6178
## WebDarkMode<sup>9+</sup>枚举说明
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
| Off     | Web深色模式关闭。                     |
| On      | Web深色模式开启。                     |
| Auto    | Web深色模式跟随系统。                 |

6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207
## 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
L
laosan_ted 已提交
6208
  import web_webview from '@ohos.web.webview'
6209 6210 6211
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6212
    controller: WebController = new WebController()
6213 6214 6215 6216
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
Y
yamila 已提交
6217
            let webAsyncController = new web_webview.WebAsyncController(this.controller)
6218 6219 6220 6221
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true, (filename) => {
              if (filename != null) {
                console.info(`save web archive success: ${filename}`)
              }
Y
yamila 已提交
6222
            })
6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244
          })
        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自动生成文件名。

**返回值:**

H
HelloCrease 已提交
6245 6246
| 类型              | 说明                               |
| --------------- | -------------------------------- |
6247 6248 6249 6250 6251 6252
| Promise<string> | Promise实例,保存成功返回文件路径,保存失败返回null。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
6253
  import web_webview from '@ohos.web.webview'
6254 6255 6256 6257 6258 6259 6260 6261
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
6262
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274
            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 })
      }
    }
  }
  ```
6275 6276 6277 6278

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

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

E
echoorchid 已提交
6280
### close<sup>9+</sup>
6281 6282
close(): void

E
echoorchid 已提交
6283
关闭该消息端口。
6284

E
echoorchid 已提交
6285
### postMessageEvent<sup>9+</sup>
6286 6287
postMessageEvent(message: WebMessageEvent): void

E
echoorchid 已提交
6288
发送消息。完整示例代码参考[postMessage](#postmessage9)
6289 6290

**参数:**
6291

H
HelloCrease 已提交
6292 6293 6294
| 参数名     | 参数类型                                 | 必填   | 默认值  | 参数描述    |
| ------- | ------------------------------------ | ---- | ---- | ------- |
| message | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
6295 6296

**示例:**
L
laosan_ted 已提交
6297

6298 6299 6300 6301 6302
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6303 6304
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
6305 6306 6307 6308 6309

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
Y
yamila 已提交
6310 6311 6312
            var msg = new WebMessageEvent()
            msg.setData("post message from ets to html5")
            this.ports[0].postMessageEvent(msg)
6313 6314 6315 6316 6317 6318 6319
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
6320
### onMessageEvent<sup>9+</sup>
6321 6322
onMessageEvent(callback: (result: string) => void): void

E
echoorchid 已提交
6323
注册回调函数,接收HTML5侧发送过来的消息。完整示例代码参考[postMessage](#postmessage9)
6324 6325

**参数:**
6326

H
HelloCrease 已提交
6327 6328 6329
| 参数名      | 参数类型     | 必填   | 默认值  | 参数描述       |
| -------- | -------- | ---- | ---- | ---------- |
| callback | function | 是    | -    | 接收消息的回调函数。 |
6330 6331

**示例:**
L
laosan_ted 已提交
6332

6333 6334 6335 6336 6337
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6338 6339
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
6340 6341 6342 6343 6344

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
L
laosan_ted 已提交
6345
            this.ports[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
6346
              console.log("received message from html5, on message:" + result);
6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


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

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

E
echoorchid 已提交
6360
### getData<sup>9+</sup>
6361 6362 6363 6364 6365
getData(): string

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

**返回值:**
6366

H
HelloCrease 已提交
6367 6368
| 类型     | 说明             |
| ------ | -------------- |
6369 6370
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
6371
**示例:**
L
laosan_ted 已提交
6372

E
echoorchid 已提交
6373 6374 6375 6376 6377 6378 6379 6380 6381 6382
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var msgEvent = new WebMessageEvent();
Y
yamila 已提交
6383 6384 6385
            msgEvent.setData("message event data")
            var messageData = msgEvent.getData()
            console.log("message is:" + messageData)
E
echoorchid 已提交
6386 6387 6388 6389 6390
          })
      }
    }
  }
  ```
6391

E
echoorchid 已提交
6392
### setData<sup>9+</sup>
6393 6394
setData(data: string): void

E
echoorchid 已提交
6395
设置当前对象中的消息。完整示例代码参考[postMessage](#postmessage9)
6396 6397

**参数:**
6398

H
HelloCrease 已提交
6399 6400 6401
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述    |
| ---- | ------ | ---- | ---- | ------- |
| data | string | 是    | -    | 要发送的消息。 |
6402 6403

**示例:**
L
laosan_ted 已提交
6404

6405 6406 6407 6408 6409
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6410 6411
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
6412 6413 6414 6415 6416

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
Y
yamila 已提交
6417 6418 6419
            var msg = new WebMessageEvent()
            msg.setData("post message from ets to HTML5")
            this.ports[0].postMessageEvent(msg)
6420 6421 6422 6423 6424 6425
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
6426
### getPorts<sup>9+</sup>
E
echoorchid 已提交
6427
getPorts(): Array\<WebMessagePort\>
6428 6429 6430 6431

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

**返回值:**
6432

H
HelloCrease 已提交
6433 6434
| 类型                                       | 说明               |
| ---------------------------------------- | ---------------- |
E
echoorchid 已提交
6435
| Array\<[WebMessagePort](#webmessageport9)\> | 当前该类型对象中存放的消息端口。 |
6436

E
echoorchid 已提交
6437
**示例:**
L
laosan_ted 已提交
6438

E
echoorchid 已提交
6439 6440 6441 6442 6443
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6444
    ports: WebMessagePort[] = null
E
echoorchid 已提交
6445 6446 6447 6448
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
Y
yamila 已提交
6449 6450 6451 6452 6453
            var sendPortArray = new Array(this.ports[0])
            var msgEvent = new WebMessageEvent()
            msgEvent.setPorts(sendPortArray)
            var getPorts = msgEvent.getPorts()
            console.log("Ports is:" + getPorts)
E
echoorchid 已提交
6454 6455 6456 6457 6458
          })
      }
    }
  }
  ```
6459

E
echoorchid 已提交
6460
### setPorts<sup>9+</sup>
E
echoorchid 已提交
6461
setPorts(ports: Array\<WebMessagePort\>): void
6462

E
echoorchid 已提交
6463
设置当前对象中的消息端口。完整示例代码参考[postMessage](#postmessage9)
6464 6465

**参数:**
6466

H
HelloCrease 已提交
6467 6468 6469
| 参数名   | 参数类型                                     | 必填   | 默认值  | 参数描述      |
| ----- | ---------------------------------------- | ---- | ---- | --------- |
| ports | Array\<[WebMessagePort](#webmessageport9)\> | 是    | -    | 要发送的消息端口。 |
6470 6471

**示例:**
L
laosan_ted 已提交
6472

6473 6474 6475 6476 6477
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
6478 6479
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
L
laosan_ted 已提交
6480
  
6481 6482 6483 6484
    build() {
      Column() {
        Button('setPorts')
          .onClick(() => {
Y
yamila 已提交
6485 6486 6487 6488 6489
            var sendPortArray = new Array(this.ports[1])
            var msgEvent = new WebMessageEvent()
            msgEvent.setData("__init_ports__")
            msgEvent.setPorts(sendPortArray)
            this.controller.postMessage({message: msgEvent, uri: "*"})
6490 6491 6492 6493 6494
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
C
chensi10 已提交
6495 6496 6497 6498
  ```

## DataResubmissionHandler<sup>9+</sup>

L
laosan_ted 已提交
6499
通过DataResubmissionHandler可以重新提交表单数据或取消提交表单数据。
C
chensi10 已提交
6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518

### resend<sup>9+</sup>

resend(): void

重新发送表单数据。

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
6519
         .onDataResubmitted((event) => {
C
chensi10 已提交
6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545
          console.log('onDataResubmitted')
          event.handler.resend();
        })
      }
    }
  }
  ```

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

cancel(): void

取消重新发送表单数据。

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
C
chensi10 已提交
6546
         .onDataResubmitted((event) => {
C
chensi10 已提交
6547 6548 6549 6550 6551 6552
          console.log('onDataResubmitted')
          event.handler.cancel();
        })
      }
    }
  }
C
chensi10 已提交
6553
  ```