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

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



## 接口

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

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

Z
zhou-liting125 已提交
25
**参数:**
L
laosan_ted 已提交
26 27 28 29 30

| 参数名        | 参数类型                            | 必填   | 参数描述    |
| ---------- | ------------------------------- | ---- | ------- |
| src        | [ResourceStr](../../ui/ts-types.md)                           | 是    | 网页资源地址。 |
| controller | [WebController](#webcontroller) | 否    | 控制器。    |
Z
zengyawen 已提交
31

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

L
laosan_ted 已提交
34
  加载在线网页
Z
zhou-liting125 已提交
35 36
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
37
  @Entry
L
update  
laosan_ted 已提交
38 39
  @Component
  struct WebComponent {
40
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
41 42
    build() {
      Column() {
43
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
44 45 46 47
      }
    }
  }
  ```
Z
zengyawen 已提交
48

L
laosan_ted 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
  加载本地网页
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Web({ src: $rawfile("index.html"), controller: this.controller })
      }
    }
  }
  ```

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

L
update  
laosan_ted 已提交
74
## 属性
Z
zhou-liting125 已提交
75 76 77 78 79 80 81 82 83

web组件的网络属性。

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

Z
zhou-liting125 已提交
84
**参数:**
L
laosan_ted 已提交
85

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

Z
zhou-liting125 已提交
90
**示例:**
L
laosan_ted 已提交
91

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

Z
zhou-liting125 已提交
107 108 109 110
### fileAccess

fileAccess(fileAccess: boolean)

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

Z
zhou-liting125 已提交
113
**参数:**
L
laosan_ted 已提交
114

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

Z
zhou-liting125 已提交
119
**示例:**
L
laosan_ted 已提交
120

Z
zhou-liting125 已提交
121 122
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
123
  @Entry
L
update  
laosan_ted 已提交
124 125
  @Component
  struct WebComponent {
126
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
127 128
    build() {
      Column() {
129
        Web({ src: 'www.example.com', controller: this.controller })
130
          .fileAccess(true)
L
update  
laosan_ted 已提交
131 132 133 134 135
      }
    }
  }
  ```

Z
zhou-liting125 已提交
136 137 138 139
### fileFromUrlAccess<sup>9+</sup>

fileFromUrlAccess(fileFromUrlAccess: boolean)

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

Z
zhou-liting125 已提交
142
**参数:**
L
laosan_ted 已提交
143

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

Z
zhou-liting125 已提交
148
**示例:**
L
laosan_ted 已提交
149

Z
zhou-liting125 已提交
150 151
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
152
  @Entry
L
update  
laosan_ted 已提交
153 154
  @Component
  struct WebComponent {
155
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
156 157
    build() {
      Column() {
158 159
        Web({ src: 'www.example.com', controller: this.controller })
          .fileFromUrlAccess(true)
L
update  
laosan_ted 已提交
160 161 162 163 164
      }
    }
  }
  ```

Z
zhou-liting125 已提交
165 166 167 168 169 170
### imageAccess

imageAccess(imageAccess: boolean)

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

Z
zhou-liting125 已提交
171
**参数:**
L
laosan_ted 已提交
172

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

Z
zhou-liting125 已提交
177
**示例:**
Z
zhou-liting125 已提交
178 179
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
180
  @Entry
L
update  
laosan_ted 已提交
181 182
  @Component
  struct WebComponent {
183
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
184 185
    build() {
      Column() {
186 187
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
188 189 190 191 192
      }
    }
  }
  ```

Z
zhou-liting125 已提交
193 194 195 196 197 198 199
### javaScriptProxy

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

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

Z
zhou-liting125 已提交
200
**参数:**
L
laosan_ted 已提交
201

202 203 204 205 206
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
| object     | object          | 是    | -    | 参与注册的对象。只能声明方法,不能声明属性。    |
| name       | string          | 是    | -    | 注册对象的名称,与window中调用的对象名一致。 |
| methodList | Array\<string\> | 是    | -    | 参与注册的应用侧JavaScript对象的方法。  |
207
| controller | [WebController](#webcontroller) | 否    | -    | 控制器。    |
208

Z
zhou-liting125 已提交
209
**示例:**
L
laosan_ted 已提交
210

Z
zhou-liting125 已提交
211 212
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
213
  @Entry
L
update  
laosan_ted 已提交
214 215
  @Component
  struct WebComponent {
216
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
217 218 219 220 221 222 223 224
    testObj = {
      test: (data1, data2, data3) => {
        console.log("data1:" + data1);
        console.log("data2:" + data2);
        console.log("data3:" + data3);
        return "AceString";
      },
      toString: () => {
Z
zhou-liting125 已提交
225
        console.log('toString' + "interface instead.");
L
update  
laosan_ted 已提交
226 227 228 229
      }
    }
    build() {
      Column() {
230 231 232 233 234 235 236
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
          .javaScriptProxy({
            object: this.testObj,
            name: "objName",
            methodList: ["test", "toString"],
            controller: this.controller,
L
update  
laosan_ted 已提交
237 238 239 240 241 242
        })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
243 244 245 246 247 248
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

Z
zhou-liting125 已提交
249
**参数:**
L
laosan_ted 已提交
250

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

Z
zhou-liting125 已提交
255
**示例:**
L
laosan_ted 已提交
256

Z
zhou-liting125 已提交
257 258
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
259
  @Entry
L
update  
laosan_ted 已提交
260 261
  @Component
  struct WebComponent {
262
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
263 264
    build() {
      Column() {
265 266
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
L
update  
laosan_ted 已提交
267 268 269 270 271
      }
    }
  }
  ```

Z
zhou-liting125 已提交
272 273 274 275 276 277
### mixedMode

mixedMode(mixedMode: MixedMode)

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

Z
zhou-liting125 已提交
278
**参数:**
L
laosan_ted 已提交
279

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

Z
zhou-liting125 已提交
284
**示例:**
L
laosan_ted 已提交
285

Z
zhou-liting125 已提交
286 287
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
288
  @Entry
L
update  
laosan_ted 已提交
289 290
  @Component
  struct WebComponent {
291 292
    controller: WebController = new WebController();
    @State mode: MixedMode = MixedMode.All;
L
update  
laosan_ted 已提交
293 294
    build() {
      Column() {
295 296
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
297 298 299 300 301
      }
    }
  }
  ```

Z
zhou-liting125 已提交
302 303 304 305 306 307
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

Z
zhou-liting125 已提交
308
**参数:**
L
laosan_ted 已提交
309

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

Z
zhou-liting125 已提交
314
**示例:**
L
laosan_ted 已提交
315

Z
zhou-liting125 已提交
316 317
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
318
  @Entry
L
update  
laosan_ted 已提交
319 320
  @Component
  struct WebComponent {
321
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
322 323
    build() {
      Column() {
324 325
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
326 327 328 329 330
      }
    }
  }
  ```

Z
zhou-liting125 已提交
331 332 333 334 335 336
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

Z
zhou-liting125 已提交
337
**参数:**
L
laosan_ted 已提交
338

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

Z
zhou-liting125 已提交
343
**示例:**
L
laosan_ted 已提交
344

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

Z
zhou-liting125 已提交
360 361 362 363 364 365
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

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

Z
zhou-liting125 已提交
366
**参数:**
L
laosan_ted 已提交
367

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

Z
zhou-liting125 已提交
372
**示例:**
L
laosan_ted 已提交
373

Z
zhou-liting125 已提交
374 375
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
376
  @Entry
L
update  
laosan_ted 已提交
377 378
  @Component
  struct WebComponent {
379
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
380 381
    build() {
      Column() {
382 383
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
384 385 386 387 388
      }
    }
  }
  ```

Z
zhou-liting125 已提交
389 390 391 392 393 394
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

Z
zhou-liting125 已提交
395
**参数:**
L
laosan_ted 已提交
396

397 398
| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
399
| databaseAccess | boolean | 是    | false | 设置是否开启数据库存储API权限。 |
Z
zhou-liting125 已提交
400

L
laosan_ted 已提交
401
**示例:**
L
laosan_ted 已提交
402

Z
zhou-liting125 已提交
403 404
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
405
  @Entry
L
update  
laosan_ted 已提交
406 407
  @Component
  struct WebComponent {
408
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
409 410
    build() {
      Column() {
411 412
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
413 414 415 416 417
      }
    }
  }
  ```

L
laosan_ted 已提交
418 419 420 421 422 423 424
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

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

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

L
laosan_ted 已提交
426 427 428 429 430
| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
| geolocationAccess | boolean | 是    | true    | 设置是否开启获取地理位置权限。 |

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

L
laosan_ted 已提交
432 433 434 435 436
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
437
    controller: WebController = new WebController();
L
laosan_ted 已提交
438 439
    build() {
      Column() {
440 441
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
442 443 444 445 446
      }
    }
  }
  ```

L
laosan_ted 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
### mediaPlayGestureAccess

mediaPlayGestureAccess(access: boolean)

设置视频播放是否需要用户手动点击。

**参数:**

| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| access | boolean | 是    | true    | 设置视频播放是否需要用户手动点击。 |

**示例:**

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

Z
zhou-liting125 已提交
477 478 479 480 481 482
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
483
**参数:**
L
laosan_ted 已提交
484

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

Z
zhou-liting125 已提交
489
**示例:**
L
laosan_ted 已提交
490

Z
zhou-liting125 已提交
491 492
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
493
  @Entry
L
update  
laosan_ted 已提交
494 495
  @Component
  struct WebComponent {
496 497
    controller: WebController = new WebController();
    @State mode: CacheMode = CacheMode.None;
L
update  
laosan_ted 已提交
498 499
    build() {
      Column() {
500 501
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
502 503 504 505 506
      }
    }
  }
  ```

L
laosan_ted 已提交
507
### textZoomRatio
Z
zhou-liting125 已提交
508

L
laosan_ted 已提交
509
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
510 511 512

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

Z
zhou-liting125 已提交
513
**参数:**
L
laosan_ted 已提交
514

515 516
| 参数名          | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------------ | ------ | ---- | ---- | --------------- |
517
| textZoomRatio | number | 是    | 100 | 要设置的页面的文本缩放百分比。 |
Z
zhou-liting125 已提交
518

Z
zhou-liting125 已提交
519
**示例:**
L
laosan_ted 已提交
520

Z
zhou-liting125 已提交
521 522
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
523
  @Entry
L
update  
laosan_ted 已提交
524 525
  @Component
  struct WebComponent {
526 527
    controller: WebController = new WebController();
    @State atio: number = 150;
L
update  
laosan_ted 已提交
528 529
    build() {
      Column() {
530 531
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
532 533 534 535 536
      }
    }
  }
  ```

Z
zhou-liting125 已提交
537 538 539 540 541 542
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
543
**参数:**
L
laosan_ted 已提交
544

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

Z
zhou-liting125 已提交
549
**示例:**
L
laosan_ted 已提交
550

Z
zhou-liting125 已提交
551 552
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
553
  @Entry
L
update  
laosan_ted 已提交
554 555
  @Component
  struct WebComponent {
556
    controller: WebController = new WebController();
L
laosan_ted 已提交
557
    @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 已提交
558 559
    build() {
      Column() {
560 561
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
562 563 564 565 566
      }
    }
  }
  ```

H
geshi  
HelloCrease 已提交
567
>  **说明:**
Z
zengyawen 已提交
568
>
569
>  通用属性仅支持[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 已提交
570 571 572

## 事件

L
liwenzhen 已提交
573
不支持通用事件。
Z
zengyawen 已提交
574

L
update  
laosan_ted 已提交
575 576 577 578 579 580
### onAlert

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

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

Z
zhou-liting125 已提交
581
**参数:**
L
laosan_ted 已提交
582

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

Z
zhou-liting125 已提交
589
**返回值:**
L
laosan_ted 已提交
590

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

Z
zhou-liting125 已提交
595
**示例:**
L
laosan_ted 已提交
596

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

### onBeforeUnload

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

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

Z
zhou-liting125 已提交
639
**参数:**
L
laosan_ted 已提交
640

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

Z
zhou-liting125 已提交
647
**返回值:**
L
laosan_ted 已提交
648

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

Z
zhou-liting125 已提交
653
**示例:**
L
laosan_ted 已提交
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
          .onBeforeUnload((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
L
laosan_ted 已提交
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687
            AlertDialog.show({
              title: 'onBeforeUnload',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
laosan_ted 已提交
688 689
          })
      }
L
update  
laosan_ted 已提交
690 691 692 693 694 695 696 697 698 699
    }
  }
  ```

### onConfirm

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

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

Z
zhou-liting125 已提交
700
**参数:**
L
laosan_ted 已提交
701

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

Z
zhou-liting125 已提交
708
**返回值:**
L
laosan_ted 已提交
709

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

Z
zhou-liting125 已提交
714
**示例:**
L
laosan_ted 已提交
715

Z
zhou-liting125 已提交
716 717
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
718
  @Entry
L
update  
laosan_ted 已提交
719 720
  @Component
  struct WebComponent {
L
laosan_ted 已提交
721 722
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
723 724
    build() {
      Column() {
Z
zhou-liting125 已提交
725
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
726 727 728 729 730
          .onConfirm((event) => {
            console.log("event.url:" + event.url);
            console.log("event.message:" + event.message);
            console.log("event.result:" + event.result);
            AlertDialog.show({
L
laosan_ted 已提交
731
              title: 'onConfirm',
L
laosan_ted 已提交
732
              message: 'text',
L
laosan_ted 已提交
733 734 735 736 737 738 739 740
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
741 742 743 744 745 746 747 748 749
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
L
update  
laosan_ted 已提交
750
          })
L
laosan_ted 已提交
751
      }
L
update  
laosan_ted 已提交
752 753 754 755 756 757 758 759
    }
  }
  ```

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

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

Z
zhou-liting125 已提交
760
**参数:**
L
laosan_ted 已提交
761

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

Z
zhou-liting125 已提交
768
**返回值:**
L
laosan_ted 已提交
769

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

Z
zhou-liting125 已提交
774
**示例:**
L
laosan_ted 已提交
775

Z
zhou-liting125 已提交
776 777
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
778
  @Entry
L
update  
laosan_ted 已提交
779 780
  @Component
  struct WebComponent {
781
    controller: WebController = new WebController();
L
laosan_ted 已提交
782
  
L
update  
laosan_ted 已提交
783 784
    build() {
      Column() {
785
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
          .onPrompt((event) => {
            console.log("url:" + event.url);
            console.log("message:" + event.message);
            console.log("value:" + event.value);
            AlertDialog.show({
              title: 'onPrompt',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
            return true;
          })
      }
L
update  
laosan_ted 已提交
812 813 814 815 816 817 818 819 820 821
    }
  }
  ```

### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
822
**参数:**
L
laosan_ted 已提交
823

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

Z
zhou-liting125 已提交
828
**返回值:**
L
laosan_ted 已提交
829

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

Z
zhou-liting125 已提交
834
**示例:**
L
laosan_ted 已提交
835

Z
zhou-liting125 已提交
836 837
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
838
  @Entry
L
update  
laosan_ted 已提交
839 840
  @Component
  struct WebComponent {
L
laosan_ted 已提交
841 842
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
843 844
    build() {
      Column() {
Z
zhou-liting125 已提交
845
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
846 847 848 849 850 851 852 853
          .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 已提交
854 855 856 857 858 859 860 861
    }
  }
  ```

### onDownloadStart

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

Z
zhou-liting125 已提交
862
**参数:**
L
laosan_ted 已提交
863

864 865 866 867 868 869
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
870

Z
zhou-liting125 已提交
871
**示例:**
L
laosan_ted 已提交
872

Z
zhou-liting125 已提交
873 874
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
875
  @Entry
L
update  
laosan_ted 已提交
876 877
  @Component
  struct WebComponent {
L
laosan_ted 已提交
878 879
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
880 881
    build() {
      Column() {
Z
zhou-liting125 已提交
882
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
883 884 885 886 887 888 889 890
          .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 已提交
891 892 893 894 895 896 897 898 899 900
    }
  }
  ```

### onErrorReceive

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

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

Z
zhou-liting125 已提交
901
**参数:**
L
laosan_ted 已提交
902

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

Z
zhou-liting125 已提交
908
**示例:**
L
laosan_ted 已提交
909

Z
zhou-liting125 已提交
910 911
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
912
  @Entry
L
update  
laosan_ted 已提交
913 914
  @Component
  struct WebComponent {
L
laosan_ted 已提交
915 916
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
917 918
    build() {
      Column() {
Z
zhou-liting125 已提交
919
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
          .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 已提交
935 936 937 938 939 940 941 942 943 944
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
945
**参数:**
L
laosan_ted 已提交
946

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

Z
zhou-liting125 已提交
952
**示例:**
L
laosan_ted 已提交
953

Z
zhou-liting125 已提交
954 955
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
956
  @Entry
L
update  
laosan_ted 已提交
957 958
  @Component
  struct WebComponent {
L
laosan_ted 已提交
959 960
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
961 962
    build() {
      Column() {
Z
zhou-liting125 已提交
963
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985
          .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 已提交
986 987 988 989 990 991 992 993
    }
  }
  ```

### onPageBegin

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

994

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

Z
zhou-liting125 已提交
997
**参数:**
L
laosan_ted 已提交
998

999 1000 1001
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1002

Z
zhou-liting125 已提交
1003
**示例:**
L
laosan_ted 已提交
1004

Z
zhou-liting125 已提交
1005 1006
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1007
  @Entry
L
update  
laosan_ted 已提交
1008 1009
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1010 1011
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1012 1013
    build() {
      Column() {
Z
zhou-liting125 已提交
1014
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1015 1016 1017 1018
          .onPageBegin((event) => {
            console.log('url:' + event.url);
          })
      }
L
update  
laosan_ted 已提交
1019 1020 1021 1022 1023 1024 1025 1026
    }
  }
  ```

### onPageEnd

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

1027

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

Z
zhou-liting125 已提交
1030
**参数:**
L
laosan_ted 已提交
1031

1032 1033 1034
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1035

Z
zhou-liting125 已提交
1036
**示例:**
L
laosan_ted 已提交
1037

Z
zhou-liting125 已提交
1038 1039
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1040
  @Entry
L
update  
laosan_ted 已提交
1041 1042
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1043 1044
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1045 1046
    build() {
      Column() {
Z
zhou-liting125 已提交
1047
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1048 1049 1050 1051
          .onPageEnd((event) => {
            console.log('url:' + event.url);
          })
      }
L
update  
laosan_ted 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    }
  }
  ```

### onProgressChange

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

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

Z
zhou-liting125 已提交
1062
**参数:**
L
laosan_ted 已提交
1063

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

L
laosan_ted 已提交
1068 1069
**示例:**

Z
zhou-liting125 已提交
1070 1071
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1072
  @Entry
L
update  
laosan_ted 已提交
1073 1074
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1075 1076
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1077 1078
    build() {
      Column() {
Z
zhou-liting125 已提交
1079
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1080 1081 1082 1083
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
    }
  }
  ```

### onTitleReceive

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

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

Z
zhou-liting125 已提交
1094
**参数:**
L
laosan_ted 已提交
1095

1096 1097 1098
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
1099

L
laosan_ted 已提交
1100 1101
**示例:**

Z
zhou-liting125 已提交
1102 1103
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1104
  @Entry
L
update  
laosan_ted 已提交
1105 1106
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1107 1108
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1109 1110
    build() {
      Column() {
Z
zhou-liting125 已提交
1111
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1112 1113 1114 1115
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
    }
  }
  ```

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
1126
**参数:**
L
laosan_ted 已提交
1127

1128 1129 1130
| 参数名         | 参数类型    | 参数描述                              |
| ----------- | ------- | --------------------------------- |
| url         | string  | 访问的url。                           |
L
laosan_ted 已提交
1131
| isRefreshed | boolean | true表示该页面是被重新加载的(调用[refresh](#refresh)接口),false表示该页面是新加载的。 |
L
update  
laosan_ted 已提交
1132

L
laosan_ted 已提交
1133 1134
**示例:**

Z
zhou-liting125 已提交
1135 1136
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1137
  @Entry
L
update  
laosan_ted 已提交
1138 1139
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1140 1141
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1142 1143
    build() {
      Column() {
Z
zhou-liting125 已提交
1144
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1145
          .onRefreshAccessedHistory((event) => {
L
laosan_ted 已提交
1146
            console.log('url:' + event.url + ' isReload:' + event.isRefreshed);
L
laosan_ted 已提交
1147 1148
          })
      }
L
update  
laosan_ted 已提交
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
    }
  }
  ```

### onRenderExited

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

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

Z
zhou-liting125 已提交
1159
**参数:**
L
laosan_ted 已提交
1160

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

L
laosan_ted 已提交
1165 1166
**示例:**

Z
zhou-liting125 已提交
1167 1168
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1169
  @Entry
L
update  
laosan_ted 已提交
1170 1171
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1172 1173
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1174 1175
    build() {
      Column() {
L
laosan_ted 已提交
1176 1177 1178 1179 1180
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
            console.log('reason:' + event.renderExitReason);
          })
      }
L
update  
laosan_ted 已提交
1181 1182 1183 1184 1185 1186
    }
  }
  ```

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

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

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

Z
zhou-liting125 已提交
1191
**参数:**
L
laosan_ted 已提交
1192

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

L
laosan_ted 已提交
1198 1199 1200 1201 1202 1203
**返回值:**

| 类型      | 说明                                  |
| ------- | ----------------------------------- |
| boolean | 当返回值为true时,用户可以调用系统提供的弹窗能力。当返回值为false时,触发Web默认弹窗。 |

L
laosan_ted 已提交
1204 1205
**示例:**

Z
zhou-liting125 已提交
1206 1207
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1208
  @Entry
L
update  
laosan_ted 已提交
1209 1210
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1211 1212
    controller: WebController = new WebController();

L
update  
laosan_ted 已提交
1213 1214
    build() {
      Column() {
Z
zhou-liting125 已提交
1215
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
          .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 已提交
1232
              }
L
laosan_ted 已提交
1233 1234
            })
            return true;
L
update  
laosan_ted 已提交
1235
          })
L
laosan_ted 已提交
1236
      }
L
update  
laosan_ted 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
    }
  }
  ```

### onUrlLoadIntercept

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

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

Z
zhou-liting125 已提交
1247
**参数:**
L
laosan_ted 已提交
1248

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

Z
zhou-liting125 已提交
1253
**返回值:**
L
laosan_ted 已提交
1254

1255 1256 1257
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
1258

L
laosan_ted 已提交
1259 1260
**示例:**

Z
zhou-liting125 已提交
1261 1262
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1263
  @Entry
L
update  
laosan_ted 已提交
1264 1265
  @Component
  struct WebComponent {
L
laosan_ted 已提交
1266 1267
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
1268 1269
    build() {
      Column() {
Z
zhou-liting125 已提交
1270
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1271 1272 1273 1274 1275
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
            return true;
          })
      }
L
update  
laosan_ted 已提交
1276 1277 1278 1279 1280 1281
    }
  }
  ```

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

L
laosan_ted 已提交
1282
onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)
L
update  
laosan_ted 已提交
1283 1284 1285

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

Z
zhou-liting125 已提交
1286
**参数:**
L
laosan_ted 已提交
1287

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

Z
zhou-liting125 已提交
1292
**返回值:**
L
laosan_ted 已提交
1293

1294 1295 1296
| 类型                                       | 说明                          |
| ---------------------------------------- | --------------------------- |
| [WebResourceResponse](#webresourceresponse) | 返回响应数据为空表示按原来方式加载,否则加载响应数据。 |
L
update  
laosan_ted 已提交
1297

L
laosan_ted 已提交
1298 1299
**示例:**

Z
zhou-liting125 已提交
1300 1301
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1302
  @Entry
L
update  
laosan_ted 已提交
1303 1304
  @Component
  struct WebComponent {
1305
    controller: WebController = new WebController();
L
laosan_ted 已提交
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
    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 已提交
1317 1318
    build() {
      Column() {
1319
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
          .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 已提交
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
1351
**参数:**
L
laosan_ted 已提交
1352

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

Z
zhou-liting125 已提交
1359
**返回值:**
L
laosan_ted 已提交
1360

1361 1362 1363
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
1364

L
laosan_ted 已提交
1365 1366
**示例:**

Z
zhou-liting125 已提交
1367 1368
  ```ts
  // xxx.ets
L
laosan_ted 已提交
1369
  import web_webview from '@ohos.web.webview'
Z
zhou-liting125 已提交
1370
  @Entry
L
update  
laosan_ted 已提交
1371 1372
  @Component
  struct WebComponent {
1373 1374
    controller: WebController = new WebController();
    httpAuth: boolean = false;
L
laosan_ted 已提交
1375
  
L
update  
laosan_ted 已提交
1376 1377
    build() {
      Column() {
1378 1379 1380
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
1381
              title: 'onHttpAuthRequest',
1382
              message: 'text',
L
laosan_ted 已提交
1383 1384 1385 1386 1387 1388 1389 1390
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.handler.cancel();
                }
              },
              secondaryButton: {
                value: 'ok',
1391 1392 1393
                action: () => {
                  this.httpAuth = event.handler.isHttpAuthInfoSaved();
                  if (this.httpAuth == false) {
L
laosan_ted 已提交
1394
                    web_webview.WebDataBase.saveHttpAuthCredentials(
1395 1396 1397 1398 1399 1400 1401
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
                    event.handler.cancel();
                  }
L
update  
laosan_ted 已提交
1402
                }
1403 1404 1405
              },
              cancel: () => {
                event.handler.cancel();
L
update  
laosan_ted 已提交
1406
              }
1407 1408
            })
            return true;
L
update  
laosan_ted 已提交
1409
          })
Y
yu-shihao4 已提交
1410
      }
L
update  
laosan_ted 已提交
1411 1412 1413
    }
  }
  ```
1414 1415
### onSslErrorEventReceive<sup>9+</sup>

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

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

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

1422 1423 1424
| 参数名     | 参数类型                           | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| handler | [SslErrorHandler](#sslerrorhandler9) | 通知Web组件用户操作行为。   |
I
bugfix  
i-am-a-little-bird 已提交
1425 1426 1427
| error   | [SslError](#sslerror枚举说明)          | 错误码。 |

**示例:**
1428 1429 1430

  ```ts
  // xxx.ets
I
bugfix  
i-am-a-little-bird 已提交
1431
  import web_webview from '@ohos.web.webview'
1432 1433 1434 1435
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
I
bugfix  
i-am-a-little-bird 已提交
1436
  
1437 1438 1439
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
I
bugfix  
i-am-a-little-bird 已提交
1440
          .onSslErrorEventReceive((event) => {
1441
            AlertDialog.show({
I
bugfix  
i-am-a-little-bird 已提交
1442
              title: 'onSslErrorEventReceive',
1443
              message: 'text',
I
bugfix  
i-am-a-little-bird 已提交
1444 1445
              primaryButton: {
                value: 'confirm',
1446
                action: () => {
I
bugfix  
i-am-a-little-bird 已提交
1447 1448 1449 1450 1451 1452 1453
                  event.handler.handleConfirm();
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
                  event.handler.handleCancel();
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
                }
              },
              cancel: () => {
                event.handler.handleCancel();
              }
            })
            return true;
          })
      }
    }
  }
  ```

I
i-am-a-little-bird 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
### onClientAuthenticationRequest<sup>9+</sup>

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

通知发生SSL错误。

**参数:**

| 参数名   | 参数类型                             | 参数描述             |
| ------- | ------------------------------------ | ----------------    |
| handler | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。|
| host    | string          | 请求证书的服务器的主机名。 |
| port    | number          | 请求证书的服务器的端口号。 |
| keyTypes| Array<string>   | 可接受的非对称秘钥类型。   |
| issuers | Array<string>   | 与私钥配证书可接受的颁发者。|

  **示例:**
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'onClientAuthenticationRequest',
              message: 'text',
              primaryButton: {
                value: 'confirm',
                action: () => {
I
bugfix  
i-am-a-little-bird 已提交
1502
                  event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem");
I
i-am-a-little-bird 已提交
1503 1504 1505 1506 1507
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
I
bugfix  
i-am-a-little-bird 已提交
1508
                  event.handler.cancel();
I
i-am-a-little-bird 已提交
1509 1510 1511
                }
              },
              cancel: () => {
I
bugfix  
i-am-a-little-bird 已提交
1512
                event.handler.ignore();
I
i-am-a-little-bird 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521
              }
            })
            return true;
          })
      }
    }
  }
  ```

1522 1523 1524 1525 1526 1527 1528
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

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

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

L
laosan_ted 已提交
1534 1535
**示例:**

1536 1537 1538 1539 1540
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1541
    controller: WebController = new WebController();
1542 1543
    build() {
      Column() {
1544 1545 1546 1547 1548
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
1549 1550 1551 1552 1553 1554 1555
              primaryButton: {
                value: 'deny',
                action: () => {
                  event.request.deny();
                }
              },
              secondaryButton: {
1556 1557 1558 1559 1560 1561
                value: 'onConfirm',
                action: () => {
                  event.request.grant(event.request.getAccessibleResource());
                }
              },
              cancel: () => {
L
laosan_ted 已提交
1562
                event.request.deny();
1563
              }
1564
            })
1565
          })
Y
yu-shihao4 已提交
1566
      }
1567 1568 1569
    }
  }
  ```
1570

1571 1572 1573 1574 1575 1576 1577
### onContextMenuShow<sup>9+</sup>

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

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

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

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

Y
yu-shihao4 已提交
1584 1585
**返回值:**

Y
yu-shihao4 已提交
1586 1587 1588 1589
| 类型     | 说明                   |
| ------ | -------------------- |
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
1590
**示例:**
Y
yu-shihao4 已提交
1591

1592 1593 1594 1595 1596
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1597
    controller: WebController = new WebController();
1598 1599
    build() {
      Column() {
1600
        Web({ src: 'www.example.com', controller: this.controller })
1601 1602 1603
        .onContextMenuShow((event) => {
            console.info("x coord = " + event.param.x());
            console.info("link url = " + event.param.getLinkUrl());
L
laosan_ted 已提交
1604
            return false;
1605 1606
        })
      }
1607 1608 1609
    }
  }
  ```
1610

L
laosan_ted 已提交
1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
### onScroll<sup>9+</sup>

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

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

**参数:**

| 参数名     | 参数类型                                 | 参数描述             |
| ------- | ------------------------------------ | ---------------- |
| xOffset   | number   | 水平滚动条滚动所在位置。 |
| yOffset  | number | 竖直滚动条滚动所在位置。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .onScroll((event) => {
            console.info("x = " + event.xOffset);
            console.info("y = " + event.yOffset);
        })
      }
    }
  }
  ```

1644 1645 1646 1647
### onGeolocationShow

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

1648
通知用户收到地理位置信息获取请求。
1649 1650 1651 1652 1653 1654 1655 1656 1657

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| origin      | string                          | 指定源的字符串索引。     |
| geolocation | [JsGeolocation](#jsgeolocation) | 通知Web组件用户操作行为。|

**示例:**
1658

1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller:WebController = new WebController();
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationShow((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
                event.geolocation.invoke(event.origin, true, true);
              }
            },
            cancel: () => {
              event.geolocation.invoke(event.origin, false, true);
            }
          })
        })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
1689
## ConsoleMessage
1690

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

Z
zhou-liting125 已提交
1693
### getLineNumber
1694

Z
zhou-liting125 已提交
1695 1696 1697 1698
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
1699
**返回值:** 
L
laosan_ted 已提交
1700

1701 1702 1703
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
1704 1705 1706 1707 1708 1709 1710

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
1711
**返回值:** 
L
laosan_ted 已提交
1712

1713 1714 1715
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
1716 1717 1718 1719

### getMessageLevel

getMessageLevel(): MessageLevel
1720

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

Z
zhou-liting125 已提交
1723
**返回值:** 
L
laosan_ted 已提交
1724

1725 1726 1727
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
1728 1729 1730 1731 1732 1733 1734

### getSourceId

getSourceId(): string

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

Z
zhou-liting125 已提交
1735
**返回值:** 
L
laosan_ted 已提交
1736

1737 1738 1739
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
1740 1741

## JsResult
L
lixingchi1 已提交
1742

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

Z
zhou-liting125 已提交
1745 1746 1747
### handleCancel

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

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

Z
zhou-liting125 已提交
1751
### handleConfirm
L
add web  
liujinwei 已提交
1752

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

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

Z
zhou-liting125 已提交
1757 1758 1759 1760 1761 1762
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
1763
**参数:**
L
laosan_ted 已提交
1764

1765 1766 1767
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
1768 1769 1770

## WebResourceError

L
update  
laosan_ted 已提交
1771
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1772 1773 1774 1775 1776 1777 1778

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
1779
**返回值:** 
L
laosan_ted 已提交
1780

1781 1782 1783
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
1784 1785 1786 1787 1788 1789 1790

### getErrorInfo

getErrorInfo(): string

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

Z
zhou-liting125 已提交
1791
**返回值:** 
L
laosan_ted 已提交
1792

1793 1794 1795
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
1796 1797 1798

## WebResourceRequest

L
update  
laosan_ted 已提交
1799
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1800 1801 1802 1803 1804 1805 1806

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

Z
zhou-liting125 已提交
1807
**返回值:** 
L
laosan_ted 已提交
1808

1809 1810 1811
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
1812 1813 1814 1815 1816 1817 1818

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

Z
zhou-liting125 已提交
1819
**返回值:** 
L
laosan_ted 已提交
1820

1821 1822 1823
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
1824 1825 1826 1827 1828 1829 1830

### isMainFrame

isMainFrame(): boolean

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

Z
zhou-liting125 已提交
1831
**返回值:** 
L
laosan_ted 已提交
1832

1833 1834 1835
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
1836 1837 1838 1839 1840 1841 1842

### isRedirect

isRedirect(): boolean

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

Z
zhou-liting125 已提交
1843
**返回值:** 
L
laosan_ted 已提交
1844

1845 1846 1847
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
1848 1849 1850 1851 1852 1853 1854

### isRequestGesture

isRequestGesture(): boolean

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

Z
zhou-liting125 已提交
1855
**返回值:** 
L
laosan_ted 已提交
1856

1857 1858 1859
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
1860 1861

## Header
L
liwenzhen 已提交
1862 1863 1864

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

1865 1866 1867 1868
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
1869

L
add web  
liujinwei 已提交
1870

Z
zhou-liting125 已提交
1871
## WebResourceResponse
L
add web  
liujinwei 已提交
1872

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

Z
zhou-liting125 已提交
1875
### getReasonMessage
T
Ted 已提交
1876

Z
zhou-liting125 已提交
1877
getReasonMessage(): string
T
Ted 已提交
1878

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

Z
zhou-liting125 已提交
1881
**返回值:** 
L
laosan_ted 已提交
1882

1883 1884 1885
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
1886

Z
zhou-liting125 已提交
1887
### getResponseCode
T
Ted 已提交
1888

Z
zhou-liting125 已提交
1889 1890 1891 1892
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
1893
**返回值:** 
L
laosan_ted 已提交
1894

1895 1896 1897
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
1898 1899 1900 1901 1902 1903 1904

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
1905
**返回值:** 
L
laosan_ted 已提交
1906

1907 1908 1909
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
1910 1911 1912 1913 1914 1915 1916

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
1917
**返回值:** 
L
laosan_ted 已提交
1918

1919 1920 1921
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
1922 1923 1924 1925 1926 1927 1928

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
1929
**返回值:** 
L
laosan_ted 已提交
1930

1931 1932 1933
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
1934 1935 1936 1937 1938 1939 1940

### getResponseMimeType

getResponseMimeType(): string

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

Z
zhou-liting125 已提交
1941
**返回值:** 
L
laosan_ted 已提交
1942

1943 1944 1945
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1946 1947 1948 1949 1950 1951 1952

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

setResponseData(data: string)

设置资源响应数据。

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

1955 1956 1957
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
1958 1959 1960 1961 1962 1963 1964

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

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

1967 1968 1969
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
1970 1971 1972 1973 1974 1975 1976

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
1977
**参数:**
L
laosan_ted 已提交
1978

1979 1980 1981
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1982 1983 1984 1985 1986 1987 1988

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
1989
**参数:**
L
laosan_ted 已提交
1990

1991 1992 1993
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
1994 1995 1996 1997 1998 1999 2000

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
2001
**参数:**
L
laosan_ted 已提交
2002

2003 2004 2005
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
2006 2007 2008 2009 2010 2011 2012

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
2013
**参数:**
L
laosan_ted 已提交
2014

2015 2016 2017
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
2018 2019

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

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

Z
zhou-liting125 已提交
2023
### handleFileList<sup>9+</sup>
2024

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

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

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

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

Z
zhou-liting125 已提交
2035 2036
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
2037
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
2038 2039 2040 2041 2042 2043 2044

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

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
2045
**返回值:** 
L
laosan_ted 已提交
2046

2047 2048 2049
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
2050 2051 2052 2053 2054 2055 2056

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

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
2057
**返回值:** 
L
laosan_ted 已提交
2058

2059 2060 2061
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
2062 2063 2064 2065 2066 2067 2068

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
2069
**返回值:** 
L
laosan_ted 已提交
2070

2071 2072 2073
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
2074 2075 2076 2077 2078 2079 2080

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

isCapture(): boolean

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

Z
zhou-liting125 已提交
2081
**返回值:** 
L
laosan_ted 已提交
2082

2083 2084 2085
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
2086 2087 2088

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

Z
zhou-liting125 已提交
2089
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
2090 2091 2092 2093 2094 2095 2096 2097

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

cancel(): void

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

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

2099 2100 2101 2102
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
2103
**参数:**
2104

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

Z
zhou-liting125 已提交
2110
**返回值:**
L
laosan_ted 已提交
2111

2112 2113 2114
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
2115 2116 2117 2118 2119 2120 2121

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

isHttpAuthInfoSaved(): boolean

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

Z
zhou-liting125 已提交
2122
**返回值:**
L
laosan_ted 已提交
2123

2124 2125 2126
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
2127

2128 2129
## SslErrorHandler<sup>9+</sup>

I
i-am-a-little-bird 已提交
2130
Web组件返回的SSL错误通知事件用户处理功能对象。示例代码参考[onSslErrorEventReceive事件](#onsslerrorEventreceive9)
2131 2132 2133 2134 2135

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

handleCancel(): void

I
i-am-a-little-bird 已提交
2136
通知Web组件取消此请求。
2137 2138 2139 2140 2141

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

handleConfirm(): void

I
i-am-a-little-bird 已提交
2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160
通知Web组件继续使用SSL证书。

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

Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onClientAuthenticationRequest9)

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

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

通知Web组件使用指定的私钥和客户端证书链。
**参数:**

| 参数名         | 参数类型 | 必填  | 默认值  | 参数描述        |
| --------      | ------   | ----  | ----   | ----------     |
| priKeyFile    | string   | 是    | -      | 存放私钥的文件,包含路径和文件名。|
| certChainFile | string   | 是    | -      | 存放证书链的文件,包含路径和文件名。|

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

I
i-am-a-little-bird 已提交
2162 2163 2164 2165 2166 2167 2168 2169 2170
cancel(): void

通知Web组件取消此请求,同时,保存用户策略,相同host和port的服务器请求采用相同策略,不重复上报客户端证书请求事件。

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

ignore(): void

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

2172 2173
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
2174
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

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

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
2198
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209

**返回值:**

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

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

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

X
xiongjun_gitee 已提交
2210
对网页访问的给定权限进行授权。
2211 2212 2213 2214 2215 2216 2217

**参数:**

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

2218 2219
## WebContextMenuParam<sup>9+</sup>

Y
yu-shihao4 已提交
2220
实现长按页面元素跳出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231

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

x(): number

弹出菜单的x坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2232
| number | 显示正常返回非负整数,否则返回-1。 |
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243

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

y(): number

弹出菜单的y坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2244
| number | 显示正常返回非负整数,否则返回-1。 |
2245 2246 2247 2248 2249

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

getLinkUrl(): string

Y
yu-shihao4 已提交
2250
获取链接地址。
2251 2252 2253 2254 2255

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2256
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
2257 2258 2259 2260 2261

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

getUnfilterendLinkUrl(): string

Y
yu-shihao4 已提交
2262
获取链接地址。
2263 2264 2265 2266 2267

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2268
| string | 如果长按位置是链接,返回原始的url链接。 |
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295

### 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 已提交
2296
实现长按页面元素跳出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309

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

closeContextMenu(): void

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

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

copyImage(): void

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

2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327
## JsGeolocation

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

### invoke

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

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

**参数:**

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

Z
zengyawen 已提交
2328 2329
## WebController

L
liwenzhen 已提交
2330
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
2331 2332 2333 2334 2335 2336 2337

### 创建对象

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

L
laosan_ted 已提交
2338 2339 2340 2341 2342 2343 2344
### requestFocus

requestFocus()

使当前web页面获取焦点。

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

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

L
lixingchi1 已提交
2365 2366 2367 2368
### accessBackward

accessBackward(): boolean

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

Z
zhou-liting125 已提交
2371
**返回值:**
L
laosan_ted 已提交
2372

2373 2374 2375
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2376

Z
zhou-liting125 已提交
2377
**示例:**
L
laosan_ted 已提交
2378

Z
zhou-liting125 已提交
2379 2380
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2381
  @Entry
L
update  
laosan_ted 已提交
2382 2383
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2384 2385
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2386 2387 2388
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
2389 2390 2391 2392
          .onClick(() => {
            let result = this.controller.accessBackward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2393
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2394
      }
L
update  
laosan_ted 已提交
2395 2396 2397 2398
    }
  }
  ```

L
lixingchi1 已提交
2399 2400 2401 2402
### accessForward

accessForward(): boolean

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

Z
zhou-liting125 已提交
2405
**返回值:**
L
laosan_ted 已提交
2406

2407 2408 2409
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2410

Z
zhou-liting125 已提交
2411
**示例:**
L
laosan_ted 已提交
2412

Z
zhou-liting125 已提交
2413 2414
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2415
  @Entry
L
update  
laosan_ted 已提交
2416 2417
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2418 2419
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2420 2421 2422
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
2423 2424 2425 2426
          .onClick(() => {
            let result = this.controller.accessForward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2427
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2428
      }
L
update  
laosan_ted 已提交
2429 2430 2431 2432
    }
  }
  ```

L
lixingchi1 已提交
2433
### accessStep
Z
zengyawen 已提交
2434

L
lixingchi1 已提交
2435
accessStep(step: number): boolean
Z
zengyawen 已提交
2436

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

Z
zhou-liting125 已提交
2439
**参数:**
Z
zengyawen 已提交
2440

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

Z
zhou-liting125 已提交
2445
**返回值:**
L
laosan_ted 已提交
2446

2447 2448 2449
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
2450

Z
zhou-liting125 已提交
2451
**示例:**
L
laosan_ted 已提交
2452

Z
zhou-liting125 已提交
2453 2454
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2455
  @Entry
L
update  
laosan_ted 已提交
2456 2457
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2458
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2459
    @State steps: number = 2;
L
laosan_ted 已提交
2460
  
L
update  
laosan_ted 已提交
2461 2462 2463
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
2464 2465 2466 2467
          .onClick(() => {
            let result = this.controller.accessStep(this.steps);
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2468
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2469
      }
L
update  
laosan_ted 已提交
2470 2471 2472 2473
    }
  }
  ```

L
lixingchi1 已提交
2474 2475
### backward

L
update  
laosan_ted 已提交
2476
backward(): void
L
lixingchi1 已提交
2477

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

Z
zhou-liting125 已提交
2480
**示例:**
L
laosan_ted 已提交
2481

Z
zhou-liting125 已提交
2482 2483
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2484
  @Entry
L
update  
laosan_ted 已提交
2485 2486
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2487 2488
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2489 2490 2491
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
2492 2493 2494
          .onClick(() => {
            this.controller.backward();
          })
Z
zhou-liting125 已提交
2495
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2496
      }
L
update  
laosan_ted 已提交
2497 2498 2499
    }
  }
  ```
L
lixingchi1 已提交
2500 2501 2502

### forward

L
update  
laosan_ted 已提交
2503
forward(): void
L
lixingchi1 已提交
2504

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

Z
zhou-liting125 已提交
2507
**示例:**
L
laosan_ted 已提交
2508

Z
zhou-liting125 已提交
2509 2510
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2511
  @Entry
L
update  
laosan_ted 已提交
2512 2513
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2514 2515
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2516 2517 2518
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
2519 2520 2521
          .onClick(() => {
            this.controller.forward();
          })
Z
zhou-liting125 已提交
2522
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2523
      }
L
update  
laosan_ted 已提交
2524 2525 2526 2527
    }
  }
  ```

2528 2529 2530 2531 2532 2533
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

Z
zhou-liting125 已提交
2534
**参数:**
L
laosan_ted 已提交
2535

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

Z
zhou-liting125 已提交
2540
**示例:**
L
laosan_ted 已提交
2541

Z
zhou-liting125 已提交
2542 2543
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2544
  @Entry
L
update  
laosan_ted 已提交
2545 2546
  @Component
  struct WebComponent {
2547
    controller: WebController = new WebController();
L
laosan_ted 已提交
2548 2549
    @State step: number = -2;
  
L
update  
laosan_ted 已提交
2550 2551 2552
    build() {
      Column() {
        Button('backOrForward')
L
laosan_ted 已提交
2553 2554 2555
          .onClick(() => {
            this.controller.backOrForward(this.step);
          })
2556
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2557
      }
L
update  
laosan_ted 已提交
2558 2559 2560 2561 2562 2563 2564 2565
    }
  }
  ```

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

Z
zhou-liting125 已提交
2568
**参数:**
L
laosan_ted 已提交
2569

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

Z
zhou-liting125 已提交
2574
**示例:**
L
laosan_ted 已提交
2575

Z
zhou-liting125 已提交
2576 2577
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2578
  @Entry
L
update  
laosan_ted 已提交
2579 2580
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2581
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2582
    @State name: string = 'Object';
L
laosan_ted 已提交
2583
  
L
update  
laosan_ted 已提交
2584 2585 2586
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
2587 2588 2589
          .onClick(() => {
            this.controller.deleteJavaScriptRegister(this.name);
          })
Z
zhou-liting125 已提交
2590
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2591
      }
L
update  
laosan_ted 已提交
2592 2593 2594 2595
    }
  }
  ```

L
lixingchi1 已提交
2596 2597 2598 2599
### getHitTest

getHitTest(): HitTestType

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

Z
zhou-liting125 已提交
2602
**返回值:**
L
laosan_ted 已提交
2603

2604 2605 2606
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
2607

Z
zhou-liting125 已提交
2608
**示例:**
L
laosan_ted 已提交
2609

Z
zhou-liting125 已提交
2610 2611
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2612
  @Entry
L
update  
laosan_ted 已提交
2613 2614
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2615 2616
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2617 2618 2619
    build() {
      Column() {
        Button('getHitTest')
L
laosan_ted 已提交
2620 2621 2622 2623
          .onClick(() => {
            let hitType = this.controller.getHitTest();
            console.log("hitType: " + hitType);
          })
Z
zhou-liting125 已提交
2624
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2625
      }
L
update  
laosan_ted 已提交
2626 2627 2628 2629
    }
  }
  ```

2630 2631 2632 2633 2634
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

Z
zhou-liting125 已提交
2635
**返回值:**
L
laosan_ted 已提交
2636

2637 2638 2639
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
2640

Z
zhou-liting125 已提交
2641
**示例:**
L
laosan_ted 已提交
2642

Z
zhou-liting125 已提交
2643 2644
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2645
  @Entry
L
update  
laosan_ted 已提交
2646 2647
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2648 2649
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2650 2651 2652
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
2653 2654 2655 2656 2657
          .onClick(() => {
            let hitValue = this.controller.getHitTestValue();
            console.log("hitType: " + hitValue.getType());
            console.log("extra: " + hitValue.getExtra());
          })
Z
zhou-liting125 已提交
2658
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2659
      }
L
update  
laosan_ted 已提交
2660 2661 2662 2663
    }
  }
  ```

2664 2665 2666 2667 2668
### getWebId<sup>9+</sup>
getWebId(): number

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

Z
zhou-liting125 已提交
2669
**返回值:**
L
laosan_ted 已提交
2670

2671 2672 2673
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
2674

Z
zhou-liting125 已提交
2675
**示例:**
L
laosan_ted 已提交
2676

Z
zhou-liting125 已提交
2677 2678
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2679
  @Entry
L
update  
laosan_ted 已提交
2680 2681
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2682 2683
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2684 2685 2686
    build() {
      Column() {
        Button('getWebId')
L
laosan_ted 已提交
2687 2688 2689 2690
          .onClick(() => {
            let id = this.controller.getWebId();
            console.log("id: " + id);
          })
Z
zhou-liting125 已提交
2691
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2692
      }
L
update  
laosan_ted 已提交
2693 2694 2695 2696
    }
  }
  ```

2697 2698 2699 2700
### getTitle<sup>9+</sup>
getTitle(): string

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

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

2704 2705 2706
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
2707

Z
zhou-liting125 已提交
2708
**示例:**
L
laosan_ted 已提交
2709

Z
zhou-liting125 已提交
2710 2711
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2712
  @Entry
L
update  
laosan_ted 已提交
2713 2714
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2715 2716
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2717 2718 2719
    build() {
      Column() {
        Button('getTitle')
L
laosan_ted 已提交
2720 2721 2722 2723
          .onClick(() => {
            let title = this.controller.getTitle();
            console.log("title: " + title);
          })
Z
zhou-liting125 已提交
2724
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2725
      }
L
update  
laosan_ted 已提交
2726 2727 2728 2729
    }
  }
  ```

2730 2731 2732 2733
### getPageHeight<sup>9+</sup>
getPageHeight(): number

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

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

2737 2738 2739
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
2740

Z
zhou-liting125 已提交
2741
**示例:**
L
laosan_ted 已提交
2742

Z
zhou-liting125 已提交
2743 2744
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2745
  @Entry
L
update  
laosan_ted 已提交
2746 2747
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2748 2749
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2750 2751 2752
    build() {
      Column() {
        Button('getPageHeight')
L
laosan_ted 已提交
2753 2754 2755 2756
          .onClick(() => {
            let pageHeight = this.controller.getPageHeight();
            console.log("pageHeight: " + pageHeight);
          })
Z
zhou-liting125 已提交
2757
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2758
      }
L
update  
laosan_ted 已提交
2759 2760 2761
    }
  }
  ```
2762 2763 2764 2765 2766

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

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

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

2770 2771 2772
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
2773

Z
zhou-liting125 已提交
2774
**示例:**
L
laosan_ted 已提交
2775

Z
zhou-liting125 已提交
2776 2777
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2778
  @Entry
L
update  
laosan_ted 已提交
2779 2780
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2781 2782
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2783 2784 2785
    build() {
      Column() {
        Button('getDefaultUserAgent')
L
laosan_ted 已提交
2786 2787 2788 2789
          .onClick(() => {
            let userAgent = this.controller.getDefaultUserAgent();
            console.log("userAgent: " + userAgent);
          })
Z
zhou-liting125 已提交
2790
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2791
      }
L
update  
laosan_ted 已提交
2792 2793 2794 2795
    }
  }
  ```

L
lixingchi1 已提交
2796 2797
### loadData

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

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

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

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

Z
zhou-liting125 已提交
2806
**参数:**
L
laosan_ted 已提交
2807

2808 2809 2810 2811 2812 2813 2814
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
2815

Z
zhou-liting125 已提交
2816
**示例:**
L
laosan_ted 已提交
2817

Z
zhou-liting125 已提交
2818 2819
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2820
  @Entry
L
update  
laosan_ted 已提交
2821 2822
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2823 2824
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2825 2826 2827
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
2828 2829 2830 2831 2832 2833 2834
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
            });
          })
Z
zhou-liting125 已提交
2835
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2836
      }
L
update  
laosan_ted 已提交
2837 2838 2839 2840
    }
  }
  ```

Z
zengyawen 已提交
2841 2842
### loadUrl

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

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

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

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

Z
zhou-liting125 已提交
2851
**参数:**
L
laosan_ted 已提交
2852

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

Z
zhou-liting125 已提交
2858
**示例:**
L
laosan_ted 已提交
2859

Z
zhou-liting125 已提交
2860 2861
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2862
  @Entry
L
update  
laosan_ted 已提交
2863 2864
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2865 2866
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2867 2868 2869
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
2870
          .onClick(() => {
Z
zhou-liting125 已提交
2871
            this.controller.loadUrl({ url: 'www.example.com' });
L
laosan_ted 已提交
2872
          })
Z
zhou-liting125 已提交
2873
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2874
      }
L
update  
laosan_ted 已提交
2875 2876 2877 2878
    }
  }
  ```

L
lixingchi1 已提交
2879 2880 2881 2882
### onActive

onActive(): void

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

Z
zhou-liting125 已提交
2885
**示例:**
L
laosan_ted 已提交
2886

Z
zhou-liting125 已提交
2887 2888
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2889
  @Entry
L
update  
laosan_ted 已提交
2890 2891
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2892 2893
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2894 2895 2896
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
2897 2898 2899
          .onClick(() => {
            this.controller.onActive();
          })
Z
zhou-liting125 已提交
2900
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2901
      }
L
update  
laosan_ted 已提交
2902 2903 2904 2905
    }
  }
  ```

L
lixingchi1 已提交
2906 2907 2908 2909
### onInactive

onInactive(): void

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

Z
zhou-liting125 已提交
2912
**示例:**
L
laosan_ted 已提交
2913

Z
zhou-liting125 已提交
2914 2915
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2916
  @Entry
L
update  
laosan_ted 已提交
2917 2918
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2919 2920
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2921 2922 2923
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
2924 2925 2926
          .onClick(() => {
            this.controller.onInactive();
          })
Z
zhou-liting125 已提交
2927
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2928
      }
L
update  
laosan_ted 已提交
2929 2930 2931 2932
    }
  }
  ```

2933 2934 2935 2936
### zoom
zoom(factor: number): void

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

Z
zhou-liting125 已提交
2938
**参数:**
L
laosan_ted 已提交
2939

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

Z
zhou-liting125 已提交
2944
**示例:**
L
laosan_ted 已提交
2945

Z
zhou-liting125 已提交
2946 2947
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2948
  @Entry
L
update  
laosan_ted 已提交
2949 2950
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2951
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2952
    @State factor: number = 1;
L
laosan_ted 已提交
2953
  
L
update  
laosan_ted 已提交
2954 2955 2956
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
2957 2958 2959
          .onClick(() => {
            this.controller.zoom(this.factor);
          })
Z
zhou-liting125 已提交
2960
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2961
      }
L
update  
laosan_ted 已提交
2962 2963 2964 2965
    }
  }
  ```

2966 2967 2968 2969
### zoomIn<sup>9+</sup>
zoomIn(): boolean

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

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

2973 2974 2975
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
2976

Z
zhou-liting125 已提交
2977
**示例:**
L
laosan_ted 已提交
2978

Z
zhou-liting125 已提交
2979 2980
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2981
  @Entry
L
update  
laosan_ted 已提交
2982 2983
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2984 2985
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2986 2987 2988
    build() {
      Column() {
        Button('zoomIn')
L
laosan_ted 已提交
2989 2990 2991 2992
          .onClick(() => {
            let result = this.controller.zoomIn();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2993
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2994
      }
L
update  
laosan_ted 已提交
2995 2996 2997 2998
    }
  }
  ```

2999 3000 3001 3002
### zoomOut<sup>9+</sup>
zoomOut(): boolean

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

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

3006 3007 3008
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
3009

Z
zhou-liting125 已提交
3010
**示例:**
L
laosan_ted 已提交
3011

Z
zhou-liting125 已提交
3012 3013
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3014
  @Entry
L
update  
laosan_ted 已提交
3015 3016
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3017 3018
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3019 3020 3021
    build() {
      Column() {
        Button('zoomOut')
L
laosan_ted 已提交
3022 3023 3024 3025
          .onClick(() => {
            let result = this.controller.zoomOut();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
3026
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3027
      }
L
update  
laosan_ted 已提交
3028 3029 3030 3031
    }
  }
  ```

L
lixingchi1 已提交
3032 3033
### refresh

Z
zhou-liting125 已提交
3034
refresh()
L
lixingchi1 已提交
3035

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

Z
zhou-liting125 已提交
3038
**示例:**
L
laosan_ted 已提交
3039

Z
zhou-liting125 已提交
3040 3041
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3042
  @Entry
L
update  
laosan_ted 已提交
3043 3044
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3045 3046
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3047 3048 3049
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
3050 3051 3052
          .onClick(() => {
            this.controller.refresh();
          })
Z
zhou-liting125 已提交
3053
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3054
      }
L
update  
laosan_ted 已提交
3055 3056 3057 3058
    }
  }
  ```

L
lixingchi1 已提交
3059 3060
### registerJavaScriptProxy

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

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

Z
zhou-liting125 已提交
3065
**参数:**
L
laosan_ted 已提交
3066

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

Z
zhou-liting125 已提交
3073
**示例:**
L
laosan_ted 已提交
3074

Z
zhou-liting125 已提交
3075 3076
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3077
  @Entry
L
update  
laosan_ted 已提交
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105
  @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)
      }
    }
  }
  ```
3106

L
update  
laosan_ted 已提交
3107
  ```html
L
laosan_ted 已提交
3108
  <!-- index.html -->
L
update  
laosan_ted 已提交
3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124
  <!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 已提交
3125 3126
### runJavaScript

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

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

Z
zhou-liting125 已提交
3131
**参数:**
L
laosan_ted 已提交
3132

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

Z
zhou-liting125 已提交
3138
**示例:**
L
laosan_ted 已提交
3139

Z
zhou-liting125 已提交
3140 3141
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3142
  @Entry
L
update  
laosan_ted 已提交
3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166
  @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 已提交
3167
  <!-- index.html -->
L
update  
laosan_ted 已提交
3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183
  <!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 已提交
3184 3185
### stop

Z
zhou-liting125 已提交
3186
stop()
Z
zengyawen 已提交
3187

L
lixingchi1 已提交
3188
停止页面加载。
Z
zengyawen 已提交
3189

Z
zhou-liting125 已提交
3190
**示例:**
L
laosan_ted 已提交
3191

Z
zhou-liting125 已提交
3192 3193
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3194
  @Entry
L
update  
laosan_ted 已提交
3195 3196
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3197 3198
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3199 3200 3201
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
3202 3203 3204
          .onClick(() => {
            this.controller.stop();
          })
Z
zhou-liting125 已提交
3205
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3206
      }
L
update  
laosan_ted 已提交
3207 3208 3209 3210
    }
  }
  ```

T
Ted 已提交
3211 3212 3213 3214 3215 3216
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
3217
**示例:**
L
laosan_ted 已提交
3218

Z
zhou-liting125 已提交
3219 3220
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3221
  @Entry
L
update  
laosan_ted 已提交
3222 3223
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3224 3225
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3226 3227 3228
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
3229 3230 3231
          .onClick(() => {
            this.controller.clearHistory();
          })
Z
zhou-liting125 已提交
3232
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3233
      }
L
update  
laosan_ted 已提交
3234 3235 3236 3237
    }
  }
  ```

I
i-am-a-little-bird 已提交
3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
### clearSslCache

clearSslCache(): void

清除记录的SSL证书错误事件用户操作首选项。

**示例:**

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

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

### clearClientAuthenticationCache

clearClientAuthenticationCache(): void

清除记录的客户端证书请求事件用户操作首选项。

**示例:**

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

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

Z
zhou-liting125 已提交
3292
### getCookieManager<sup>9+</sup>
T
Ted 已提交
3293 3294 3295 3296

getCookieManager(): WebCookie

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

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

3300 3301 3302
| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
3303

Z
zhou-liting125 已提交
3304
**示例:**
L
laosan_ted 已提交
3305

Z
zhou-liting125 已提交
3306 3307
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3308
  @Entry
L
update  
laosan_ted 已提交
3309 3310
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3311 3312
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3313 3314 3315
    build() {
      Column() {
        Button('getCookieManager')
L
laosan_ted 已提交
3316 3317 3318
          .onClick(() => {
            let cookieManager = this.controller.getCookieManager();
          })
Z
zhou-liting125 已提交
3319
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3320
      }
L
update  
laosan_ted 已提交
3321 3322 3323 3324
    }
  }
  ```

3325 3326
### createWebMessagePorts<sup>9+</sup>

E
echoorchid 已提交
3327
createWebMessagePorts(): Array\<WebMessagePort\>
3328 3329 3330 3331

创建Web信息端口。

**返回值:**
3332

L
laosan_ted 已提交
3333

3334 3335
| 类型                              | 说明            |
| ------------------------------- | ------------- |
E
echoorchid 已提交
3336
| Array\<[WebMessagePort](#webmessageport9)\> | web信息端口列表。 |
3337 3338

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

3340 3341 3342 3343 3344 3345
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3346
    ports: WebMessagePort[] = null;
3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363
    build() {
      Column() {
        Button('createWebMessagePorts')
          .onClick(() => {
            this.ports = this.controller.createWebMessagePorts();
            console.log("createWebMessagePorts size:" + this.ports.length)
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

E
echoorchid 已提交
3364
发送Web信息端口到HTML5。
3365 3366

**参数:**
3367

3368 3369
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
E
echoorchid 已提交
3370
| message     | [WebMessageEvent](#webmessageevent9)          | 是    | -    |要发送的信息,包含数据和信息端口 。 |
3371 3372 3373
| uri       | string          | 是    | -    | 接收该信息的URI。 |

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

3375 3376 3377 3378 3379 3380
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3381
    ports: WebMessagePort[] = null;
3382 3383 3384 3385 3386 3387 3388 3389
    build() {
      Column() {
        Button('postMessage')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[1]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("__init_ports__");
            msgEvent.setPorts(sendPortArray);
L
laosan_ted 已提交
3390
            this.controller.postMessage({message: msgEvent, uri: "*"});
3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  // xxx.js
  var h5Port;
  window.addEventListener('message', function(event){
    if (event.data == '__init_ports__') {
      if(event.ports[0] != null) {
        h5Port = event.ports[0];
        h5Port.onmessage = function(event) {
          console.log('receive message from ets, on message:' + event.data);
        }
      }
    }
  })
  ```

Y
yu-shihao4 已提交
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441
### getUrl<sup>9+</sup>

getUrl(): string

获取当前页面的url地址。

**返回值:**

| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前页面的url地址。 |

**示例:**

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

3442
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
3443
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
3444 3445 3446 3447 3448

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

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

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

3452 3453 3454
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
3455 3456 3457 3458 3459

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

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

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

3463 3464 3465
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
3466

L
laosan_ted 已提交
3467

T
Ted 已提交
3468
## WebCookie
Z
zhou-liting125 已提交
3469

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

### setCookie<sup>9+</sup>
T
Ted 已提交
3473 3474 3475 3476
setCookie(url: string, value: string): boolean

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

Z
zhou-liting125 已提交
3477
**参数:**
L
laosan_ted 已提交
3478

3479 3480 3481 3482
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
3483

Z
zhou-liting125 已提交
3484
**返回值:** 
L
laosan_ted 已提交
3485

3486 3487 3488
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
3489

Z
zhou-liting125 已提交
3490
**示例:**
L
laosan_ted 已提交
3491

Z
zhou-liting125 已提交
3492 3493
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3494
  @Entry
L
update  
laosan_ted 已提交
3495 3496
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3497 3498
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3499 3500 3501
    build() {
      Column() {
        Button('setCookie')
L
laosan_ted 已提交
3502
          .onClick(() => {
Z
zhou-liting125 已提交
3503
            let result = this.controller.getCookieManager().setCookie("www.example.com", "a=b");
L
laosan_ted 已提交
3504 3505
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
3506
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3507
      }
L
update  
laosan_ted 已提交
3508 3509 3510 3511
    }
  }
  ```

Z
zhou-liting125 已提交
3512
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
3513 3514 3515
saveCookieSync(): boolean

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

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

3519 3520 3521
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |
3522

Z
zhou-liting125 已提交
3523
**示例:**
L
laosan_ted 已提交
3524

Z
zhou-liting125 已提交
3525 3526
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3527
  @Entry
L
update  
laosan_ted 已提交
3528 3529
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3530 3531
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3532 3533 3534
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
3535 3536 3537 3538
          .onClick(() => {
            let result = this.controller.getCookieManager().saveCookieSync();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
3539
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3540
      }
L
update  
laosan_ted 已提交
3541 3542 3543 3544
    }
  }
  ```

L
laosan_ted 已提交
3545 3546
### getCookie<sup>9+</sup>
getCookie(url: string): string
3547

L
laosan_ted 已提交
3548
获取指定url对应cookie的值。
3549

L
laosan_ted 已提交
3550
**参数:**
3551

L
laosan_ted 已提交
3552 3553 3554
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要获取的cookie所属的url。 |
3555

L
laosan_ted 已提交
3556 3557 3558 3559 3560
**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| string | 指定url对应的cookie的值。 |
3561

Z
zhou-liting125 已提交
3562
**示例:**
L
laosan_ted 已提交
3563

Z
zhou-liting125 已提交
3564 3565
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3566
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3567 3568 3569 3570 3571 3572 3573
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
L
laosan_ted 已提交
3574
        Button('getCookie')
L
laosan_ted 已提交
3575
          .onClick(() => {
L
laosan_ted 已提交
3576 3577
            let value = webview.WebCookieManager.getCookie('www.example.com');
            console.log("value: " + value);
L
laosan_ted 已提交
3578
          })
Z
zhou-liting125 已提交
3579
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3580 3581 3582
      }
    }
  }
L
update  
laosan_ted 已提交
3583 3584
  ```

L
laosan_ted 已提交
3585 3586
### setCookie<sup>9+</sup>
setCookie(url: string, value: string): boolean
3587

L
laosan_ted 已提交
3588
为指定url设置单个cookie的值。
3589

L
laosan_ted 已提交
3590
**参数:**
3591

L
laosan_ted 已提交
3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value   | string | 是    | -    | 要设置的cookie的值。 |

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 设置cookie是否成功。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3607
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3608 3609 3610 3611 3612 3613 3614 3615 3616
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('setCookie')
          .onClick(() => {
L
laosan_ted 已提交
3617
            let result = web_webview.WebCookieManager.setCookie('www.example.com', 'a=b');
L
laosan_ted 已提交
3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640
            console.log("result: " + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieSync<sup>9+</sup>
saveCookieSync(): boolean

将当前存在内存中的cookie保存到磁盘中,该方法为同步方法。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3641
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3642 3643 3644 3645 3646 3647 3648 3649 3650
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieSync')
          .onClick(() => {
L
laosan_ted 已提交
3651
            let result = web_webview.WebCookieManager.saveCookieSync();
L
laosan_ted 已提交
3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674
            console.log("result: " + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieAsync<sup>9+</sup>
saveCookieAsync(): Promise\<boolean>

将当前存在内存中的cookie以Promise方法异步保存到磁盘中。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| Promise\<boolean> | Promise实例,用于获取cookie是否成功保存。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3675
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3676 3677 3678 3679 3680 3681 3682 3683 3684
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3685
            web_webview.WebCookieManager.saveCookieAsync()
L
laosan_ted 已提交
3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713
              .then (function(result) {
                console.log("result: " + result);
              })
              .catch(function(error) {
                console.error("error: " + error);
              });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### saveCookieAsync<sup>9+</sup>
saveCookieAsync(callback: AsyncCallback\<boolean>): void

将当前存在内存中的cookie异步保存到磁盘中。

**参数:**

| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | AsyncCallback\<boolean> | 是    | -    | 返回cookie是否成功保存的布尔值作为回调函数的入参。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3714
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3715 3716 3717 3718 3719 3720 3721 3722 3723
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3724
            web_webview.WebCookieManager.saveCookieAsync(function(result) {
L
laosan_ted 已提交
3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748
              console.log("result: " + result);
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### isCookieAllowed<sup>9+</sup>
isCookieAllowed(): boolean

获取WebCookieManager实例是否拥有发送和接收cookie的权限。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 是否拥有发送和接收cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3749
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3750 3751 3752 3753 3754 3755 3756 3757 3758
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3759
            let result = web_webview.WebCookieManager.isCookieAllowed();
L
laosan_ted 已提交
3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
            console.log("result: " + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### putAcceptCookieEnabled<sup>9+</sup>
putAcceptCookieEnabled(accept: boolean): void

设置WebCookieManager实例是否拥有发送和接收cookie的权限。

**参数:**

| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| accept   | boolean | 是    | -    | 设置是否拥有发送和接收cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3783
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3784 3785 3786 3787 3788 3789 3790 3791 3792
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3793
            web_webview.WebCookieManager.putAcceptCookieEnabled(false);
L
laosan_ted 已提交
3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### isThirdPartyCookieAllowed<sup>9+</sup>
isThirdCookieAllowed(): boolean

获取WebCookieManager实例是否拥有发送和接收第三方cookie的权限。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 是否拥有发送和接收第三方cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3816
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3817 3818 3819 3820 3821 3822 3823 3824 3825
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isThirdPartyCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3826
            let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed();
L
laosan_ted 已提交
3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849
            console.log("result: " + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### putAcceptThirdPartyCookieEnabled<sup>9+</sup>
putAcceptThirdPartyCookieEnabled(accept: boolean): void

设置WebCookieManager实例是否拥有发送和接收第三方cookie的权限。

**参数:**

| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| accept   | boolean | 是    | -    | 设置是否拥有发送和接收第三方cookie的权限。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3850
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3851 3852 3853 3854 3855 3856 3857 3858 3859
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptThirdPartyCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3860
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false);
L
laosan_ted 已提交
3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### existCookie<sup>9+</sup>
existCookie(): boolean

获取是否存在cookie。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 是否存在cookie。 |

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3883
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3884 3885 3886 3887 3888 3889 3890 3891 3892
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existCookie')
          .onClick(() => {
L
laosan_ted 已提交
3893
            let result = web_webview.WebCookieManager.existCookie();
L
laosan_ted 已提交
3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
            console.log("result: " + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteEntireCookie<sup>9+</sup>
deleteEntireCookie(): void

清除所有cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3911
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3912 3913 3914 3915 3916 3917 3918 3919 3920
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteEntireCookie')
          .onClick(() => {
L
laosan_ted 已提交
3921
            web_webview.WebCookieManager.deleteEntireCookie();
L
laosan_ted 已提交
3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteSessionCookie<sup>9+</sup>
deleteSessionCookie(): void

清除所有会话cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3938
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteSessionCookie')
          .onClick(() => {
            webview.WebCookieManager.deleteSessionCookie();
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

## WebDataBase<sup>9+</sup>
web组件数据库管理对象。

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

static existHttpAuthCredentials(): boolean

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

**返回值:** 

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3975
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3976 3977 3978 3979 3980 3981 3982 3983 3984
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
3985
            let result = web_webview.WebDataBase.existHttpAuthCredentials();
L
laosan_ted 已提交
3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003
            console.log('result: ' + result);
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteHttpAuthCredentials<sup>9+</sup>

static deleteHttpAuthCredentials(): void

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4004
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4005
  @Entry
L
laosan_ted 已提交
4006 4007 4008 4009 4010 4011 4012 4013
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
4014
            web_webview.WebDataBase.deleteHttpAuthCredentials();
L
laosan_ted 已提交
4015
          })
Z
zhou-liting125 已提交
4016
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4017 4018 4019
      }
    }
  }
L
update  
laosan_ted 已提交
4020 4021
  ```

4022 4023 4024 4025
### getHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
4028
**参数:**
L
laosan_ted 已提交
4029

4030 4031 4032 4033
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
4034

Z
zhou-liting125 已提交
4035
**返回值:** 
L
laosan_ted 已提交
4036

4037 4038 4039
| 类型              | 说明                     |
| --------------- | ---------------------- |
| Array\<string\> | 包含用户名和密码的组数,检索失败返回空数组。 |
4040

Z
zhou-liting125 已提交
4041
**示例:**
L
laosan_ted 已提交
4042

Z
zhou-liting125 已提交
4043 4044
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4045
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056
  @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(() => {
L
laosan_ted 已提交
4057
            this.username_password = web_webview.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
L
laosan_ted 已提交
4058 4059 4060 4061 4062
            console.log('num: ' + this.username_password.length);
            ForEach(this.username_password, (item) => {
              console.log('username_password: ' + item);
            }, item => item)
          })
Z
zhou-liting125 已提交
4063
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4064 4065 4066
      }
    }
  }
L
update  
laosan_ted 已提交
4067 4068
  ```

4069 4070 4071 4072
### saveHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
4075
**参数:**
L
laosan_ted 已提交
4076

4077 4078 4079 4080 4081 4082
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
4083

Z
zhou-liting125 已提交
4084
**示例:**
L
laosan_ted 已提交
4085

Z
zhou-liting125 已提交
4086 4087
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4088
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4089 4090 4091 4092 4093 4094 4095 4096 4097 4098
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    host: string = "www.spincast.org";
    realm: string = "protected example";
    build() {
      Column() {
        Button('saveHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
4099
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
L
laosan_ted 已提交
4100
          })
Z
zhou-liting125 已提交
4101
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4102 4103 4104
      }
    }
  }
L
update  
laosan_ted 已提交
4105 4106
  ```

4107 4108 4109 4110 4111 4112 4113 4114
## GeolocationPermissions<sup>9+</sup>

web组件地理位置权限管理对象。

### allowGeolocation<sup>9+</sup>

static allowGeolocation(origin: string): void

4115
允许指定来源使用地理位置接口。
4116 4117 4118 4119 4120 4121 4122 4123

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
| origin   | string   | 是   | -     | 指定源的字符串索引。 |

**示例:**
4124

4125 4126
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4127
  import web_webview from '@ohos.web.webview';
4128 4129 4130 4131 4132 4133 4134 4135 4136
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('allowGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
4137
            web_webview.GeolocationPermissions.allowGeolocation(this.origin);
4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteGeolocation<sup>9+</sup>

static deleteGeolocation(origin: string): void

清除指定来源的地理位置权限状态。

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
| origin   | string   | 是   | -     | 指定源的字符串索引。 |

**示例:**
4158

4159 4160
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4161
  import web_webview from '@ohos.web.webview';
4162 4163 4164 4165 4166 4167 4168 4169 4170
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('deleteGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
4171
            web_webview.GeolocationPermissions.deleteGeolocation(this.origin);
4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### deleteAllGeolocation<sup>9+</sup>

static deleteAllGeolocation(): void

清除所有来源的地理位置权限状态。

**示例:**
4186

4187 4188
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4189
  import web_webview from '@ohos.web.webview';
4190 4191 4192 4193 4194 4195 4196 4197
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
4198
            web_webview.GeolocationPermissions.deleteAllGeolocation();
4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getAccessibleGeolocation<sup>9+</sup>

static getAccessibleGeolocation(origin: string, callback: AsyncCallback\<boolean\>): void

以回调方式异步获取指定源的地理位置权限状态。

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
| origin   | string   | 是   | -     | 指定源的字符串索引。 |
4217
| callback | AsyncCallback\<boolean\> | 是 | - | 返回指定源的地理位置权限状态。获取成功,true表示已授权,false表示拒绝访问。获取失败,表示不存在指定源的权限状态。 |
4218 4219

**示例:**
4220

4221 4222
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4223
  import web_webview from '@ohos.web.webview';
4224 4225 4226 4227 4228 4229 4230 4231 4232
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('getAccessibleGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4233
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
4234
              if (error) {
4235
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error));
4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262
                return;
              }
              console.log('getAccessibleGeolocationAsync result: ' + result);
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getAccessibleGeolocation<sup>9+</sup>

static getAccessibleGeolocation(origin: string): Promise\<boolean\>

以Promise方式异步获取指定源的地理位置权限状态。

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
| origin   | string   | 是   | -     | 指定源的字符串索引。 |

**返回值:**

| 类型               | 说明                                  |
| ------------------ | ------------------------------------ |
4263
| Promise\<boolean\> | Promise实例,用于获取指定源的权限状态,获取成功,true表示已授权,false表示拒绝访问。获取失败,表示不存在指定源的权限状态。 |
4264 4265

**示例:**
4266

4267 4268
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4269
  import web_webview from '@ohos.web.webview';
4270 4271 4272 4273 4274 4275 4276 4277 4278
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('getAccessibleGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4279
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin).then(result => {
4280 4281
              console.log('getAccessibleGeolocationPromise result: ' + result);
            }).catch(error => {
4282
              console.log('getAccessibleGeolocationPromise error: ' + JSON.stringify(error));
4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getStoredGeolocation<sup>9+</sup>

static getStoredGeolocation(callback: AsyncCallback\<Array\<string\>\>): void

4295
以回调方式异步获取已存储地理位置权限状态的所有源信息。
4296 4297 4298 4299 4300

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
4301
| callback | AsyncCallback\<Array\<string\>\> | 是 | - | 返回已存储地理位置权限状态的所有源信息。 |
4302 4303

**示例:**
4304

4305 4306
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4307
  import web_webview from '@ohos.web.webview';
4308 4309 4310 4311 4312 4313 4314 4315
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('getStoredGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4316
            web_webview.GeolocationPermissions.getStoredGeolocation((error, origins) => {
4317
              if (error) {
4318
                console.log('getStoredGeolocationAsync error: ' + JSON.stringify(error));
4319 4320
                return;
              }
4321
              let origins_str: string = origins.join();
4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334
              console.log('getStoredGeolocationAsync origins: ' + origins_str);
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### getStoredGeolocation<sup>9+</sup>

static getStoredGeolocation(): Promise\<Array\<string\>\>

4335
以Promise方式异步获取已存储地理位置权限状态的所有源信息。
4336 4337 4338 4339 4340

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述       |
| -------- | -------- | ---- | ----- | ------------- |
4341
| callback | AsyncCallback\<Array\<string\>\> | 是 | - | 返回已存储地理位置权限状态的所有源信息。 |
4342 4343 4344 4345 4346

**返回值:**

| 类型                       | 说明                                  |
| -------------------------- | ------------------------------------ |
4347
| Promise\<Array\<string\>\> | Promise实例,用于获取已存储地理位置权限状态的所有源信息。 |
4348 4349

**示例:**
4350

4351 4352
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4353
  import web_webview from '@ohos.web.webview';
4354 4355 4356 4357 4358 4359 4360 4361
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('getStoredGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4362
            web_webview.GeolocationPermissions.getStoredGeolocation().then(origins => {
4363
              let origins_str: string = origins.join();
4364 4365
              console.log('getStoredGeolocationPromise origins: ' + origins_str);
            }).catch(error => {
4366
                console.log('getStoredGeolocationPromise error: ' + JSON.stringify(error));
4367 4368 4369 4370 4371 4372 4373 4374
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

4375 4376 4377 4378 4379 4380
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

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

Z
zhou-liting125 已提交
4382
**示例:**
L
laosan_ted 已提交
4383

Z
zhou-liting125 已提交
4384 4385
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4386
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4387 4388 4389 4390 4391 4392 4393 4394
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
L
laosan_ted 已提交
4395
            web_webview.WebStorage.deleteAllData();
L
laosan_ted 已提交
4396
          })
Z
zhou-liting125 已提交
4397
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4398 4399 4400 4401
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4402 4403
  ```

4404 4405 4406 4407
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

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

Z
zhou-liting125 已提交
4409
**参数:**
L
laosan_ted 已提交
4410

4411 4412 4413
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4414

Z
zhou-liting125 已提交
4415
**示例:**
L
laosan_ted 已提交
4416

Z
zhou-liting125 已提交
4417 4418
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4419
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4420 4421 4422 4423 4424 4425 4426 4427 4428
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
4429
            web_webview.WebStorage.deleteOrigin(this.origin);
L
laosan_ted 已提交
4430
          })
Z
zhou-liting125 已提交
4431
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4432 4433 4434 4435
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4436 4437
  ```

4438
### getOrigins<sup>9+</sup>
L
laosan_ted 已提交
4439
static getOrigins(callback: AsyncCallback<Array<WebStorageOrigin>>) : void
4440 4441

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

Z
zhou-liting125 已提交
4443
**参数:**
L
laosan_ted 已提交
4444

4445 4446 4447
| 参数名      | 参数类型                                     | 必填   | 说明                                  |
| -------- | ---------------------------------------- | ---- | ----------------------------------- |
| callback | AsyncCallback<Array<[WebStorageOrigin](#webstorageorigin9)>> | 是    | 以数组方式返回源的信息,信息内容参考WebStorageOrigin。 |
4448

Z
zhou-liting125 已提交
4449
**示例:**
L
laosan_ted 已提交
4450

Z
zhou-liting125 已提交
4451 4452
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4453
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4454 4455 4456 4457 4458 4459 4460 4461 4462
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
4463
            web_webview.WebStorage.getOrigins((error, origins) => {
L
laosan_ted 已提交
4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474
              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 已提交
4475
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4476 4477
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4478
    }
L
laosan_ted 已提交
4479 4480
  }
  ```
L
update  
laosan_ted 已提交
4481

4482
### getOrigins<sup>9+</sup>
L
laosan_ted 已提交
4483
static getOrigins() : Promise<Array<WebStorageOrigin>>
4484 4485

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

Z
zhou-liting125 已提交
4487
**返回值:**
L
laosan_ted 已提交
4488

4489 4490 4491
| 类型                                       | 说明                                       |
| ---------------------------------------- | ---------------------------------------- |
| Promise<Array<[WebStorageOrigin](#webstorageorigin9)>> | Promise实例,用于获取当前所有源的信息,信息内容参考WebStorageOrigin。 |
4492

Z
zhou-liting125 已提交
4493
**示例:**
L
laosan_ted 已提交
4494

Z
zhou-liting125 已提交
4495 4496
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4497
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4498 4499 4500 4501 4502 4503 4504 4505 4506
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
4507
            web_webview.WebStorage.getOrigins()
L
laosan_ted 已提交
4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518
              .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 已提交
4519
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4520 4521
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4522
    }
L
laosan_ted 已提交
4523
  }
L
update  
laosan_ted 已提交
4524 4525
  ```

4526
### getOriginQuota<sup>9+</sup>
4527
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
4528 4529

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

Z
zhou-liting125 已提交
4531
**参数:**
L
laosan_ted 已提交
4532

4533 4534 4535
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
4536
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
4537

Z
zhou-liting125 已提交
4538
**示例:**
L
laosan_ted 已提交
4539

Z
zhou-liting125 已提交
4540 4541
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4542
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4543 4544 4545 4546 4547 4548 4549 4550 4551
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4552
            web_webview.WebStorage.getOriginQuota(this.origin, (error, quota) => {
L
laosan_ted 已提交
4553 4554 4555 4556 4557 4558 4559
              if (error) {
                console.log('error: ' + error);
                return;
              }
              console.log('quota: ' + quota);
            })
          })
Z
zhou-liting125 已提交
4560
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4561 4562
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4563
    }
L
laosan_ted 已提交
4564
  }
L
update  
laosan_ted 已提交
4565 4566
  ```

4567
### getOriginQuota<sup>9+</sup>
4568
static getOriginQuota(origin : string) : Promise\<number>
4569 4570

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

Z
zhou-liting125 已提交
4572
**参数:**
L
laosan_ted 已提交
4573

4574 4575 4576
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4577

Z
zhou-liting125 已提交
4578
**返回值:**
L
laosan_ted 已提交
4579

4580 4581
| 类型               | 说明                      |
| ---------------- | ----------------------- |
4582
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
4583

Z
zhou-liting125 已提交
4584
**示例:**
L
laosan_ted 已提交
4585

Z
zhou-liting125 已提交
4586 4587
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4588
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4589 4590 4591 4592 4593 4594 4595 4596 4597
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4598
            web_webview.WebStorage.getOriginQuota(this.origin)
L
laosan_ted 已提交
4599 4600 4601 4602 4603 4604 4605
              .then(quota => {
                console.log('quota: ' + quota);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
4606
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4607 4608 4609 4610
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4611 4612
  ```

4613
### getOriginUsage<sup>9+</sup>
4614
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
4615 4616

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

Z
zhou-liting125 已提交
4618
**参数:**
L
laosan_ted 已提交
4619

4620 4621 4622
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
4623
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
4624

Z
zhou-liting125 已提交
4625
**示例:**
L
laosan_ted 已提交
4626

Z
zhou-liting125 已提交
4627 4628
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4629
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4630 4631 4632 4633 4634 4635 4636 4637 4638
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
L
laosan_ted 已提交
4639
            web_webview.WebStorage.getOriginUsage(this.origin, (error, usage) => {
L
laosan_ted 已提交
4640 4641 4642 4643
              if (error) {
                console.log('error: ' + error);
                return;
              }
L
laosan_ted 已提交
4644
              console.log('usage: ' + usage);
L
laosan_ted 已提交
4645 4646
            })
          })
Z
zhou-liting125 已提交
4647
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4648 4649
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4650
    }
L
laosan_ted 已提交
4651
  }
L
update  
laosan_ted 已提交
4652 4653
  ```

4654
### getOriginUsage<sup>9+</sup>
4655
static getOriginUsage(origin : string) : Promise\<number>
4656 4657

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

Z
zhou-liting125 已提交
4659
**参数:**
L
laosan_ted 已提交
4660

4661 4662 4663
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4664

Z
zhou-liting125 已提交
4665
**返回值:**
L
laosan_ted 已提交
4666

4667 4668
| 类型               | 说明                     |
| ---------------- | ---------------------- |
4669
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
4670

Z
zhou-liting125 已提交
4671
**示例:**
L
laosan_ted 已提交
4672

Z
zhou-liting125 已提交
4673 4674
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4675
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4676 4677 4678 4679 4680 4681 4682 4683 4684
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4685
            web_webview.WebStorage.getOriginUsage(this.origin)
L
laosan_ted 已提交
4686 4687 4688 4689 4690 4691 4692
              .then(usage => {
                console.log('usage: ' + usage);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
4693
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4694 4695 4696 4697
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4698
  ```
F
Fred Ranking 已提交
4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711
### searchAllAsync<sup>9+</sup>

searchAllAsync(searchString: string): void

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

**参数:**

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

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

F
Fred Ranking 已提交
4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    @State searchString: string = "xxx";

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

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

clearMatches(): void

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

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

F
Fred Ranking 已提交
4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

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

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

searchNext(forward: boolean): void

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

**参数:**

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


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

F
Fred Ranking 已提交
4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

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

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

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

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

**参数:**

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

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

F
Fred Ranking 已提交
4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();

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

4841
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
4842

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

Z
zhou-liting125 已提交
4845
**参数:**
L
laosan_ted 已提交
4846

4847 4848 4849 4850 4851
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
4852 4853 4854

## MessageLevel枚举说明

4855 4856
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
4857 4858 4859 4860 4861 4862 4863 4864 4865 4866
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

4867 4868 4869 4870 4871 4872 4873
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
4874 4875 4876

## MixedMode枚举说明

4877 4878
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
4879
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
4880 4881
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
4882 4883

## CacheMode枚举说明
4884 4885
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
4886
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
4887 4888 4889
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
4890 4891

## FileSelectorMode枚举说明
4892 4893 4894 4895
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
4896
| FileOpenFolderMode   | 打开上传文件夹模式。 |
4897
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
4898 4899 4900

 ## HitTestType枚举说明

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

4911 4912 4913 4914
## SslError枚举说明

onSslErrorEventReceive接口返回的SSL错误的具体原因。

I
bugfix  
i-am-a-little-bird 已提交
4915 4916 4917 4918 4919 4920
| 名称           | 描述                 |
| -------------- | -----------------   |
| Invalid        | 一般错误。           |
| HostMismatch   | 主机名不匹配。        |
| DateInvalid    | 证书日期无效。        |
| Untrusted      | 证书颁发机构不受信任。 |
4921

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

X
xiongjun_gitee 已提交
4924 4925
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
F
Fred Ranking 已提交
4926
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|
4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956

## WebAsyncController

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

### 创建对象

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

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

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

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

**参数:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4957
  import web_webview from '@ohos.web.webview'
4958 4959 4960 4961 4962 4963 4964 4965
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
4966
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true, (filename) => {
              if (filename != null) {
                console.info(`save web archive success: ${filename}`)
              }
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

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

**参数:**

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
5002
  import web_webview from '@ohos.web.webview'
5003 5004 5005 5006 5007 5008 5009 5010
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
5011
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true)
              .then(filename => {
                if (filename != null) {
                  console.info(`save web archive success: ${filename}`)
                }
              })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
5024 5025 5026 5027

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

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

E
echoorchid 已提交
5029
### close<sup>9+</sup>
5030 5031 5032 5033
close(): void

关闭该信息端口。

E
echoorchid 已提交
5034
### postMessageEvent<sup>9+</sup>
5035 5036 5037 5038 5039
postMessageEvent(message: WebMessageEvent): void

发送消息。

**参数:**
5040

5041 5042
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
5043
| message   | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
5044 5045

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

5047 5048 5049 5050 5051 5052
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5053
    ports: WebMessagePort[] = null;
5054 5055 5056 5057 5058 5059

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
5060
            msg.setData("post message from ets to html5");
L
laosan_ted 已提交
5061
            this.ports[0].postMessageEvent(msg);
5062 5063 5064 5065 5066 5067 5068
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
5069
### onMessageEvent<sup>9+</sup>
5070 5071
onMessageEvent(callback: (result: string) => void): void

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

**参数:**
5075

5076 5077 5078 5079 5080
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | function | 是    | -    | 接收消息的回调函数。 |

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

5082 5083 5084 5085 5086 5087
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5088
    ports: WebMessagePort[] = null;
5089 5090 5091 5092 5093

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
L
laosan_ted 已提交
5094
            this.ports[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
5095
              console.log("received message from html5, on message:" + result);
5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


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

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

E
echoorchid 已提交
5109
### getData<sup>9+</sup>
5110 5111 5112 5113 5114
getData(): string

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

**返回值:**
5115

5116 5117 5118 5119
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
5120
**示例:**
L
laosan_ted 已提交
5121

E
echoorchid 已提交
5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("message event data");
            var messageData = msgEvent.getData();
            console.log("message is:" + messageData);
          })
      }
    }
  }
  ```
5140

E
echoorchid 已提交
5141
### setData<sup>9+</sup>
5142 5143 5144 5145 5146
setData(data: string): void

设置当前对象中的消息。

**参数:**
5147

5148 5149 5150 5151 5152
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| data   | string | 是    | -    | 要发送的消息。 |

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

5154 5155 5156 5157 5158 5159
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5160
    ports: WebMessagePort[] = null;
5161 5162 5163 5164 5165 5166

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
5167
            msg.setData("post message from ets to HTML5");
L
laosan_ted 已提交
5168
            this.ports[0].postMessageEvent(msg);
5169 5170 5171 5172 5173 5174
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
5175
### getPorts<sup>9+</sup>
E
echoorchid 已提交
5176
getPorts(): Array\<WebMessagePort\>
5177 5178 5179 5180

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

**返回值:**
5181

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

E
echoorchid 已提交
5186
**示例:**
L
laosan_ted 已提交
5187

E
echoorchid 已提交
5188 5189 5190 5191 5192
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
L
laosan_ted 已提交
5193
    ports: WebMessagePort[] = null;
E
echoorchid 已提交
5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[0]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setPorts(sendPortArray);
            var getPorts = msgEvent.getPorts();
            console.log("Ports is:" + getPorts);
          })
      }
    }
  }
  ```
5208

E
echoorchid 已提交
5209
### setPorts<sup>9+</sup>
E
echoorchid 已提交
5210
setPorts(ports: Array\<WebMessagePort\>): void
5211 5212 5213 5214

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

**参数:**
5215

5216 5217
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
5218
| ports   | Array\<[WebMessagePort](#webmessageport9)\> | 是    | -    | 要发送的消息端口。 |
5219 5220

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

5222 5223 5224 5225 5226 5227
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5228 5229
    ports: WebMessagePort[] = null;
  
5230 5231 5232 5233 5234 5235 5236 5237
    build() {
      Column() {
        Button('setPorts')
          .onClick(() => {
            var sendPortArray = new Array(this.ports[1]);
            var msgEvent = new WebMessageEvent();
            msgEvent.setData("__init_ports__");
            msgEvent.setPorts(sendPortArray);
L
laosan_ted 已提交
5238
            this.controller.postMessage({message: msgEvent, uri: "*"});
5239 5240 5241 5242 5243 5244
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```