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

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

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

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

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



## 接口

Z
zhou-liting125 已提交
19
Web(options: { src: string, controller?: WebController })
Z
zhou-liting125 已提交
20 21

**参数:**
22 23 24 25
| 参数名        | 参数类型                            | 必填   | 默认值  | 参数描述    |
| ---------- | ------------------------------- | ---- | ---- | ------- |
| src        | string                          | 是    | -    | 网页资源地址。 |
| controller | [WebController](#webcontroller) | 否    | -    | 控制器。    |
Z
zengyawen 已提交
26

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

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

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

web组件的网络属性。

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

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

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

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

fileAccess(fileAccess: boolean)

81
设置是否开启通过[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)访问应用中rawfile路径的文件, 默认启用。
Z
zhou-liting125 已提交
82

Z
zhou-liting125 已提交
83
**参数:**
84 85
| 参数名        | 参数类型    | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------- | ---- | ---- | ---------------------------------------- |
86
| fileAccess | boolean | 是    | true | 设置是否开启通过[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)访问应用中rawfile路径的文件,默认启用。 |
Z
zhou-liting125 已提交
87

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

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

fileFromUrlAccess(fileFromUrlAccess: boolean)

108
设置是否允许通过网页中的JavaScript脚本访问[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)的内容,默认未启用。
Z
zhou-liting125 已提交
109

Z
zhou-liting125 已提交
110
**参数:**
111 112 113
| 参数名               | 参数类型    | 必填   | 默认值   | 参数描述                                     |
| ----------------- | ------- | ---- | ----- | ---------------------------------------- |
| fileFromUrlAccess | boolean | 是    | false | 设置是否允许通过网页中的JavaScript脚本访问[$rawfile(filepath/filename)](../../ui/ts-resource-access.md)的内容,默认未启用。 |
Z
zhou-liting125 已提交
114

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

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

imageAccess(imageAccess: boolean)

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

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

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

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

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

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

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

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

Z
zhou-liting125 已提交
205 206 207 208 209 210
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
232 233 234 235 236 237
### mixedMode

mixedMode(mixedMode: MixedMode)

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

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

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

Z
zhou-liting125 已提交
260 261 262 263 264 265
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
287 288 289 290 291 292
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
314 315 316 317 318 319
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
341 342 343 344 345 346
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
367 368 369 370 371 372
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
373
**参数:**
374 375 376
| 参数名       | 参数类型                        | 必填   | 默认值  | 参数描述      |
| --------- | --------------------------- | ---- | ---- | --------- |
| cacheMode | [CacheMode](#cachemode枚举说明) | 是    | -    | 要设置的缓存模式。 |
Z
zhou-liting125 已提交
377

Z
zhou-liting125 已提交
378
**示例:**
Z
zhou-liting125 已提交
379 380
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
381
  @Entry
L
update  
laosan_ted 已提交
382 383 384
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
L
laosan_ted 已提交
385
    @State mode:CacheMode = CacheMode.None;
L
update  
laosan_ted 已提交
386 387
    build() {
      Column() {
Z
zhou-liting125 已提交
388
        Web({ src:'www.example.com', controller:this.controller })
L
laosan_ted 已提交
389
        .cacheMode(this.mode)
L
update  
laosan_ted 已提交
390 391 392 393 394
      }
    }
  }
  ```

Z
zhou-liting125 已提交
395 396 397 398 399 400
### textZoomAtio

textZoomAtio(textZoomAtio: number)

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

Z
zhou-liting125 已提交
401
**参数:**
402 403 404
| 参数名          | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------------ | ------ | ---- | ---- | --------------- |
| textZoomAtio | number | 是    | -    | 要设置的页面的文本缩放百分比。 |
Z
zhou-liting125 已提交
405

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

Z
zhou-liting125 已提交
423 424 425 426 427 428
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
429
**参数:**
430 431 432
| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| userAgent | string | 是    | -    | 要设置的用户代理。 |
Z
zengyawen 已提交
433

Z
zhou-liting125 已提交
434
**示例:**
Z
zhou-liting125 已提交
435 436
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
437
  @Entry
L
update  
laosan_ted 已提交
438 439 440
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
L
laosan_ted 已提交
441
    @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 已提交
442 443
    build() {
      Column() {
Z
zhou-liting125 已提交
444
        Web({ src:'www.example.com', controller:this.controller })
L
laosan_ted 已提交
445
        .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
446 447 448 449 450
      }
    }
  }
  ```

H
geshi  
HelloCrease 已提交
451
>  **说明:**
Z
zengyawen 已提交
452
>
453
>  通用属性仅支持[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 已提交
454 455 456

## 事件

L
liwenzhen 已提交
457
不支持通用事件。
Z
zengyawen 已提交
458

L
update  
laosan_ted 已提交
459 460 461 462 463 464
### onAlert

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

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

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

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

Z
zhou-liting125 已提交
477
**示例:**
Z
zhou-liting125 已提交
478 479
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
480
  @Entry
L
update  
laosan_ted 已提交
481 482 483 484 485
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
Z
zhou-liting125 已提交
486
        Web({ src:'www.example.com', controller:this.controller })
L
laosan_ted 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
          .onAlert((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onAlert',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
update  
laosan_ted 已提交
502 503 504 505 506 507 508 509 510 511 512 513
          })
      }
    }
  }
  ```

### onBeforeUnload

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

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

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

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

Z
zhou-liting125 已提交
526
**示例:**
Z
zhou-liting125 已提交
527 528
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
529
  @Entry
L
update  
laosan_ted 已提交
530 531
  @Component
  struct WebComponent {
L
laosan_ted 已提交
532 533
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
534 535
    build() {
      Column() {
Z
zhou-liting125 已提交
536
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
537 538 539 540 541 542 543
          .onBeforeUnload((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
            console.log("event.result:" + event.result);
            return false;
          })
      }
L
update  
laosan_ted 已提交
544 545 546 547 548 549 550 551 552 553
    }
  }
  ```

### onConfirm

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

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

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

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

Z
zhou-liting125 已提交
566
**示例:**
Z
zhou-liting125 已提交
567 568
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
569
  @Entry
L
update  
laosan_ted 已提交
570 571
  @Component
  struct WebComponent {
L
laosan_ted 已提交
572 573
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
574 575
    build() {
      Column() {
Z
zhou-liting125 已提交
576
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
          .onConfirm((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
            console.log("event.result:" + event.result);
            AlertDialog.show({
              title: 'title',
              message: 'text',
              confirm: {
                value: 'onConfirm',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
update  
laosan_ted 已提交
595
          })
L
laosan_ted 已提交
596
      }
L
update  
laosan_ted 已提交
597 598 599 600 601 602 603 604
    }
  }
  ```

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

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

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

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

Z
zhou-liting125 已提交
617
**示例:**
Z
zhou-liting125 已提交
618 619
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
620
  @Entry
L
update  
laosan_ted 已提交
621 622 623 624 625
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
Z
zhou-liting125 已提交
626
        Web({ src:'www.example.com', controller:this.controller })
L
update  
laosan_ted 已提交
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
        .onPrompt((event) => {
          console.log("url:" + event.url);
          console.log("message:" + event.message);
          console.log("value:" + event.value);
          console.log("result:" + event.result);
          return true;
        })
    }
  }
  ```

### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
644
**参数:**
645 646 647
| 参数名     | 参数类型                              | 参数描述      |
| ------- | --------------------------------- | --------- |
| message | [ConsoleMessage](#consolemessage) | 触发的控制台信息。 |
L
update  
laosan_ted 已提交
648

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

Z
zhou-liting125 已提交
654
**示例:**
Z
zhou-liting125 已提交
655 656
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
657
  @Entry
L
update  
laosan_ted 已提交
658 659
  @Component
  struct WebComponent {
L
laosan_ted 已提交
660 661
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
662 663
    build() {
      Column() {
Z
zhou-liting125 已提交
664
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
665 666 667 668 669 670 671 672
          .onConsole((event) => {
            console.log('getMessage:' + event.message.getMessage());
            console.log('getSourceId:' + event.message.getSourceId());
            console.log('getLineNumber:' + event.message.getLineNumber());
            console.log('getMessageLevel:' + event.message.getMessageLevel());
            return false;
          })
      }
L
update  
laosan_ted 已提交
673 674 675 676 677 678 679 680
    }
  }
  ```

### onDownloadStart

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

Z
zhou-liting125 已提交
681
**参数:**
682 683 684 685 686 687
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
688

Z
zhou-liting125 已提交
689
**示例:**
Z
zhou-liting125 已提交
690 691
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
692
  @Entry
L
update  
laosan_ted 已提交
693 694
  @Component
  struct WebComponent {
L
laosan_ted 已提交
695 696
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
697 698
    build() {
      Column() {
Z
zhou-liting125 已提交
699
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
700 701 702 703 704 705 706 707
          .onDownloadStart((event) => {
            console.log('url:' + event.url);
            console.log('userAgent:' + event.userAgent);
            console.log('contentDisposition:' + event.contentDisposition);
            console.log('contentLength:' + event.contentLength);
            console.log('mimetype:' + event.mimetype);
          })
      }
L
update  
laosan_ted 已提交
708 709 710 711 712 713 714 715 716 717
    }
  }
  ```

### onErrorReceive

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

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

Z
zhou-liting125 已提交
718
**参数:**
719 720 721 722
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
| error   | [WebResourceError](#webresourceerror)    | 网页加载资源错误的封装信息 。 |
L
update  
laosan_ted 已提交
723

Z
zhou-liting125 已提交
724
**示例:**
Z
zhou-liting125 已提交
725 726
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
727
  @Entry
L
update  
laosan_ted 已提交
728 729
  @Component
  struct WebComponent {
L
laosan_ted 已提交
730 731
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
732 733
    build() {
      Column() {
Z
zhou-liting125 已提交
734
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
          .onErrorReceive((event) => {
            console.log('getErrorInfo:' + event.error.getErrorInfo());
            console.log('getErrorCode:' + event.error.getErrorCode());
            console.log('url:' + event.request.getRequestUrl());
            console.log('isMainFrame:' + event.request.isMainFrame());
            console.log('isRedirect:' + event.request.isRedirect());
            console.log('isRequestGesture:' + event.request.isRequestGesture());
            console.log('getRequestHeader_headerKey:' + event.request.getRequestHeader().toString());
            let result = event.request.getRequestHeader();
            console.log('The request header result size is ' + result.length);
            for (let i of result) {
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue);
            }
          })
      }
L
update  
laosan_ted 已提交
750 751 752 753 754 755 756 757 758 759
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
760
**参数:**
761 762 763 764
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
| error   | [WebResourceError](#webresourceerror)    | 网页加载资源错误的封装信息 。 |
L
update  
laosan_ted 已提交
765

Z
zhou-liting125 已提交
766
**示例:**
Z
zhou-liting125 已提交
767 768
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
769
  @Entry
L
update  
laosan_ted 已提交
770 771
  @Component
  struct WebComponent {
L
laosan_ted 已提交
772 773
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
774 775
    build() {
      Column() {
Z
zhou-liting125 已提交
776
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
          .onHttpErrorReceive((event) => {
            console.log('url:' + event.request.getRequestUrl());
            console.log('isMainFrame:' + event.request.isMainFrame());
            console.log('isRedirect:' + event.request.isRedirect());
            console.log('isRequestGesture:' + event.request.isRequestGesture());
            console.log('getResponseData:' + event.response.getResponseData());
            console.log('getResponseEncoding:' + event.response.getResponseEncoding());
            console.log('getResponseMimeType:' + event.response.getResponseMimeType());
            console.log('getResponseCode:' + event.response.getResponseCode());
            console.log('getReasonMessage:' + event.response.getReasonMessage());
            let result = event.request.getRequestHeader();
            console.log('The request header result size is ' + result.length);
            for (let i of result) {
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue);
            }
            let resph = event.response.getResponseHeader();
            console.log('The response header result size is ' + resph.length);
            for (let i of resph) {
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue);
            }
          })
      }
L
update  
laosan_ted 已提交
799 800 801 802 803 804 805 806
    }
  }
  ```

### onPageBegin

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

807

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

Z
zhou-liting125 已提交
810
**参数:**
811 812 813
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
814

Z
zhou-liting125 已提交
815
**示例:**
Z
zhou-liting125 已提交
816 817
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
818
  @Entry
L
update  
laosan_ted 已提交
819 820
  @Component
  struct WebComponent {
L
laosan_ted 已提交
821 822
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
823 824
    build() {
      Column() {
Z
zhou-liting125 已提交
825
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
826 827 828 829
          .onPageBegin((event) => {
            console.log('url:' + event.url);
          })
      }
L
update  
laosan_ted 已提交
830 831 832 833 834 835 836 837
    }
  }
  ```

### onPageEnd

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

838

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

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

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

### onProgressChange

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

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

Z
zhou-liting125 已提交
871
**参数:**
872 873 874
| 参数名         | 参数类型   | 参数描述                  |
| ----------- | ------ | --------------------- |
| newProgress | number | 新的加载进度,取值范围为0到100的整数。 |
L
update  
laosan_ted 已提交
875

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

### onTitleReceive

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

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

Z
zhou-liting125 已提交
901
**参数:**
902 903 904
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
905

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

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
931
**参数:**
932 933 934 935
| 参数名         | 参数类型    | 参数描述                              |
| ----------- | ------- | --------------------------------- |
| url         | string  | 访问的url。                           |
| isRefreshed | boolean | true表示该页面是被重新加载的,false表示该页面是新加载的。 |
L
update  
laosan_ted 已提交
936

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

### onRenderExited

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

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

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

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

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

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

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

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

Z
zhou-liting125 已提交
998
  **示例:**
Z
zhou-liting125 已提交
999 1000
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1001
  @Entry
L
update  
laosan_ted 已提交
1002 1003
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1004 1005
    controller: WebController = new WebController();

L
update  
laosan_ted 已提交
1006 1007
    build() {
      Column() {
Z
zhou-liting125 已提交
1008
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
          .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 已提交
1025
              }
L
laosan_ted 已提交
1026 1027
            })
            return true;
L
update  
laosan_ted 已提交
1028
          })
L
laosan_ted 已提交
1029
      }
L
update  
laosan_ted 已提交
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
    }
  }
  ```

### onUrlLoadIntercept

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

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

Z
zhou-liting125 已提交
1040
**参数:**
1041 1042 1043
| 参数名  | 参数类型                                     | 参数描述      |
| ---- | ---------------------------------------- | --------- |
| data | string / [WebResourceRequest](#webresourcerequest) | url的相关信息。 |
L
update  
laosan_ted 已提交
1044

Z
zhou-liting125 已提交
1045
**返回值:**
1046 1047 1048
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
1049

Z
zhou-liting125 已提交
1050
  **示例:**
Z
zhou-liting125 已提交
1051 1052
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1053
  @Entry
L
update  
laosan_ted 已提交
1054 1055
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1056 1057
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1058 1059
    build() {
      Column() {
Z
zhou-liting125 已提交
1060
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1061 1062 1063 1064 1065
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
            return true;
          })
      }
L
update  
laosan_ted 已提交
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
    }
  }
  ```

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

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

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

Z
zhou-liting125 已提交
1076
**参数:**
1077 1078 1079
| 参数名     | 参数类型                                     | 参数描述        |
| ------- | ---------------------------------------- | ----------- |
| request | [WebResourceRequest](#webresourcerequest) | url请求的相关信息。 |
L
update  
laosan_ted 已提交
1080

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

Z
zhou-liting125 已提交
1086
  **示例:**
Z
zhou-liting125 已提交
1087 1088
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1089
  @Entry
L
update  
laosan_ted 已提交
1090 1091 1092
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
L
laosan_ted 已提交
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
    responseweb: WebResourceResponse = new WebResourceResponse();
    heads:Header[] = new Array();
    @State webdata: string = "<!DOCTYPE html>\n" +
    "<html>\n"+
    "<head>\n"+
    "<title>intercept test</title>\n"+
    "</head>\n"+
    "<body>\n"+
    "<h1>intercept test</h1>\n"+
    "</body>\n"+
    "</html>"
L
update  
laosan_ted 已提交
1104 1105
    build() {
      Column() {
Z
zhou-liting125 已提交
1106
        Web({ src:'www.example.com', controller:this.controller })
L
laosan_ted 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
          .onInterceptRequest((event) => {
            console.log('url:' + event.request.getRequestUrl());
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
            var length = this.heads.push(head1);
            length = this.heads.push(head2);
            this.responseweb.setResponseHeader(this.heads);
            this.responseweb.setResponseData(this.webdata);
            this.responseweb.setResponseEncoding('utf-8');
            this.responseweb.setResponseMimeType('text/html');
            this.responseweb.setResponseCode(200);
            this.responseweb.setReasonMessage('OK');
            return this.responseweb;
          })
L
update  
laosan_ted 已提交
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
1138
**参数:**
1139 1140 1141 1142 1143
| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| handler | [HttpAuthHandler](#httpauthhandler9) | 通知Web组件用户操作行为。   |
| host    | string                               | HTTP身份验证凭据应用的主机。 |
| realm   | string                               | HTTP身份验证凭据应用的域。  |
L
update  
laosan_ted 已提交
1144

Z
zhou-liting125 已提交
1145
**返回值:**
1146 1147 1148
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
1149

Z
zhou-liting125 已提交
1150
  **示例:**
Z
zhou-liting125 已提交
1151 1152
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1153
  @Entry
L
update  
laosan_ted 已提交
1154 1155 1156
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
Z
zhou-liting125 已提交
1157
    httpAuth:boolean = false;
L
update  
laosan_ted 已提交
1158 1159
    build() {
      Column() {
Z
zhou-liting125 已提交
1160
        Web({ src:'www.example.com', controller:this.controller })
L
update  
laosan_ted 已提交
1161 1162 1163 1164 1165 1166 1167
        .onHttpAuthRequest((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
Z
zhou-liting125 已提交
1168
                this.httpAuth = event.handler.isHttpAuthInfoSaved();
L
update  
laosan_ted 已提交
1169 1170
                if (this.httpAuth == false) {
                  web.WebDataBase.saveHttpAuthCredentials(
Z
zhou-liting125 已提交
1171 1172 1173 1174
                   event.host,
                   event.realm,
                   "2222",
                   "2222"
L
update  
laosan_ted 已提交
1175
                  )
Z
zhou-liting125 已提交
1176
                  event.handler.cancel();
L
update  
laosan_ted 已提交
1177 1178 1179 1180
                }
              }
            },
            cancel: () => {
Z
zhou-liting125 已提交
1181
             event.handler.cancel();
L
update  
laosan_ted 已提交
1182 1183 1184 1185 1186 1187 1188
            }
          })
          return true;
        })
    }
  }
  ```
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

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

  **示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onPermissionRequest((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
                event.request.grant(event.request.getAccessibleResource());
              }
            },
            cancel: () => {
             event.request.deny();
            }
          })
        })
    }
  }
  ```
1228

1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240
### onContextMenuShow<sup>9+</sup>

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

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

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

Y
yu-shihao4 已提交
1241 1242 1243 1244 1245
**返回值:** 
| 类型     | 说明                   |
| ------ | -------------------- |
| boolean | 自定义菜单返回true,默认菜单返回false。 |

1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
  **示例:**
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onContextMenuShow((event) => {
            console.info("x coord = " + event.param.x());
            console.info("link url = " + event.param.getLinkUrl());
        })
      }
    }
Y
yu-shihao4 已提交
1262
  }
1263 1264
  ```

Z
zhou-liting125 已提交
1265
## ConsoleMessage
1266

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

Z
zhou-liting125 已提交
1269
### getLineNumber
1270

Z
zhou-liting125 已提交
1271 1272 1273 1274
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
1275
**返回值:** 
1276 1277 1278
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
1279 1280 1281 1282 1283 1284 1285

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
1286
**返回值:** 
1287 1288 1289
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
1290 1291 1292 1293

### getMessageLevel

getMessageLevel(): MessageLevel
1294

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

Z
zhou-liting125 已提交
1297
**返回值:** 
1298 1299 1300
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
1301 1302 1303 1304 1305 1306 1307

### getSourceId

getSourceId(): string

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

Z
zhou-liting125 已提交
1308
**返回值:** 
1309 1310 1311
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
1312 1313

## JsResult
L
lixingchi1 已提交
1314

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

Z
zhou-liting125 已提交
1317 1318 1319
### handleCancel

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

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

Z
zhou-liting125 已提交
1323
### handleConfirm
L
add web  
liujinwei 已提交
1324

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

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

Z
zhou-liting125 已提交
1329 1330 1331 1332 1333 1334
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
1335
**参数:**
1336 1337 1338
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
1339 1340 1341

## WebResourceError

L
update  
laosan_ted 已提交
1342
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1343 1344 1345 1346 1347 1348 1349

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
1350
**返回值:** 
1351 1352 1353
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
1354 1355 1356 1357 1358 1359 1360

### getErrorInfo

getErrorInfo(): string

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

Z
zhou-liting125 已提交
1361
**返回值:** 
1362 1363 1364
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
1365 1366 1367

## WebResourceRequest

L
update  
laosan_ted 已提交
1368
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1369 1370 1371 1372 1373 1374 1375

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

Z
zhou-liting125 已提交
1376
**返回值:** 
1377 1378 1379
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
1380 1381 1382 1383 1384 1385 1386

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

Z
zhou-liting125 已提交
1387
**返回值:** 
1388 1389 1390
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
1391 1392 1393 1394 1395 1396 1397

### isMainFrame

isMainFrame(): boolean

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

Z
zhou-liting125 已提交
1398
**返回值:** 
1399 1400 1401
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
1402 1403 1404 1405 1406 1407 1408

### isRedirect

isRedirect(): boolean

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

Z
zhou-liting125 已提交
1409
**返回值:** 
1410 1411 1412
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
1413 1414 1415 1416 1417 1418 1419

### isRequestGesture

isRequestGesture(): boolean

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

Z
zhou-liting125 已提交
1420
**返回值:** 
1421 1422 1423
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
1424 1425

## Header
L
liwenzhen 已提交
1426 1427 1428

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

1429 1430 1431 1432
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
1433

L
add web  
liujinwei 已提交
1434

Z
zhou-liting125 已提交
1435
## WebResourceResponse
L
add web  
liujinwei 已提交
1436

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

Z
zhou-liting125 已提交
1439
### getReasonMessage
T
Ted 已提交
1440

Z
zhou-liting125 已提交
1441
getReasonMessage(): string
T
Ted 已提交
1442

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

Z
zhou-liting125 已提交
1445
**返回值:** 
1446 1447 1448
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
1449

Z
zhou-liting125 已提交
1450
### getResponseCode
T
Ted 已提交
1451

Z
zhou-liting125 已提交
1452 1453 1454 1455
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
1456
**返回值:** 
1457 1458 1459
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
1460 1461 1462 1463 1464 1465 1466

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
1467
**返回值:** 
1468 1469 1470
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
1471 1472 1473 1474 1475 1476 1477

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
1478
**返回值:** 
1479 1480 1481
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
1482 1483 1484 1485 1486 1487 1488

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
1489
**返回值:** 
1490 1491 1492
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
1493 1494 1495 1496 1497 1498 1499

### getResponseMimeType

getResponseMimeType(): string

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

Z
zhou-liting125 已提交
1500
**返回值:** 
1501 1502 1503
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1504 1505 1506 1507 1508 1509 1510

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

setResponseData(data: string)

设置资源响应数据。

Z
zhou-liting125 已提交
1511
**参数:**
1512 1513 1514
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
1515 1516 1517 1518 1519 1520 1521

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
1522
**参数:**
1523 1524 1525
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
1526 1527 1528 1529 1530 1531 1532

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
1533
**参数:**
1534 1535 1536
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1537 1538 1539 1540 1541 1542 1543

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
1544
**参数:**
1545 1546 1547
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
1548 1549 1550 1551 1552 1553 1554

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
1555
**参数:**
1556 1557 1558
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
1559 1560 1561 1562 1563 1564 1565

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
1566
**参数:**
1567 1568 1569
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
1570 1571

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

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

Z
zhou-liting125 已提交
1575
### handleFileList<sup>9+</sup>
1576

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

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

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

Z
zhou-liting125 已提交
1586 1587
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
1588
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
1589 1590 1591 1592 1593 1594 1595

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

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
1596
**返回值:** 
1597 1598 1599
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
1600 1601 1602 1603 1604 1605 1606

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

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
1607
**返回值:** 
1608 1609 1610
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
1611 1612 1613 1614 1615 1616 1617

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
1618
**返回值:** 
1619 1620 1621
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
1622 1623 1624 1625 1626 1627 1628

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

isCapture(): boolean

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

Z
zhou-liting125 已提交
1629
**返回值:** 
1630 1631 1632
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
1633 1634 1635

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

Z
zhou-liting125 已提交
1636
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
1637 1638 1639 1640 1641 1642 1643 1644

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

cancel(): void

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

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

1646 1647 1648 1649
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
1650
**参数:**
1651

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

Z
zhou-liting125 已提交
1657
**返回值:**
1658 1659 1660
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
1661 1662 1663 1664 1665 1666 1667

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

isHttpAuthInfoSaved(): boolean

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

Z
zhou-liting125 已提交
1668
**返回值:**
1669 1670 1671
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
1672

1673 1674
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
1675
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

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

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
1699
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710

**返回值:**

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

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

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

X
xiongjun_gitee 已提交
1711
对网页访问的给定权限进行授权。
1712 1713 1714 1715 1716 1717 1718

**参数:**

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

1719 1720
## WebContextMenuParam<sup>9+</sup>

Y
yu-shihao4 已提交
1721
实现长按页面元素跳出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732

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

x(): number

弹出菜单的x坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1733
| number | 显示正常返回非负整数,否则返回-1。 |
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744

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

y(): number

弹出菜单的y坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
1745
| number | 显示正常返回非负整数,否则返回-1。 |
1746 1747 1748 1749 1750 1751 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 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796

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

getLinkUrl(): string

获取linkurl链接。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
| string | 如果长按位置是链接,返回链接经过安全检查的url。 |

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

getUnfilterendLinkUrl(): string

获取linkurl链接。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
| string | 如果长按位置是链接,返回链接的原始url。 |

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

getSourceUrl(): string

获取sourceUrl链接。

**返回值:**

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

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

existsImageContents(): boolean

是否存在图像内容。

**返回值:**

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

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

Y
yu-shihao4 已提交
1797
实现长按页面元素跳出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810

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

closeContextMenu(): void

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

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

copyImage(): void

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

Z
zengyawen 已提交
1811 1812
## WebController

L
liwenzhen 已提交
1813
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
1814 1815 1816 1817 1818 1819 1820

### 创建对象

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

L
lixingchi1 已提交
1821 1822 1823 1824
### accessBackward

accessBackward(): boolean

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

Z
zhou-liting125 已提交
1827
**返回值:**
1828 1829 1830
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
1831

Z
zhou-liting125 已提交
1832
**示例:**
Z
zhou-liting125 已提交
1833 1834
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1835
  @Entry
L
update  
laosan_ted 已提交
1836 1837
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1838 1839
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1840 1841 1842
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
1843 1844 1845 1846
          .onClick(() => {
            let result = this.controller.accessBackward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1847
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1848
      }
L
update  
laosan_ted 已提交
1849 1850 1851 1852
    }
  }
  ```

L
lixingchi1 已提交
1853 1854 1855 1856
### accessForward

accessForward(): boolean

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

Z
zhou-liting125 已提交
1859
**返回值:**
1860 1861 1862
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
1863

Z
zhou-liting125 已提交
1864
**示例:**
Z
zhou-liting125 已提交
1865 1866
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1867
  @Entry
L
update  
laosan_ted 已提交
1868 1869
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1870 1871
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1872 1873 1874
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
1875 1876 1877 1878
          .onClick(() => {
            let result = this.controller.accessForward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1879
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1880
      }
L
update  
laosan_ted 已提交
1881 1882 1883 1884
    }
  }
  ```

L
lixingchi1 已提交
1885
### accessStep
Z
zengyawen 已提交
1886

L
lixingchi1 已提交
1887
accessStep(step: number): boolean
Z
zengyawen 已提交
1888

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

Z
zhou-liting125 已提交
1891
**参数:**
Z
zengyawen 已提交
1892

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

Z
zhou-liting125 已提交
1897
**返回值:**
1898 1899 1900
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
1901

Z
zhou-liting125 已提交
1902
**示例:**
Z
zhou-liting125 已提交
1903 1904
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1905
  @Entry
L
update  
laosan_ted 已提交
1906 1907
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1908
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
1909
    @State steps: number = 2;
L
laosan_ted 已提交
1910
  
L
update  
laosan_ted 已提交
1911 1912 1913
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
1914 1915 1916 1917
          .onClick(() => {
            let result = this.controller.accessStep(this.steps);
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
1918
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1919
      }
L
update  
laosan_ted 已提交
1920 1921 1922 1923
    }
  }
  ```

L
lixingchi1 已提交
1924 1925
### backward

L
update  
laosan_ted 已提交
1926
backward(): void
L
lixingchi1 已提交
1927

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

Z
zhou-liting125 已提交
1930
**示例:**
Z
zhou-liting125 已提交
1931 1932
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1933
  @Entry
L
update  
laosan_ted 已提交
1934 1935
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1936 1937
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1938 1939 1940
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
1941 1942 1943
          .onClick(() => {
            this.controller.backward();
          })
Z
zhou-liting125 已提交
1944
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1945
      }
L
update  
laosan_ted 已提交
1946 1947 1948
    }
  }
  ```
L
lixingchi1 已提交
1949 1950 1951

### forward

L
update  
laosan_ted 已提交
1952
forward(): void
L
lixingchi1 已提交
1953

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

Z
zhou-liting125 已提交
1956
**示例:**
Z
zhou-liting125 已提交
1957 1958
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1959
  @Entry
L
update  
laosan_ted 已提交
1960 1961
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1962 1963
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1964 1965 1966
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
1967 1968 1969
          .onClick(() => {
            this.controller.forward();
          })
Z
zhou-liting125 已提交
1970
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1971
      }
L
update  
laosan_ted 已提交
1972 1973 1974 1975
    }
  }
  ```

1976 1977 1978 1979 1980 1981
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

Z
zhou-liting125 已提交
1982
**参数:**
1983 1984 1985
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| step | number | 是    | -    | 需要前进或后退的步长。 |
1986

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

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

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

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

L
lixingchi1 已提交
2037 2038 2039 2040
### getHitTest

getHitTest(): HitTestType

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

Z
zhou-liting125 已提交
2043
**返回值:**
2044 2045 2046
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
2047

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

2069 2070 2071 2072 2073
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

Z
zhou-liting125 已提交
2074
**返回值:**
2075 2076 2077
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
2078

Z
zhou-liting125 已提交
2079
**示例:**
Z
zhou-liting125 已提交
2080 2081
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2082
  @Entry
L
update  
laosan_ted 已提交
2083 2084
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2085 2086
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2087 2088 2089
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
2090 2091 2092 2093 2094
          .onClick(() => {
            let hitValue = this.controller.getHitTestValue();
            console.log("hitType: " + hitValue.getType());
            console.log("extra: " + hitValue.getExtra());
          })
Z
zhou-liting125 已提交
2095
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2096
      }
L
update  
laosan_ted 已提交
2097 2098 2099 2100
    }
  }
  ```

2101 2102 2103 2104 2105
### getWebId<sup>9+</sup>
getWebId(): number

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

Z
zhou-liting125 已提交
2106
**返回值:**
2107 2108 2109
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
2110

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

2132 2133 2134 2135
### getTitle<sup>9+</sup>
getTitle(): string

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

**返回值:**
2138 2139 2140
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
2141

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

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

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

**返回值:**
2169 2170 2171
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
2172

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

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

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

Z
zhou-liting125 已提交
2199
**返回值:**
2200 2201 2202
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
2203

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

L
lixingchi1 已提交
2225 2226
### loadData

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

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

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

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

Z
zhou-liting125 已提交
2235
**参数:**
2236 2237 2238 2239 2240 2241 2242
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
2243

Z
zhou-liting125 已提交
2244
**示例:**
Z
zhou-liting125 已提交
2245 2246
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2247
  @Entry
L
update  
laosan_ted 已提交
2248 2249
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2250 2251
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2252 2253 2254
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
2255 2256 2257 2258 2259 2260 2261
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
            });
          })
Z
zhou-liting125 已提交
2262
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2263
      }
L
update  
laosan_ted 已提交
2264 2265 2266 2267
    }
  }
  ```

Z
zengyawen 已提交
2268 2269
### loadUrl

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

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

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

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

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

Z
zhou-liting125 已提交
2284
**示例:**
Z
zhou-liting125 已提交
2285 2286
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2287
  @Entry
L
update  
laosan_ted 已提交
2288 2289
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2290 2291
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2292 2293 2294
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
2295
          .onClick(() => {
Z
zhou-liting125 已提交
2296
            this.controller.loadUrl({ url: 'www.example.com' });
L
laosan_ted 已提交
2297
          })
Z
zhou-liting125 已提交
2298
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2299
      }
L
update  
laosan_ted 已提交
2300 2301 2302 2303
    }
  }
  ```

L
lixingchi1 已提交
2304 2305 2306 2307
### onActive

onActive(): void

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

Z
zhou-liting125 已提交
2310
**示例:**
Z
zhou-liting125 已提交
2311 2312
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2313
  @Entry
L
update  
laosan_ted 已提交
2314 2315
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2316 2317
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2318 2319 2320
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
2321 2322 2323
          .onClick(() => {
            this.controller.onActive();
          })
Z
zhou-liting125 已提交
2324
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2325
      }
L
update  
laosan_ted 已提交
2326 2327 2328 2329
    }
  }
  ```

L
lixingchi1 已提交
2330 2331 2332 2333
### onInactive

onInactive(): void

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

Z
zhou-liting125 已提交
2336
**示例:**
Z
zhou-liting125 已提交
2337 2338
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2339
  @Entry
L
update  
laosan_ted 已提交
2340 2341
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2342 2343
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2344 2345 2346
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
2347 2348 2349
          .onClick(() => {
            this.controller.onInactive();
          })
Z
zhou-liting125 已提交
2350
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2351
      }
L
update  
laosan_ted 已提交
2352 2353 2354 2355
    }
  }
  ```

2356 2357 2358 2359
### zoom
zoom(factor: number): void

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

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

Z
zhou-liting125 已提交
2366
**示例:**
Z
zhou-liting125 已提交
2367 2368
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2369
  @Entry
L
update  
laosan_ted 已提交
2370 2371
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2372
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2373
    @State factor: number = 1;
L
laosan_ted 已提交
2374
  
L
update  
laosan_ted 已提交
2375 2376 2377
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
2378 2379 2380
          .onClick(() => {
            this.controller.zoom(this.factor);
          })
Z
zhou-liting125 已提交
2381
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2382
      }
L
update  
laosan_ted 已提交
2383 2384 2385 2386
    }
  }
  ```

2387 2388 2389 2390
### zoomIn<sup>9+</sup>
zoomIn(): boolean

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

**返回值:**
2393 2394 2395
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
2396

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

2418 2419 2420 2421
### zoomOut<sup>9+</sup>
zoomOut(): boolean

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

**返回值:**
2424 2425 2426
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
2427

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

L
lixingchi1 已提交
2449 2450
### refresh

Z
zhou-liting125 已提交
2451
refresh()
L
lixingchi1 已提交
2452

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

Z
zhou-liting125 已提交
2455
**示例:**
Z
zhou-liting125 已提交
2456 2457
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2458
  @Entry
L
update  
laosan_ted 已提交
2459 2460
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2461 2462
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2463 2464 2465
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
2466 2467 2468
          .onClick(() => {
            this.controller.refresh();
          })
Z
zhou-liting125 已提交
2469
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2470
      }
L
update  
laosan_ted 已提交
2471 2472 2473 2474
    }
  }
  ```

L
lixingchi1 已提交
2475 2476
### registerJavaScriptProxy

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

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

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

Z
zhou-liting125 已提交
2488
**示例:**
Z
zhou-liting125 已提交
2489 2490
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2491
  @Entry
L
update  
laosan_ted 已提交
2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
        return "ArkUI Web Component";
      },
      toString: () => {
        console.log('Web Component toString');
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
            });
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
2520

L
update  
laosan_ted 已提交
2521
  ```html
L
laosan_ted 已提交
2522
  <!-- index.html -->
L
update  
laosan_ted 已提交
2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
          str = objName.test("test function");
          console.log('objName.test result:'+ str);
      }
  </script>
  </html>
  
  ```

L
lixingchi1 已提交
2539 2540
### runJavaScript

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

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

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

Z
zhou-liting125 已提交
2551
**示例:**
Z
zhou-liting125 已提交
2552 2553
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2554
  @Entry
L
update  
laosan_ted 已提交
2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    @State webResult: string = ''
    build() {
      Column() {
        Text(this.webResult).fontSize(20)
        Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          this.controller.runJavaScript({
            script: 'test()',
            callback: (result: string)=> {
              this.webResult = result
              console.info(`The test() return value is: ${result}`)
            }});
          console.info('url: ', e.url);
        })
      }
    }
  }
  ```

  ```html
L
laosan_ted 已提交
2579
  <!-- index.html -->
L
update  
laosan_ted 已提交
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595
  <!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 已提交
2596 2597
### stop

Z
zhou-liting125 已提交
2598
stop()
Z
zengyawen 已提交
2599

L
lixingchi1 已提交
2600
停止页面加载。
Z
zengyawen 已提交
2601

Z
zhou-liting125 已提交
2602
**示例:**
Z
zhou-liting125 已提交
2603 2604
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2605
  @Entry
L
update  
laosan_ted 已提交
2606 2607
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2608 2609
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2610 2611 2612
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
2613 2614 2615
          .onClick(() => {
            this.controller.stop();
          })
Z
zhou-liting125 已提交
2616
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2617
      }
L
update  
laosan_ted 已提交
2618 2619 2620 2621
    }
  }
  ```

T
Ted 已提交
2622 2623 2624 2625 2626 2627
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
2628
**示例:**
Z
zhou-liting125 已提交
2629 2630
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2631
  @Entry
L
update  
laosan_ted 已提交
2632 2633
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2634 2635
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2636 2637 2638
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
2639 2640 2641
          .onClick(() => {
            this.controller.clearHistory();
          })
Z
zhou-liting125 已提交
2642
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2643
      }
L
update  
laosan_ted 已提交
2644 2645 2646 2647
    }
  }
  ```

Z
zhou-liting125 已提交
2648
### getCookieManager<sup>9+</sup>
T
Ted 已提交
2649 2650 2651 2652

getCookieManager(): WebCookie

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

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

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

2679
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
2680
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
2681 2682 2683 2684 2685

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

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

**返回值:**
2688 2689 2690
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
2691 2692 2693 2694 2695

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

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

**返回值:**
2698 2699 2700
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
2701

T
Ted 已提交
2702
## WebCookie
Z
zhou-liting125 已提交
2703

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

### setCookie<sup>9+</sup>
T
Ted 已提交
2707 2708 2709 2710
setCookie(url: string, value: string): boolean

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

Z
zhou-liting125 已提交
2711
**参数:**
2712 2713 2714 2715
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
2716

Z
zhou-liting125 已提交
2717
**返回值:** 
2718 2719 2720
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
2721

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

Z
zhou-liting125 已提交
2743
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
2744 2745 2746
saveCookieSync(): boolean

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

**返回值:**
2749 2750 2751
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |
2752

Z
zhou-liting125 已提交
2753
**示例:**
Z
zhou-liting125 已提交
2754 2755
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2756
  @Entry
L
update  
laosan_ted 已提交
2757 2758
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2759 2760
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2761 2762 2763
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
2764 2765 2766 2767
          .onClick(() => {
            let result = this.controller.getCookieManager().saveCookieSync();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2768
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2769
      }
L
update  
laosan_ted 已提交
2770 2771 2772 2773
    }
  }
  ```

2774 2775 2776 2777 2778 2779 2780
## WebDataBase<sup>9+</sup>
web组件数据库管理对象。

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

static existHttpAuthCredentials(): boolean

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

Z
zhou-liting125 已提交
2783
**返回值:** 
2784 2785 2786
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
| boolean | 是否存在任何已保存的HTTP身份验证凭据。存在返回true,不存在返回false |
2787

Z
zhou-liting125 已提交
2788
**示例:**
Z
zhou-liting125 已提交
2789 2790
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2791
  import web from '@ohos.web';
L
laosan_ted 已提交
2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
            let result = web.WebDataBase.existHttpAuthCredentials();
            console.log('result: ' + result);
          })
Z
zhou-liting125 已提交
2804
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2805 2806 2807
      }
    }
  }
L
update  
laosan_ted 已提交
2808 2809
  ```

2810 2811 2812 2813 2814 2815
### deleteHttpAuthCredentials<sup>9+</sup>

static deleteHttpAuthCredentials(): void

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

Z
zhou-liting125 已提交
2816
**示例:**
Z
zhou-liting125 已提交
2817 2818
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2819
  import web from '@ohos.web';
L
laosan_ted 已提交
2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
            web.WebDataBase.deleteHttpAuthCredentials();
          })
Z
zhou-liting125 已提交
2831
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2832 2833 2834
      }
    }
  }
L
update  
laosan_ted 已提交
2835 2836
  ```

2837 2838 2839 2840
### getHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
2843
**参数:**
2844 2845 2846 2847
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
2848

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

Z
zhou-liting125 已提交
2854
**示例:**
Z
zhou-liting125 已提交
2855 2856
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2857
  import web from '@ohos.web';
L
laosan_ted 已提交
2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    host: string = "www.spincast.org";
    realm: string = "protected example";
    username_password: string[];
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
            this.username_password = web.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
            console.log('num: ' + this.username_password.length);
            ForEach(this.username_password, (item) => {
              console.log('username_password: ' + item);
            }, item => item)
          })
Z
zhou-liting125 已提交
2875
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2876 2877 2878
      }
    }
  }
L
update  
laosan_ted 已提交
2879 2880
  ```

2881 2882 2883 2884
### saveHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
2887
**参数:**
2888 2889 2890 2891 2892 2893
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
2894

Z
zhou-liting125 已提交
2895
**示例:**
Z
zhou-liting125 已提交
2896 2897
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2898
  import web from '@ohos.web';
L
laosan_ted 已提交
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    host: string = "www.spincast.org";
    realm: string = "protected example";
    build() {
      Column() {
        Button('saveHttpAuthCredentials')
          .onClick(() => {
            web.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
          })
Z
zhou-liting125 已提交
2911
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2912 2913 2914
      }
    }
  }
L
update  
laosan_ted 已提交
2915 2916
  ```

2917 2918 2919 2920 2921 2922
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

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

Z
zhou-liting125 已提交
2924
**示例:**
Z
zhou-liting125 已提交
2925 2926
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2927
  import web from '@ohos.web';
L
laosan_ted 已提交
2928 2929 2930 2931 2932 2933 2934 2935 2936 2937
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
            web.WebStorage.deleteAllData();
          })
Z
zhou-liting125 已提交
2938
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2939 2940 2941 2942
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
2943 2944
  ```

2945 2946 2947 2948
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

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

Z
zhou-liting125 已提交
2950
**参数:**
2951 2952 2953
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
2954

Z
zhou-liting125 已提交
2955
**示例:**
Z
zhou-liting125 已提交
2956 2957
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2958
  import web from '@ohos.web';
L
laosan_ted 已提交
2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
            web.WebStorage.deleteOrigin(this.origin);
          })
Z
zhou-liting125 已提交
2970
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2971 2972 2973 2974
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
2975 2976
  ```

2977
### getOrigins<sup>9+</sup>
Z
zhou-liting125 已提交
2978
static getOrigins(callback: AsyncCallback<Array<[WebStorageOrigin]>>) : void
2979 2980

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

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

Z
zhou-liting125 已提交
2987
**示例:**
Z
zhou-liting125 已提交
2988 2989
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
2990
  import web from '@ohos.web';
L
laosan_ted 已提交
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
            web.WebStorage.getOrigins((error, origins) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              for (let i = 0; i < origins.length; i++) {
                console.log('origin: ' + origins[i].origin);
                console.log('usage: ' + origins[i].usage);
                console.log('quota: ' + origins[i].quota);
              }
            })
          })
Z
zhou-liting125 已提交
3012
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3013 3014
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3015
    }
L
laosan_ted 已提交
3016 3017
  }
  ```
L
update  
laosan_ted 已提交
3018

3019
### getOrigins<sup>9+</sup>
Z
zhou-liting125 已提交
3020
static getOrigins() : Promise<Array<[WebStorageOrigin]>>
3021 3022

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

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

Z
zhou-liting125 已提交
3029
**示例:**
Z
zhou-liting125 已提交
3030 3031
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3032
  import web from '@ohos.web';
L
laosan_ted 已提交
3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
            web.WebStorage.getOrigins()
              .then(origins => {
                for (let i = 0; i < origins.length; i++) {
                  console.log('origin: ' + origins[i].origin);
                  console.log('usage: ' + origins[i].usage);
                  console.log('quota: ' + origins[i].quota);
                }
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3054
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3055 3056
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3057
    }
L
laosan_ted 已提交
3058
  }
L
update  
laosan_ted 已提交
3059 3060
  ```

3061
### getOriginQuota<sup>9+</sup>
3062
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
3063 3064

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

Z
zhou-liting125 已提交
3066
**参数:**
3067 3068 3069
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
3070
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
3071

Z
zhou-liting125 已提交
3072
**示例:**
Z
zhou-liting125 已提交
3073 3074
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3075
  import web from '@ohos.web';
L
laosan_ted 已提交
3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginQuota(this.origin, (error, quota) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              console.log('quota: ' + quota);
            })
          })
Z
zhou-liting125 已提交
3093
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3094 3095
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3096
    }
L
laosan_ted 已提交
3097
  }
L
update  
laosan_ted 已提交
3098 3099
  ```

3100
### getOriginQuota<sup>9+</sup>
3101
static getOriginQuota(origin : string) : Promise\<number>
3102 3103

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

Z
zhou-liting125 已提交
3105
**参数:**
3106 3107 3108
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
3109

Z
zhou-liting125 已提交
3110
**返回值:**
3111 3112
| 类型               | 说明                      |
| ---------------- | ----------------------- |
3113
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
3114

Z
zhou-liting125 已提交
3115
**示例:**
Z
zhou-liting125 已提交
3116 3117
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3118
  import web from '@ohos.web';
L
laosan_ted 已提交
3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginQuota(this.origin)
              .then(quota => {
                console.log('quota: ' + quota);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3136
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3137 3138 3139 3140
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3141 3142
  ```

3143
### getOriginUsage<sup>9+</sup>
3144
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
3145 3146

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

Z
zhou-liting125 已提交
3148
**参数:**
3149 3150 3151
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
3152
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
3153

Z
zhou-liting125 已提交
3154
**示例:**
Z
zhou-liting125 已提交
3155 3156
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3157
  import web from '@ohos.web';
L
laosan_ted 已提交
3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
            web.WebStorage.getOriginUsage(this.origin, (error, usage) => {
              if (error) {
                console.log('error: ' + error);
                return;
              }
              consloe.log('usage: ' + usage);
            })
          })
Z
zhou-liting125 已提交
3175
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3176 3177
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
3178
    }
L
laosan_ted 已提交
3179
  }
L
update  
laosan_ted 已提交
3180 3181
  ```

3182
### getOriginUsage<sup>9+</sup>
3183
static getOriginUsage(origin : string) : Promise\<number>
3184 3185

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

Z
zhou-liting125 已提交
3187
**参数:**
3188 3189 3190
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
3191

Z
zhou-liting125 已提交
3192
**返回值:**
3193 3194
| 类型               | 说明                     |
| ---------------- | ---------------------- |
3195
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
3196

Z
zhou-liting125 已提交
3197
**示例:**
Z
zhou-liting125 已提交
3198 3199
  ```ts
  // xxx.ets
L
update  
laosan_ted 已提交
3200
  import web from '@ohos.web';
L
laosan_ted 已提交
3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
            web.WebStorage.getOriginUsage(this.origin)
              .then(usage => {
                console.log('usage: ' + usage);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
3218
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3219 3220 3221 3222
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
3223 3224
  ```

3225
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
3226

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

Z
zhou-liting125 已提交
3229
**参数:**
3230 3231 3232 3233 3234
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
3235 3236 3237

## MessageLevel枚举说明

3238 3239
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
3240 3241 3242 3243 3244 3245 3246 3247 3248 3249
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

3250 3251 3252 3253 3254 3255 3256
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
3257 3258 3259

## MixedMode枚举说明

3260 3261
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
3262
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
3263 3264
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
3265 3266

## CacheMode枚举说明
3267 3268
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
3269
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
3270 3271 3272
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
3273 3274

## FileSelectorMode枚举说明
3275 3276 3277 3278
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
3279
| FileOpenFolderMode   | 打开上传文件夹模式。 |
3280
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
3281 3282 3283

 ## HitTestType枚举说明

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

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

X
xiongjun_gitee 已提交
3296 3297 3298
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|