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

H
geshi  
HelloCrease 已提交
3
> **说明:** 
4
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
5

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

L
liwenzhen 已提交
8 9 10
## 权限列表
访问在线网页时需添加网络权限:ohos.permission.INTERNET

Z
zengyawen 已提交
11 12 13 14
## 子组件



Z
zhou-liting125 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
## MessageLevel枚举说明

| 名称  | 描述       |
| ----- | :--------- |
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

| 名称                       | 描述                         |
| -------------------------- | ---------------------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。           |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。  |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。 |
| ProcessOom                 | 程序内存不足。               |
| ProcessExitUnknown         | 其他原因。                   |

## MixedMode枚举说明

| 名称       | 描述                                                        |
| ---------- | ----------------------------------------------------------- |
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。            |
| None       | 不允许加载HTTP和HTTPS混合内容。                             |

## CacheMode枚举说明
| 名称    | 描述                                                         |
| ------- | ------------------------------------------------------------ |
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。       |
| Online  | 加载资源不使用cache,全部从网络中获取。                      |
| Only    | 只从cache中加载资源。                                        |

## FileSelectorMode枚举说明
| 名称                 | 描述                 |
| -------------------- | -------------------- |
| FileOpenMode         | 打开上传单个文件。   |
| FileOpenMultipleMode | 打开上传多个文件。   |
| FileOpenFolderMode   | 打开上传文件夹模式。 |
| FileSaveMode         | 文件保存模式。       |

 ## HitTestType枚举说明

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

Z
zengyawen 已提交
73 74
## 接口

L
update  
laosan_ted 已提交
75
-   Web(options: { src: string, controller?: WebController })
Z
zengyawen 已提交
76

L
lixingchi1 已提交
77
    表1 options参数说明
Z
zengyawen 已提交
78

79 80 81 82
    | 参数名     | 参数类型                        | 必填 | 默认值 | 参数描述       |
    | ---------- | ------------------------------- | ---- | ------ | -------------- |
    | src        | string                          | 是   | -      | 网页资源地址。 |
    | controller | [WebController](#webcontroller) | 否   | -      | 控制器。       |
Z
zengyawen 已提交
83

L
update  
laosan_ted 已提交
84 85
- 示例代码
  ```js
Z
zhou-liting125 已提交
86
  @Entry
L
update  
laosan_ted 已提交
87 88 89 90 91 92 93 94 95 96
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
      }
    }
  }
  ```
Z
zengyawen 已提交
97

H
geshi  
HelloCrease 已提交
98
> **说明:**
Z
zengyawen 已提交
99 100 101
>
> - 不支持转场动画;

L
update  
laosan_ted 已提交
102
## 属性
Z
zhou-liting125 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116

web组件的网络属性。

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | domStorageAccess    | boolean   | 是   | -      | 设置是否开启文档对象模型存储接口(DOM Storage API)权限。 |

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

Z
zhou-liting125 已提交
132 133 134 135 136 137 138 139 140 141 142
### fileAccess

fileAccess(fileAccess: boolean)

设置是否开启通过[$rawfile(filepath/filename)](../../ui/ts-application-resource-access.md#资源引用)访问应用中rawfile路径的文件, 默认启用。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | fileAccess    | boolean   | 是   | -      | 设置是否开启通过[$rawfile(filepath/filename)](../../ui/ts-application-resource-access.md#资源引用)访问应用中rawfile路径的文件。 |

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

Z
zhou-liting125 已提交
158 159 160 161 162 163 164 165 166 167 168
### fileFromUrlAccess<sup>9+</sup>

fileFromUrlAccess(fileFromUrlAccess: boolean)

设置是否允许通过网页中的JavaScript脚本访问[$rawfile(filepath/filename)](../../ui/ts-application-resource-access.md#资源引用)的内容,默认未启用。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | fileFromUrlAccess    | boolean   | 是   | -      | 设置是否允许通过网页中的JavaScript脚本访问[$rawfile(filepath/filename)](../../ui/ts-application-resource-access.md#资源引用)的内容。 |

L
update  
laosan_ted 已提交
169 170
- 示例代码
  ```js
Z
zhou-liting125 已提交
171
  @Entry
L
update  
laosan_ted 已提交
172 173 174 175 176 177 178 179 180 181 182 183
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .fileFromUrlAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
184 185 186 187 188 189 190 191 192 193 194
### imageAccess

imageAccess(imageAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | imageAccess    | boolean   | 是   | -      | 设置是否允许自动加载图片资源。 |

L
update  
laosan_ted 已提交
195 196
- 示例代码
  ```js
Z
zhou-liting125 已提交
197
  @Entry
L
update  
laosan_ted 已提交
198 199 200 201 202 203 204 205 206 207 208 209
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .imageAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
210 211 212 213 214 215 216 217 218 219 220 221 222 223
### javaScriptProxy

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

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | object    | object   | 是   | -      | 参与注册的对象。只能声明方法,不能声明属性。 |
  | name    | string   | 是   | -      | 注册对象的名称,与window中调用的对象名一致。 |
  | methodList    | Array\<string\>   | 是   | -      | 参与注册的应用侧JavaScript对象的方法。|
 
L
update  
laosan_ted 已提交
224 225
- 示例代码
  ```js
Z
zhou-liting125 已提交
226
  @Entry
L
update  
laosan_ted 已提交
227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    testObj = {
      test: (data1, data2, data3) => {
        console.log("data1:" + data1);
        console.log("data2:" + data2);
        console.log("data3:" + data3);
        return "AceString";
      },
      toString: () => {
        console.log('LY111111 ets toString' + "interface instead.");
      }
    }
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .javaScriptProxy({
          obj: this.testObj,
          name: "objName",
          methodList: ["test", "toString"],
          controller: this.controller,
        })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
255 256 257 258 259 260 261 262 263 264 265
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | javaScriptAccess    | boolean   | 是   | -      | 是否允许执行JavaScript脚本。 |

L
update  
laosan_ted 已提交
266 267
- 示例代码
  ```js
Z
zhou-liting125 已提交
268
  @Entry
L
update  
laosan_ted 已提交
269 270 271 272 273 274 275 276 277 278 279 280
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .javaScriptAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
281 282 283 284 285 286 287 288 289 290 291
### mixedMode

mixedMode(mixedMode: MixedMode)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | mixedMode    | [MixedMode](#mixedmode枚举说明)   | 是   | -      | 要设置的混合内容。 |

L
update  
laosan_ted 已提交
292 293
- 示例代码
  ```js
Z
zhou-liting125 已提交
294
  @Entry
L
update  
laosan_ted 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307
  @Component
  @State mode:MixedMode = MixedMode.All;
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .mixedMode(mode)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
308 309 310 311 312 313 314 315 316 317 318
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | onlineImageAccess    | boolean   | 是   | -      | 设置是否允许从网络加载图片资源。 |

L
update  
laosan_ted 已提交
319 320 321
## onlineImageAccess
- 示例代码
  ```js
Z
zhou-liting125 已提交
322
  @Entry
L
update  
laosan_ted 已提交
323 324 325 326 327 328 329 330 331 332 333 334
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onlineImageAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
335 336 337 338 339 340 341 342 343 344 345
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | zoomAccess    | boolean   | 是   | -      | 设置是否支持手势进行缩放。 |

L
update  
laosan_ted 已提交
346 347
- 示例代码
  ```js
Z
zhou-liting125 已提交
348
  @Entry
L
update  
laosan_ted 已提交
349 350 351 352 353 354 355 356 357 358 359 360
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .zoomAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
361 362 363 364 365 366 367 368 369 370 371
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | overviewModeAccess    | boolean   | 是   | -      | 设置是否使用概览模式加载网页。 |

L
update  
laosan_ted 已提交
372 373
- 示例代码
  ```js
Z
zhou-liting125 已提交
374
  @Entry
L
update  
laosan_ted 已提交
375 376 377 378 379 380 381 382 383 384 385 386
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .overviewModeAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
387 388 389 390 391 392 393 394 395 396 397
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | databaseAccess    | boolean   | 是   | -      | 设置是否开启数据库存储API权限。 |

L
update  
laosan_ted 已提交
398
  ```js
Z
zhou-liting125 已提交
399
  @Entry
L
update  
laosan_ted 已提交
400 401 402 403 404 405 406 407 408 409 410 411
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .databaseAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
412 413 414 415 416 417 418 419 420 421 422
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | cacheMode    | [CacheMode](#cachemode枚举说明)   | 是   | -      | 要设置的缓存模式。 |

L
update  
laosan_ted 已提交
423 424
- 示例代码
  ```js
Z
zhou-liting125 已提交
425
  @Entry
L
update  
laosan_ted 已提交
426 427 428 429 430 431 432 433 434 435 436 437 438
  @Component
  @State mode:CacheMode = CacheMode.None;
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .cacheMode(mode)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
439 440 441 442 443 444 445 446 447 448 449
### textZoomAtio

textZoomAtio(textZoomAtio: number)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | textZoomAtio    | number   | 是   | -      | 要设置的页面的文本缩放百分比。 |

L
update  
laosan_ted 已提交
450 451
- 示例代码
  ```js
Z
zhou-liting125 已提交
452
  @Entry
L
update  
laosan_ted 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465
  @Component
  @State atio:Number = 100;
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .textZoomAtio(atio)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
466 467 468 469 470 471 472 473 474 475
### userAgent

userAgent(userAgent: string)

设置用户代理。

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

L
update  
laosan_ted 已提交
477 478
- 示例代码
  ```js
Z
zhou-liting125 已提交
479
  @Entry
L
update  
laosan_ted 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492
  @Component
  @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';
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .userAgent(userAgent)
      }
    }
  }
  ```

H
geshi  
HelloCrease 已提交
493
>  **说明:**
Z
zengyawen 已提交
494
>
495
>  通用属性仅支持[width](ts-universal-attributes-size.md#属性)、[height](ts-universal-attributes-size.md#属性)、[padding](ts-universal-attributes-size.md#属性)、[margin](ts-universal-attributes-size.md#属性)、[border](ts-universal-attributes-border.md#属性)。
Z
zengyawen 已提交
496 497 498

## 事件

L
liwenzhen 已提交
499
不支持通用事件。
Z
zengyawen 已提交
500

L
update  
laosan_ted 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
### onAlert

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 当前显示弹窗所在网页的URL。|
  | message | string | 弹窗中显示的信息。 |
  | result | [JsResult](#jsresult) |  通知Web组件用户操作行为。|

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

- 示例代码
  ```js
Z
zhou-liting125 已提交
521
  @Entry
L
update  
laosan_ted 已提交
522 523 524 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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onAlert((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
             value: 'onAlert',
             action: () => {
               result.handleConfirm()
             }
            },
            cancel: () => {
               result.handleCancel()
            }
          })
          return true;
        })
      }
    }
  }
  ```

### onBeforeUnload

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 当前显示弹窗所在网页的URL。|
  | message | string | 弹窗中显示的信息。 |
  | result | [JsResult](#jsresult) |  通知Web组件用户操作行为。|

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

- 示例代码
  ```js
Z
zhou-liting125 已提交
569
  @Entry
L
update  
laosan_ted 已提交
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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onBeforeUnload((event) => {
          console.log("event.url:" +url);
          console.log("event.message:" +message);
          console.log("event.result:" +result);
          return false;
        })
    }
  }
  ```

### onConfirm

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 当前显示弹窗所在网页的URL。|
  | message | string | 弹窗中显示的信息。 |
  | result | [JsResult](#jsresult) |  通知Web组件用户操作行为。|

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
606
  @Entry
L
update  
laosan_ted 已提交
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onConfirm((event) => {
          console.log("event.url:" +url);
          console.log("event.message:" +message);
          console.log("event.result:" +result);
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
            value: 'onConfirm',
            action: () => {
               result.handleConfirm()
            }
            },
            cancel: () => {
           result.handleCancel()
            }
          })
          return true;
        })
    }
  }
  ```

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 当前显示弹窗所在网页的URL。|
  | message | string | 弹窗中显示的信息。 |
  | result | [JsResult](#jsresult) |  通知Web组件用户操作行为。|

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 当回调返回false时,触发默认弹窗。当回调返回true时,系统应用可以调用系统弹窗能力(包括确认和取消),并且需要根据用户的确认或取消操作调用JsResult通知Web组件。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
654
  @Entry
L
update  
laosan_ted 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onPrompt((event) => {
          console.log("url:" + event.url);
          console.log("message:" + event.message);
          console.log("value:" + event.value);
          console.log("result:" + event.result);
          return true;
        })
    }
  }
  ```

### onConsole

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

通知宿主应用JavaScript console消息。

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | message | [ConsoleMessage](#consolemessage) | 触发的控制台信息。 |

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 当返回true时,该条消息将不会再打印至控制台,反之仍会打印至控制台。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
690
  @Entry
L
update  
laosan_ted 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onConsole((event) => {
          console.log('getMessage:' +message.getMessage());
          console.log('getSourceId:' +message.getSourceId());
          console.log('getLineNumber:' +message.getLineNumber());
          console.log('getMessageLevel:' +message.getMessageLevel());
          return false;
        })
    }
  }
  ```

### onDownloadStart

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 文件下载的URL。 |
  | contentDisposition | string | 服务器返回的 Content-Disposition响应头,可能为空。 |
  | mimetype | string | 服务器返回内容媒体类型(MIME)信息。 |
  | contentLength | contentLength | 服务器返回文件的长度。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
722
  @Entry
L
update  
laosan_ted 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onDownloadStart((event)=>{
          console.log('url:' +url);
          console.log('userAgent:' +userAgent);
          console.log('contentDisposition:' +contentDisposition);
          console.log('contentLength:' +contentLength);
          console.log('mimetype:' +mimetype);
        })
    }
  }
  ```

### onErrorReceive

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。 |
  | error | [WebResourceError](#webresourceerror) | 网页加载资源错误的封装信息 。 |

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

### onHttpErrorReceive

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。 |
  | error | [WebResourceError](#webresourceerror) | 网页加载资源错误的封装信息 。 |

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

### onPageBegin

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

	
网页开始加载时触发该回调,且只在主frame触发,iframe或者frameset的内容加载时不会触发此回调。

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 页面的URL地址。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
839
  @Entry
L
update  
laosan_ted 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onPageBegin((event) => {
          console.log('url:' +url);
        })
    }
  }
  ```

### onPageEnd

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

	
网页加载完成时触发该回调,且只在主frame触发。

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 页面的URL地址。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
867
  @Entry
L
update  
laosan_ted 已提交
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onPageEnd((event) => {
          console.log('url:' +url);
        })
    }
  }
  ```

### onProgressChange

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | newProgress | number | 新的加载进度,取值范围为0到100的整数。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
894
  @Entry
L
update  
laosan_ted 已提交
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onProgressChange((event) => {
          console.log('newProgress:' +newProgress)
        })
    }
  }
  ```

### onTitleReceive

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | title | string | document标题内容。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
921
  @Entry
L
update  
laosan_ted 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onTitleReceive((event) => {
          console.log('title:' +title)
        })
    }
  }
  ```

### onRefreshAccessedHistory

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | url | string | 访问的url。 |
  | isRefreshed | boolean | true表示该页面是被重新加载的,false表示该页面是新加载的。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
949
  @Entry
L
update  
laosan_ted 已提交
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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onRefreshAccessedHistory((event) => {
          console.log('url:' +url + ' isReload:' +isRefreshed);
        })
    }
  }
  ```

### onRenderExited

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | renderExitReason | [RenderExitReason](#renderexitreason枚举说明) | 渲染进程进程异常退出的具体原因。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
976
  @Entry
L
update  
laosan_ted 已提交
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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'chrome://crash/', controller:this.controller})
        .onRenderExited((event) => {
          console.log('reason:' +renderExitReason);
        })
    }
  }
  ```

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

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

调用此函数以处理具有“文件”输入类型的HTML表单,以响应用户按下的“选择文件”按钮.

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | result | [FileSelectorResult](#fileselectorresultsup9sup) |  用于通知Web组件文件选择的结果。 |
  | fileSelector | [FileSelectorParam](#fileselectorparamsup9sup) | 文件选择器的相关信息。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
1004
  @Entry
L
update  
laosan_ted 已提交
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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onShowFileSelector((event) => {
          AlertDialog.show({
            title:fileSelector.getTitle(),
            message: 'isCapture:' +fileSelector.isCapture() + " mode:" +fileSelector.getMode() + 'acceptType:' +fileSelector.getAcceptType(),
            confirm: {
              value: 'upload',
              action: () => {
                let fileList: Array<string> = [
                  '/data/storage/el2/base/test',
                ]
               result.handleFileList(fileList)
              }
            },
            cancel: () => {
              let fileList: Array<string> = []
             result.handleFileList(fileList)
            }
          })
          return true;
        })
    }
  }
  ```

### onUrlLoadIntercept

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | data | string / [WebResourceRequest](#webresourcerequest) | url的相关信息。 |

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 返回true表示阻止此次加载,否则允许此次加载。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
1053
  @Entry
L
update  
laosan_ted 已提交
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
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onUrlLoadIntercept((event) => {
          console.log('onUrlLoadIntercept ' +data.toString())
          return true;
        })
    }
  }
  ```

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

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

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

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | request | [WebResourceRequest](#webresourcerequest) | url请求的相关信息。 |

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | [WebResourceResponse](#webresourceresponse) | 返回响应数据为空表示按原来方式加载,否则加载响应数据。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
1086
  @Entry
L
update  
laosan_ted 已提交
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 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({src:'www.baidu.com', controller:this.controller})
        .onInterceptRequest((e) => {
          console.log('url:' + e.request.getRequestUrl());
          var head1:Header = {
            headerKey:"Connection",
            headerValue:"keep-alive"
          }
          var head2:Header = {
            headerKey:"Cache-Control",
            headerValue:"no-cache"
          }
          var length = this.heads.push(head1);
          length = this.heads.push(head2);
          this.responseweb.setResponseHeader(this.heads);
          this.responseweb.setResponseData(this.webdata);
          this.responseweb.setResponseEncoding('utf-8');
          this.responseweb.setResponseMimeType('text/html');
          this.responseweb.setResponseCode(200);
          this.responseweb.setReasonMessage('OK');
          return this.responseweb;
        })
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

- event参数
  | 参数名 | 参数类型 | 参数描述                  |
  | ------ | -------- | ------------------------- |
  | handler | [HttpAuthHandler](#httpauthhandlersup9sup) | 通知Web组件用户操作行为。 |
  | host | string | HTTP身份验证凭据应用的主机。 |
  | realm | string | HTTP身份验证凭据应用的域。 |

- 事件返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 返回false表示此次认证失败,否则成功。 |

  - 示例代码
  ```js
Z
zhou-liting125 已提交
1138
  @Entry
L
update  
laosan_ted 已提交
1139 1140 1141
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
Z
zhou-liting125 已提交
1142
    httpAuth:boolean = false;
L
update  
laosan_ted 已提交
1143 1144
    build() {
      Column() {
Z
zhou-liting125 已提交
1145
        Web({src:'http://httpbin.org/basic-auth/2222/2222', controller:this.controller})
L
update  
laosan_ted 已提交
1146 1147 1148 1149 1150 1151 1152
        .onHttpAuthRequest((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
Z
zhou-liting125 已提交
1153
                this.httpAuth = event.handler.isHttpAuthInfoSaved();
L
update  
laosan_ted 已提交
1154 1155
                if (this.httpAuth == false) {
                  web.WebDataBase.saveHttpAuthCredentials(
Z
zhou-liting125 已提交
1156 1157 1158 1159
                   event.host,
                   event.realm,
                   "2222",
                   "2222"
L
update  
laosan_ted 已提交
1160
                  )
Z
zhou-liting125 已提交
1161
                  event.handler.cancel();
L
update  
laosan_ted 已提交
1162 1163 1164 1165
                }
              }
            },
            cancel: () => {
Z
zhou-liting125 已提交
1166
             event.handler.cancel();
L
update  
laosan_ted 已提交
1167 1168 1169 1170 1171 1172 1173
            }
          })
          return true;
        })
    }
  }
  ```
1174

Z
zhou-liting125 已提交
1175
## ConsoleMessage
1176

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

Z
zhou-liting125 已提交
1179
### getLineNumber
1180

Z
zhou-liting125 已提交
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
getLineNumber(): number

获取ConsoleMessage的行数。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | number   | 返回ConsoleMessage的行数。 |

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回ConsoleMessage的日志信息。 |

### getMessageLevel

getMessageLevel(): MessageLevel
1204

Z
zhou-liting125 已提交
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
获取ConsoleMessage的信息级别。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | [MessageLevel](#messagelevel枚举说明)   | 返回ConsoleMessage的信息级别。 |

### getSourceId

getSourceId(): string

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回网页源文件路径和名字。 |

## JsResult
L
lixingchi1 已提交
1224

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

Z
zhou-liting125 已提交
1227 1228 1229
### handleCancel

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

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

Z
zhou-liting125 已提交
1233
### handleConfirm
L
add web  
liujinwei 已提交
1234

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

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

Z
zhou-liting125 已提交
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | result    | string   | 是   | -      | 用户输入的对话框内容。 |

## WebResourceError

L
update  
laosan_ted 已提交
1252
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | number   | 返回加载资源的错误码。 |

### getErrorInfo

getErrorInfo(): string

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回加载资源的错误信息。 |

## WebResourceRequest

L
update  
laosan_ted 已提交
1278
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | Array\<[Header](#header)\>   | 返回资源请求头信息。 |

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回资源请求的URL信息。 |

### isMainFrame

isMainFrame(): boolean

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | boolean   | 返回资源请求是否为主frame。 |

### isRedirect

isRedirect(): boolean

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | boolean   | 返回资源请求是否被服务端重定向。 |

### isRequestGesture

isRequestGesture(): boolean

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | boolean   | 返回资源请求是否与手势(如点击)相关联。 |

## Header
L
liwenzhen 已提交
1336 1337 1338

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

1339 1340 1341 1342
| 参数名称    | 参数类型 | 参数描述             |
| ----------- | -------- | -------------------- |
| headerKey   | string   | 请求/响应头的key。   |
| headerValue | string   | 请求/响应头的value。 |
L
liwenzhen 已提交
1343

L
add web  
liujinwei 已提交
1344

Z
zhou-liting125 已提交
1345
## WebResourceResponse
L
add web  
liujinwei 已提交
1346

L
update  
laosan_ted 已提交
1347
web组件资源响应对象。示例代码参考[onHttpErrorReceive事件](#onhttpauthrequest)
L
add web  
liujinwei 已提交
1348

Z
zhou-liting125 已提交
1349
### getReasonMessage
T
Ted 已提交
1350

Z
zhou-liting125 已提交
1351
getReasonMessage(): string
T
Ted 已提交
1352

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

Z
zhou-liting125 已提交
1355 1356 1357 1358
- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回资源响应的状态码描述。 |
T
Ted 已提交
1359

Z
zhou-liting125 已提交
1360
### getResponseCode
T
Ted 已提交
1361

Z
zhou-liting125 已提交
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
getResponseCode(): number

获取资源响应的状态码。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | number   | 返回资源响应的状态码。 |

### getResponseData

getResponseData(): string

获取资源响应数据。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回资源响应数据。 |

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回资源响应的编码。 |

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | Array\<[Header](#header)\>   | 返回资源响应头。 |

### getResponseMimeType

getResponseMimeType(): string

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回资源响应的媒体(MIME)类型。 |

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

setResponseData(data: string)

设置资源响应数据。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | data    | string   | 是   | -      | 要设置的资源响应数据。 |

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | encoding    | string   | 是   | -      | 要设置的资源响应的编码。 |

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

setResponseMimeType(mimeType: string)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | mimeType    | string   | 是   | -      | 要设置的资源响应的媒体(MIME)类型。 |

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

setReasonMessage(reason: string)

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | reason    | string   | 是   | -      | 要设置的资源响应的状态码描述。 |

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | header    | Array\<[Header](#header)\>   | 是   | -      | 要设置的资源响应头。 |

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

setResponseCode(code: number)

设置资源响应的状态码。

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | code    | number   | 是   | -      | 要设置的资源响应的状态码。 |

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

L
update  
laosan_ted 已提交
1483
通知Web组件的文件选择结果。示例代码参考[onShowFileSelector事件](#onshowfileselector)
T
Ted 已提交
1484

Z
zhou-liting125 已提交
1485
### handleFileList<sup>9+</sup>
1486

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

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

Z
zhou-liting125 已提交
1491 1492 1493 1494
- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | fileList    | Array\<string\>   | 是   | -      | 需要进行操作的文件列表。 |
1495

Z
zhou-liting125 已提交
1496 1497
## FileSelectorParam<sup>9+</sup>

L
update  
laosan_ted 已提交
1498
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector)
Z
zhou-liting125 已提交
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542

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

getTitle(): string

获取文件选择器标题。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | string   | 返回文件选择器标题。 |

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

getMode(): FileSelectorMode

获取文件选择器的模式。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | [FileSelectorMode](#FileSelectorMode枚举说明)   | 返回文件选择器的模式。 |

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | Array\<string\>   | 返回文件过滤类型。 |

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

isCapture(): boolean

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

- 返回值 
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | boolean   | 返回是否调用多媒体能力。 |
1543 1544 1545

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

L
update  
laosan_ted 已提交
1546
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest)
1547 1548 1549 1550 1551 1552 1553 1554

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

cancel(): void

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

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

1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
confirm(userName: string, pwd: string): boolean

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

- 参数

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

- 返回值

  | 参数类型  | 说明                            |
  | -------- | ------------------------------- |
  | boolean  | 认证成功返回true,失败返回false。 |

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

isHttpAuthInfoSaved(): boolean

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

- 返回值

  | 参数类型  | 说明                                  |
  | -------- | ------------------------------------- |
  | boolean  | 存在密码认证成功返回true,其他返回false。|
1584

Z
zengyawen 已提交
1585 1586
## WebController

L
liwenzhen 已提交
1587
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
1588 1589 1590 1591 1592 1593 1594

### 创建对象

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

L
lixingchi1 已提交
1595 1596 1597 1598
### accessBackward

accessBackward(): boolean

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

L
update  
laosan_ted 已提交
1601 1602 1603 1604 1605 1606 1607 1608
- 返回值

  | 参数类型  | 说明                                  |
  | -------- | ------------------------------------- |
  | boolean  | 可以后退返回true,否则返回false。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
1609
  @Entry
L
update  
laosan_ted 已提交
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('accessBackward')
        .onClick(() => {
          let result = this.controller.accessBackward();
          console.log('result:' + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
1625 1626 1627 1628
### accessForward

accessForward(): boolean

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

L
update  
laosan_ted 已提交
1631 1632 1633 1634 1635 1636 1637 1638
- 返回值

  | 参数类型  | 说明                                  |
  | -------- | ------------------------------------- |
  | boolean  | 可以前进返回true,否则返回false。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
1639
  @Entry
L
update  
laosan_ted 已提交
1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('accessForward')
        .onClick(() => {
          let result = this.controller.accessForward();
          console.log('result:' + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
1655
### accessStep
Z
zengyawen 已提交
1656

L
lixingchi1 已提交
1657
accessStep(step: number): boolean
Z
zengyawen 已提交
1658

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

- 参数

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

1667 1668
- 返回值

1669 1670 1671
  | 参数类型 | 说明               |
  | -------- | ------------------ |
  | boolean  | 页面是否前进或后退 |
1672

L
update  
laosan_ted 已提交
1673 1674
- 示例代码
  ```js
Z
zhou-liting125 已提交
1675
  @Entry
L
update  
laosan_ted 已提交
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    @State steps: number = 2;
    build() {
      Column() {
        Button('accessStep')
        .onClick(() => {
          let result = this.controller.accessStep(this.steps);
          console.log('result:' + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
1692 1693
### backward

L
update  
laosan_ted 已提交
1694
backward(): void
L
lixingchi1 已提交
1695

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

L
update  
laosan_ted 已提交
1698 1699
- 示例代码
  ```js
Z
zhou-liting125 已提交
1700
  @Entry
L
update  
laosan_ted 已提交
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('backward')
        .onClick(() => {
          this.controller.backward();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```
L
lixingchi1 已提交
1714 1715 1716

### forward

L
update  
laosan_ted 已提交
1717
forward(): void
L
lixingchi1 已提交
1718

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

L
update  
laosan_ted 已提交
1721 1722
- 示例代码
  ```js
Z
zhou-liting125 已提交
1723
  @Entry
L
update  
laosan_ted 已提交
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('forward')
        .onClick(() => {
          this.controller.forward();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

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

L
update  
laosan_ted 已提交
1749 1750
- 示例代码
  ```js
Z
zhou-liting125 已提交
1751
  @Entry
L
update  
laosan_ted 已提交
1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('backOrForward')
        .onClick(() => {
          this.controller.backOrForward();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

删除通过registerJavaScriptProxy注册到window上的指定name的应用侧JavaScript对象。

- 参数

  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                                                     |
  | ------ | -------- | ---- | ------ | ------------------------------------------------------------ |
  | name   | string   | 是   | -      | 注册对象的名称,可在网页侧JavaScript中通过此名称调用应用侧JavaScript对象。 |

- 示例代码
  ```js
Z
zhou-liting125 已提交
1780
  @Entry
L
update  
laosan_ted 已提交
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    @State name: string = 'Object';
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
        .onClick(() => {
          this.controller.deleteJavaScriptRegister(this.name);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
1796 1797 1798 1799
### getHitTest

getHitTest(): HitTestType

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

1802 1803 1804 1805
- 返回值
  | 参数类型 | 说明               |
  | -------- | ------------------ |
  | [HitTestType](#hittesttype枚举说明)  | 被点击区域的元素类型。 |
L
lixingchi1 已提交
1806

L
update  
laosan_ted 已提交
1807 1808
- 示例代码
  ```js
Z
zhou-liting125 已提交
1809
  @Entry
L
update  
laosan_ted 已提交
1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getHitTest')
        .onClick(() => {
          let hitType = this.controller.getHitTest();
          console.log("hitType: " + hitType);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | [HitTestValue](#hittestvaluesup9sup) | 点击区域的元素信息。 |

L
update  
laosan_ted 已提交
1835 1836
- 示例代码
  ```js
Z
zhou-liting125 已提交
1837
  @Entry
L
update  
laosan_ted 已提交
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getHitTestValue')
        .onClick(() => {
          let hitValue = this.controller.getHitTestValue();
          console.log("hitType: " + hitValue.getType());
          console.log("extra: " + hitValue.getExtra());
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
### getWebId<sup>9+</sup>
getWebId(): number

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

- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | number | 当前Web组件的索引值。 |

L
update  
laosan_ted 已提交
1864 1865
- 示例代码
  ```js
Z
zhou-liting125 已提交
1866
  @Entry
L
update  
laosan_ted 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getWebId')
        .onClick(() => {
          let id = this.controller.getWebId();
          console.log("id: " + id);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

1882 1883 1884 1885 1886 1887 1888 1889 1890
### getTitle<sup>9+</sup>
getTitle(): string

获取当前网页的标题。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | string | 当前网页的标题。 |

L
update  
laosan_ted 已提交
1891 1892
- 示例代码
  ```js
Z
zhou-liting125 已提交
1893
  @Entry
L
update  
laosan_ted 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getTitle')
        .onClick(() => {
          let title = this.controller.getTitle();
          console.log("title: " + title);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

1909 1910 1911 1912 1913 1914 1915 1916 1917
### getPageHeight<sup>9+</sup>
getPageHeight(): number

获取当前网页的页面高度。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | number | 当前网页的页面高度。 |

L
update  
laosan_ted 已提交
1918 1919
- 示例代码
  ```js
Z
zhou-liting125 已提交
1920
  @Entry
L
update  
laosan_ted 已提交
1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getPageHeight')
        .onClick(() => {
          let pageHeight = this.controller.getPageHeight();
          console.log("pageHeight: " + pageHeight);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```
1935 1936 1937 1938 1939

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

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

1941 1942 1943 1944
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | string | 默认用户代理。 |
L
lixingchi1 已提交
1945

L
update  
laosan_ted 已提交
1946 1947
- 示例代码
  ```js
Z
zhou-liting125 已提交
1948
  @Entry
L
update  
laosan_ted 已提交
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getDefaultUserAgent')
        .onClick(() => {
          let userAgent = this.controller.getDefaultUserAgent();
          console.log("userAgent: " + userAgent);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
1964 1965
### loadData

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

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

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

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

- options参数说明

1976 1977 1978 1979 1980 1981 1982
  | 参数名     | 参数类型 | 必填 | 默认值 | 参数描述                                                     |
  | ---------- | -------- | ---- | ------ | ------------------------------------------------------------ |
  | 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 已提交
1983

L
update  
laosan_ted 已提交
1984 1985
- 示例代码
  ```js
Z
zhou-liting125 已提交
1986
  @Entry
L
update  
laosan_ted 已提交
1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('loadData')
        .onClick(() => {
          this.controller.loadData({
            data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
            mimeType: "text/html",
            encoding: "UTF-8"
          });
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

Z
zengyawen 已提交
2005 2006
### loadUrl

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

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

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

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

H
web api  
huye 已提交
2015
- options参数说明
Z
zengyawen 已提交
2016

2017 2018 2019 2020
  | 参数名  | 参数类型                           | 必填 | 默认值 | 参数描述              |
  | ------- | ---------------------------------- | ---- | ------ | --------------------- |
  | url     | string                             | 是   | -      | 需要加载的 URL。      |
  | headers | Array\<[Header](#header对象说明)\> | 否   | []     | URL的附加HTTP请求头。 |
L
lixingchi1 已提交
2021

L
update  
laosan_ted 已提交
2022 2023
- 示例代码
  ```js
Z
zhou-liting125 已提交
2024
  @Entry
L
update  
laosan_ted 已提交
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('loadUrl')
        .onClick(() => {
          this.controller.loadUrl('https://gitee.com/');
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
2039 2040 2041 2042
### onActive

onActive(): void

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

L
update  
laosan_ted 已提交
2045 2046
- 示例代码
  ```js
Z
zhou-liting125 已提交
2047
  @Entry
L
update  
laosan_ted 已提交
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('onActive')
        .onClick(() => {
          this.controller.onActive();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
2062 2063 2064 2065
### onInactive

onInactive(): void

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

L
update  
laosan_ted 已提交
2068 2069
- 示例代码
  ```js
Z
zhou-liting125 已提交
2070
  @Entry
L
update  
laosan_ted 已提交
2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('onInactive')
        .onClick(() => {
          this.controller.onInactive();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

2085 2086 2087 2088
### zoom
zoom(factor: number): void

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

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

L
update  
laosan_ted 已提交
2095 2096
- 示例代码
  ```js
Z
zhou-liting125 已提交
2097
  @Entry
L
update  
laosan_ted 已提交
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    @State factor: number = 1;
    build() {
      Column() {
        Button('zoom')
        .onClick(() => {
          this.controller.zoom(this.factor);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

2113 2114 2115 2116 2117 2118 2119 2120 2121
### zoomIn<sup>9+</sup>
zoomIn(): boolean

调用此接口将当前网页进行放大,比列20%。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 放大操作是否成功执行。 |

L
update  
laosan_ted 已提交
2122 2123
- 示例代码
  ```js
Z
zhou-liting125 已提交
2124
  @Entry
L
update  
laosan_ted 已提交
2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('zoomIn')
        .onClick(() => {
          let result = this.controller.zoomIn();
          console.log("result: " + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

2140 2141 2142 2143 2144 2145 2146 2147 2148
### zoomOut<sup>9+</sup>
zoomOut(): boolean

调用此接口将当前网页进行缩小,比列20%。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | boolean | 缩小操作是否成功执行。 |

L
update  
laosan_ted 已提交
2149 2150
- 示例代码
  ```js
Z
zhou-liting125 已提交
2151
  @Entry
L
update  
laosan_ted 已提交
2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('zoomOut')
        .onClick(() => {
          let result = this.controller.zoomOut();
          console.log("result: " + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
2167 2168
### refresh

Z
zhou-liting125 已提交
2169
refresh()
L
lixingchi1 已提交
2170

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

L
update  
laosan_ted 已提交
2173 2174
- 示例代码
  ```js
Z
zhou-liting125 已提交
2175
  @Entry
L
update  
laosan_ted 已提交
2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('refresh')
        .onClick(() => {
          this.controller.refresh();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

L
lixingchi1 已提交
2190 2191
### registerJavaScriptProxy

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

L
liwenzhen 已提交
2194
注入JavaScript对象到window对象中,并在window对象中调用该对象的方法。注册后,须调用refresh接口生效。
L
lixingchi1 已提交
2195 2196 2197

- options 参数说明

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

L
update  
laosan_ted 已提交
2204 2205
- 示例代码
  ```js
Z
zhou-liting125 已提交
2206
  @Entry
L
update  
laosan_ted 已提交
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
        prompt.showToast({ message: "test: " + data, duration: 2000 })
        return "ArkUI Web Component";
      },
      toString: () => {
        console.log('Web Component toString');
      }
    }
    build() {
      Column() {
        Row() {
          Button('htmlTest').onClick(() => {
            this.controller.runJavaScript({ script: "htmlTest()"})
          })
  
          Button('refresh').onClick(() => {
            this.controller.refresh()
          })
  
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
            });
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
  
  ```html
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
          // 调用主应用注入的objName.test方法
          str = objName.test("test function");
          console.log('objName.test result:'+ str);
      }
  </script>
  </html>
  
  ```

L
lixingchi1 已提交
2263 2264
### runJavaScript

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

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

H
web api  
huye 已提交
2269
- options参数说明
L
lixingchi1 已提交
2270

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

L
update  
laosan_ted 已提交
2276 2277
- 示例代码
  ```js
Z
zhou-liting125 已提交
2278
  @Entry
L
update  
laosan_ted 已提交
2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    @State webResult: string = ''
    build() {
      Column() {
        Text(this.webResult).fontSize(20)
        Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          this.controller.runJavaScript({
            script: 'test()',
            callback: (result: string)=> {
              this.webResult = result
              console.info(`The test() return value is: ${result}`)
            }});
          console.info('url: ', e.url);
        })
      }
    }
  }
  ```

  ```html
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
        console.log('Ark WebComponent');
        return "This value is from index.html"
    }
    </script>
  </html>

  ```

L
lixingchi1 已提交
2319 2320
### stop

Z
zhou-liting125 已提交
2321
stop()
Z
zengyawen 已提交
2322

L
lixingchi1 已提交
2323
停止页面加载。
Z
zengyawen 已提交
2324

L
update  
laosan_ted 已提交
2325 2326
- 示例代码
  ```js
Z
zhou-liting125 已提交
2327
  @Entry
L
update  
laosan_ted 已提交
2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('stop')
        .onClick(() => {
          this.controller.stop();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

T
Ted 已提交
2342 2343 2344 2345 2346 2347
### clearHistory

clearHistory(): void

删除所有前进后退记录。

L
update  
laosan_ted 已提交
2348 2349
- 示例代码
  ```js
Z
zhou-liting125 已提交
2350
  @Entry
L
update  
laosan_ted 已提交
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('clearHistory')
        .onClick(() => {
          this.controller.clearHistory();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

Z
zhou-liting125 已提交
2365
### getCookieManager<sup>9+</sup>
T
Ted 已提交
2366 2367 2368 2369 2370

getCookieManager(): WebCookie

获取web组件cookie管理对象。
- 返回值
2371 2372
  | 参数类型  | 说明                                                     |
  | --------- | -------------------------------------------------------- |
T
Ted 已提交
2373
  | WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
2374

L
update  
laosan_ted 已提交
2375 2376
- 示例代码
  ```js
Z
zhou-liting125 已提交
2377
  @Entry
L
update  
laosan_ted 已提交
2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('getCookieManager')
        .onClick(() => {
          let cookieManager = this.controller.getCookieManager();
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

2392
## HitTestValue<sup>9+</sup>
L
update  
laosan_ted 已提交
2393
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvaluesup9sup)
2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412

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

获取当前被点击区域的元素类型。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |

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

若被点击区域为图片或链接,则附加参数信息为其url地址。
- 返回值
  | 参数类型 | 说明 |
  |----------|------|
  | string | 点击区域的附加参数信息。 |

T
Ted 已提交
2413
## WebCookie
Z
zhou-liting125 已提交
2414

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

### setCookie<sup>9+</sup>
T
Ted 已提交
2418 2419 2420 2421
setCookie(url: string, value: string): boolean

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

2422
- 参数
T
Ted 已提交
2423

2424 2425 2426 2427
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                  |
  | ------ | -------- | ---- | ------ | ------------------------- |
  | url    | string   | 是   | -      | 要设置的cookie所属的url。 |
  | value  | string   | 是   | -      | cookie的值。              |
T
Ted 已提交
2428
- 返回值 
2429 2430 2431
  | 参数类型 | 说明                 |
  | -------- | -------------------- |
  | boolean  | 设置cookie是否成功。 |
T
Ted 已提交
2432

L
update  
laosan_ted 已提交
2433 2434
- 示例代码
  ```js
Z
zhou-liting125 已提交
2435
  @Entry
L
update  
laosan_ted 已提交
2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Button('setCookie')
        .onClick(() => {
          let result = this.controller.getCookieManager().setCookie("http://www.baidu.com", "a=b");
          console.log("result: " + result);
        })
        Web({src:'www.baidu.com', controller:this.controller})
    }
  }
  ```

Z
zhou-liting125 已提交
2451
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
2452 2453 2454 2455
saveCookieSync(): boolean

将当前存在内存中的cookie同步到磁盘中,该方法为同步方法。
- 返回值
2456 2457 2458
  | 参数类型 | 说明                               |
  | -------- | ---------------------------------- |
  | boolean  | 同步内存cookie到磁盘操作是否成功。 |
2459

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

2478 2479 2480 2481 2482 2483 2484
## WebDataBase<sup>9+</sup>
web组件数据库管理对象。

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

static existHttpAuthCredentials(): boolean

2485
判断是否存在任何已保存的HTTP身份验证凭据,该方法为同步方法。存在返回true,不存在返回false。
2486 2487 2488 2489 2490 2491

- 返回值 
  | 参数类型  | 说明                                |
  | -------- | ----------------------------------- |
  | boolean  | 是否存在任何已保存的HTTP身份验证凭据。存在返回true,不存在返回false |

L
update  
laosan_ted 已提交
2492 2493 2494 2495 2496 2497 2498
- 示例代码
  ```js
  import web from '@ohos.web';
  let result = web.WebDataBase.existHttpAuthCredentials();
  console.log('result: ' + result);
  ```

2499 2500 2501 2502 2503 2504
### deleteHttpAuthCredentials<sup>9+</sup>

static deleteHttpAuthCredentials(): void

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

L
update  
laosan_ted 已提交
2505 2506 2507 2508 2509 2510
- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebDataBase.deleteHttpAuthCredentials();
  ```

2511 2512 2513 2514
### getHttpAuthCredentials<sup>9+</sup>

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

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

2517
- 参数
2518 2519 2520 2521

  | 参数名  | 参数类型 | 必填  | 默认值 | 参数描述                    |
  | ------ | -------- | ---- | ------ | -------------------------- |
  | host   | string   | 是   | -      | HTTP身份验证凭据应用的主机。 |
2522
  | realm  | string   | 是   | -      | HTTP身份验证凭据应用的域。 |
2523 2524 2525 2526 2527
- 返回值 
  | 参数类型          | 说明                                          |
  | ---------------- | --------------------------------------------- |
  | Array\<string\>  | 包含用户名和密码的组数,检索失败返回空数组。 |

L
update  
laosan_ted 已提交
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
- 示例代码
  ```js
  import web from '@ohos.web';
  host: string = "www.spincast.org";
  realm: string = "protected example";
  username_password: string[];
  this.username_password = web.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
  console.log('num: ' + this.username_password.length);
  ForEach(this.username_password, (item) => {
    console.log('username_password: ' + item);
  }, item => item)
  ```

2541 2542 2543 2544
### saveHttpAuthCredentials<sup>9+</sup>

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

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

2547
- 参数
2548 2549 2550 2551

  | 参数名    | 参数类型 | 必填  | 默认值 | 参数描述                    |
  | -------- | -------- | ---- | ------ | -------------------------- |
  | host     | string   | 是   | -      | HTTP身份验证凭据应用的主机。 |
2552
  | realm    | string   | 是   | -      | HTTP身份验证凭据应用的域。 |
2553 2554 2555
  | username | string   | 是   | -      | 用户名。                    |
  | password | string   | 是   | -      | 密码。                      |

L
update  
laosan_ted 已提交
2556 2557 2558 2559 2560 2561 2562 2563
- 示例代码
  ```js
  import web from '@ohos.web';
  host: string = "www.spincast.org";
  realm: string = "protected example";
  web.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
  ```

2564 2565 2566 2567 2568 2569
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

清除Web SQL数据库当前使用的所有存储。
L
update  
laosan_ted 已提交
2570 2571 2572 2573 2574 2575 2576

- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebStorage.deleteAllData();
  ```

2577 2578 2579 2580 2581 2582 2583 2584 2585
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

清除指定源所使用的存储。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |---------|---------|-----|-----|
  | origin | string | 是 | 指定源的字符串索引。 |

L
update  
laosan_ted 已提交
2586 2587 2588 2589 2590 2591 2592
- 示例代码
  ```js
  import web from '@ohos.web';
  origin: string = "origin";
  web.WebStorage.deleteOrigin(origin);
  ```

2593 2594 2595 2596 2597 2598 2599 2600 2601
### getOrigins<sup>9+</sup>
static getOrigins(callback: AsyncCallback<Array<[WebStorageOrigin](#webstorageoriginsup9sup)>>) : void

以回调方式异步获取当前使用Web SQL数据库的所有源的信息。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |---------|---------|-----|----|
  | callback | AsyncCallback<Array<[WebStorageOrigin](#webstorageoriginsup9sup)>> | 是 | 以数组方式返回源的信息,信息内容参考WebStorageOrigin。|

L
update  
laosan_ted 已提交
2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebStorage.getOrigins((error, origins) => {
    if (error) {
      console.log('error: ' + error);
      return;
    }
    for (let i = 0; i < origins.length; i++) {
      consloe.log('origin: ' + origins[i].origin);
      console.log('usage: ' + origins[i].usage);
      console.log('quota: ' + origins[i].quota);
    }
  })

2617 2618 2619 2620 2621 2622 2623 2624 2625
### getOrigins<sup>9+</sup>
static getOrigins() : Promise<Array<[WebStorageOrigin](#webstorageoriginsup9sup)>>

以Promise方式异步获取当前使用Web SQL数据库的所有源的信息
- 返回值
  | 类型 | 说明 |
  |------|------|
  | Promise<Array<[WebStorageOrigin](#webstorageoriginsup9sup)>> | Promise实例用于获取当前所有源的信息信息内容参考WebStorageOrigin |

L
update  
laosan_ted 已提交
2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641
- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebStorage.getOrigins()
  .then(origins => {
    for (let i = 0; i < origins.length; i++) {
      consloe.log('origin: ' + origins[i].origin);
      console.log('usage: ' + origins[i].usage);
      console.log('quota: ' + origins[i].quota);
    }
  })
  .catch(error => {
    console.log('error: ' + error);
  })
  ```

2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
### getOriginQuota<sup>9+</sup>
static getOriginQuota(origin : string, callback : AsyncCallback<number>) : void

使用callback回调异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。
- 参数
  | 参数名 |  参数类型 | 必填 | 说明 |
  |----------|-----------|------|------|
  | origin | string | 是 | 指定源的字符串索引 |
  | callback | AsyncCallback<number> | 是 | 指定源的存储配额。 |

L
update  
laosan_ted 已提交
2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664
- 示例代码
  ```js
  import web from '@ohos.web';
  origin: string = "origin";
  web.WebStorage.getOriginQuota(origin, (error, quota) => {
    if (error) {
      console.log('error: ' + error);
      return;
    }
    consloe.log('quota: ' + quota);
  })
  ```

2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
### getOriginQuota<sup>9+</sup>
static getOriginQuota(origin : string) : Promise<number>

以Promise方式异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |----------|---------|------|-------|
  | origin | string | 是 | 指定源的字符串索引。 |

- 返回值
  | 类型 | 说明 |
  |------|------|
  | Promise<number> | Promise实例,用于获取指定源的存储配额。 |

L
update  
laosan_ted 已提交
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebStorage.getOriginQuota()
  .then(quota => {
    consloe.log('quota: ' + quota);
  })
  .catch(error => {
    console.log('error: ' + error);
  })
  ```

2691 2692 2693 2694 2695 2696 2697 2698 2699 2700
### getOriginUsage<sup>9+</sup>
static getOriginUsage(origin : string, callback : AsyncCallback<number>) : void

以回调方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |----------|----------|------|------|
  | origin | string | 是 | 指定源的字符串索引。 |
  | callback | AsyncCallback<number> | 是 | 指定源的存储量。 |

L
update  
laosan_ted 已提交
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713
- 示例代码
  ```js
  import web from '@ohos.web';
  origin: string = "origin";
  web.WebStorage.getOriginUsage(origin, (error, usage) => {
    if (error) {
      console.log('error: ' + error);
      return;
    }
    consloe.log('usage: ' + usage);
  })
  ```

2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727
### getOriginUsage<sup>9+</sup>
static getOriginUsage(origin : string) : Promise<number>

以Promise方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |----------|----------|------|------|
  | origin | string | 是 | 指定源的字符串索引。 |

- 返回值
  | 类型 | 说明 |
  |------|------|
  | Promise<number> | Promise实例,用于获取指定源的存储量。 |

L
update  
laosan_ted 已提交
2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739
- 示例代码
  ```js
  import web from '@ohos.web';
  web.WebStorage.getOriginUsage()
  .then(usage => {
    consloe.log('usage: ' + usage);
  })
  .catch(error => {
    console.log('error: ' + error);
  })
  ```

2740 2741 2742 2743 2744 2745 2746 2747
## WebStorageOrigin<sup>9+</sup>
提供Web SQL数据库的使用信息。
- 参数
  | 参数名 | 参数类型 | 必填 | 说明 |
  |----------|----------|------|------|
  | origin | string | 是 | 指定源的字符串索引。 |
  | usage | number | 是 | 指定源的存储量。 |
  | quota | number | 是 | 指定源的存储配额。 |