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

| 参数名        | 参数类型                            | 必填   | 参数描述    |
| ---------- | ------------------------------- | ---- | ------- |
H
HelloCrease 已提交
29
| src        | [ResourceStr](ts-types.md)                           | 是    | 网页资源地址。 |
L
laosan_ted 已提交
30
| 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
| 类型                                       | 说明                          |
| ---------------------------------------- | --------------------------- |
L
laosan_ted 已提交
1296
| [WebResourceResponse](#webresourceresponse) | 返回响应数据则按照响应数据加载,无响应数据则返回null表示按照原来的方式加载。 |
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
| 参数名     | 参数类型                           | 参数描述             |
I
bugfix  
i-am-a-little-bird 已提交
1423 1424
| ------- | ------------------------------------ | ----------------    |
| handler | [SslErrorHandler](#sslerrorhandler9) | 通知Web组件用户操作行为。 |
I
bugfix  
i-am-a-little-bird 已提交
1425
| error   | [SslError](#sslerror9枚举说明)        | 错误码。 |
I
bugfix  
i-am-a-little-bird 已提交
1426 1427

**示例:**
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
### onClientAuthenticationRequest<sup>9+</sup>

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

I
bugfix  
i-am-a-little-bird 已提交
1471
通知用户收到SSL客户端证书请求事件。
I
i-am-a-little-bird 已提交
1472 1473 1474 1475 1476 1477

**参数:**

| 参数名   | 参数类型                             | 参数描述             |
| ------- | ------------------------------------ | ----------------    |
| handler | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。|
I
bugfix  
i-am-a-little-bird 已提交
1478 1479 1480 1481
| host    | string          | 请求证书服务器的主机名。 |
| port    | number          | 请求证书服务器的端口号。 |
| keyTypes| Array<string>   | 可接受的非对称秘钥类型。 |
| issuers | Array<string>   | 与私钥匹配的证书可接受颁发者。|
I
i-am-a-little-bird 已提交
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501

  **示例:**
  ```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 })
Y
yu-shihao4 已提交
1601
          .onContextMenuShow((event) => {
1602 1603
            console.info("x coord = " + event.param.x());
            console.info("link url = " + event.param.getLinkUrl());
Y
yu-shihao4 已提交
1604
            return true;
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
bugfix  
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
通知Web组件继续使用SSL证书。

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

I
bugfix  
i-am-a-little-bird 已提交
2146
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onclientauthenticationrequest9)
I
i-am-a-little-bird 已提交
2147 2148 2149 2150 2151 2152

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

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

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

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

I
bugfix  
i-am-a-little-bird 已提交
2156 2157 2158 2159
| 参数名         | 参数类型 | 必填   | 参数描述        |
| --------      | ------   | ----  | ----------     |
| priKeyFile    | string   | 是    | 存放私钥的文件,包含路径和文件名。|
| certChainFile | string   | 是    | 存放证书链的文件,包含路径和文件名。|
I
i-am-a-little-bird 已提交
2160 2161

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

I
i-am-a-little-bird 已提交
2163 2164
cancel(): void

I
bugfix  
i-am-a-little-bird 已提交
2165
通知Web组件取消相同host和port服务器发送的客户端证书请求事件。同时,相同host和port服务器的请求,不重复上报该事件。
I
i-am-a-little-bird 已提交
2166 2167 2168 2169 2170 2171

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

ignore(): void

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

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

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

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

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

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

getAccessibleResource(): Array\<string\>

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

**返回值:**

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

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

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

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

**参数:**

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

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

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

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

x(): number

弹出菜单的x坐标。

**返回值:**

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

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

y(): number

弹出菜单的y坐标。

**返回值:**

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

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

getLinkUrl(): string

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

**返回值:**

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

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

getUnfilterendLinkUrl(): string

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

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2269
| string | 如果长按位置是链接,返回原始的url链接。 |
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 2296

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

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

closeContextMenu(): void

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

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

copyImage(): void

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

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

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

### invoke

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

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

**参数:**

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

Z
zengyawen 已提交
2329 2330
## WebController

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

### 创建对象

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

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

requestFocus()

使当前web页面获取焦点。

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

L
laosan_ted 已提交
2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365
  ```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 已提交
2366 2367 2368 2369
### accessBackward

accessBackward(): boolean

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

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

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

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

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

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

accessForward(): boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

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

L
lixingchi1 已提交
2475 2476
### backward

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

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

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

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

### forward

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

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

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

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

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

backOrForward(step: number): void

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

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

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

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

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

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

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

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

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

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

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

getHitTest(): HitTestType

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

L
lixingchi1 已提交
2797 2798
### loadData

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

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

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

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

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

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

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

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

Z
zengyawen 已提交
2842 2843
### loadUrl

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

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

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

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

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

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

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

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

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

onActive(): void

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

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

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

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

onInactive(): void

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

L
lixingchi1 已提交
3033 3034
### refresh

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

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

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

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

L
lixingchi1 已提交
3060 3061
### registerJavaScriptProxy

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

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

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

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

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

Z
zhou-liting125 已提交
3076 3077
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3078
  @Entry
L
update  
laosan_ted 已提交
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 3106
  @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)
      }
    }
  }
  ```
3107

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

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

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

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

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

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

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

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

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

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

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

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

clearHistory(): void

删除所有前进后退记录。

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

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

I
i-am-a-little-bird 已提交
3239 3240 3241 3242
### clearSslCache

clearSslCache(): void

I
bugfix  
i-am-a-little-bird 已提交
3243
清除Web组件记录的SSL证书错误事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
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

**示例:**

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

I
bugfix  
i-am-a-little-bird 已提交
3270
清除Web组件记录的客户端证书请求事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292

**示例:**

  ```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 已提交
3293
### getCookieManager<sup>9+</sup>
T
Ted 已提交
3294 3295 3296 3297

getCookieManager(): WebCookie

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

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

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

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

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

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

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

创建Web信息端口。

**返回值:**
3333

L
laosan_ted 已提交
3334

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

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

3341 3342 3343 3344 3345 3346
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3347
    ports: WebMessagePort[] = null;
3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364
    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 已提交
3365
发送Web信息端口到HTML5。
3366 3367

**参数:**
3368

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

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

3376 3377 3378 3379 3380 3381
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3382
    ports: WebMessagePort[] = null;
3383 3384 3385 3386 3387 3388 3389 3390
    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 已提交
3391
            this.controller.postMessage({message: msgEvent, uri: "*"});
3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410
          })
        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 已提交
3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442
### 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 })
      }
    }
  }
  ```

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

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

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

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

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

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

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

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

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

L
laosan_ted 已提交
3468

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3608
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3609 3610 3611 3612 3613 3614 3615 3616 3617
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('setCookie')
          .onClick(() => {
L
laosan_ted 已提交
3618
            let result = web_webview.WebCookieManager.setCookie('www.example.com', 'a=b');
L
laosan_ted 已提交
3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641
            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 已提交
3642
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3643 3644 3645 3646 3647 3648 3649 3650 3651
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieSync')
          .onClick(() => {
L
laosan_ted 已提交
3652
            let result = web_webview.WebCookieManager.saveCookieSync();
L
laosan_ted 已提交
3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
            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 已提交
3676
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3677 3678 3679 3680 3681 3682 3683 3684 3685
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3686
            web_webview.WebCookieManager.saveCookieAsync()
L
laosan_ted 已提交
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 3714
              .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 已提交
3715
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3716 3717 3718 3719 3720 3721 3722 3723 3724
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3725
            web_webview.WebCookieManager.saveCookieAsync(function(result) {
L
laosan_ted 已提交
3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749
              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 已提交
3750
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3751 3752 3753 3754 3755 3756 3757 3758 3759
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3760
            let result = web_webview.WebCookieManager.isCookieAllowed();
L
laosan_ted 已提交
3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783
            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 已提交
3784
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3785 3786 3787 3788 3789 3790 3791 3792 3793
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3794
            web_webview.WebCookieManager.putAcceptCookieEnabled(false);
L
laosan_ted 已提交
3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3817
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3818 3819 3820 3821 3822 3823 3824 3825 3826
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isThirdPartyCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3827
            let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed();
L
laosan_ted 已提交
3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850
            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 已提交
3851
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3852 3853 3854 3855 3856 3857 3858 3859 3860
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptThirdPartyCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3861
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false);
L
laosan_ted 已提交
3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

获取是否存在cookie。

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3884
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3885 3886 3887 3888 3889 3890 3891 3892 3893
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existCookie')
          .onClick(() => {
L
laosan_ted 已提交
3894
            let result = web_webview.WebCookieManager.existCookie();
L
laosan_ted 已提交
3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911
            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 已提交
3912
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3913 3914 3915 3916 3917 3918 3919 3920 3921
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteEntireCookie')
          .onClick(() => {
L
laosan_ted 已提交
3922
            web_webview.WebCookieManager.deleteEntireCookie();
L
laosan_ted 已提交
3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

清除所有会话cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3939
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
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 3975
  @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 已提交
3976
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3977 3978 3979 3980 3981 3982 3983 3984 3985
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
3986
            let result = web_webview.WebDataBase.existHttpAuthCredentials();
L
laosan_ted 已提交
3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004
            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 已提交
4005
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4006
  @Entry
L
laosan_ted 已提交
4007 4008 4009 4010 4011 4012 4013 4014
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
4015
            web_webview.WebDataBase.deleteHttpAuthCredentials();
L
laosan_ted 已提交
4016
          })
Z
zhou-liting125 已提交
4017
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4018 4019 4020
      }
    }
  }
L
update  
laosan_ted 已提交
4021 4022
  ```

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Z
zhou-liting125 已提交
4087 4088
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4089
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4090 4091 4092 4093 4094 4095 4096 4097 4098 4099
  @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 已提交
4100
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
L
laosan_ted 已提交
4101
          })
Z
zhou-liting125 已提交
4102
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4103 4104 4105
      }
    }
  }
L
update  
laosan_ted 已提交
4106 4107
  ```

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

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

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

static allowGeolocation(origin: string): void

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

**参数:**

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

**示例:**
4125

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

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

static deleteGeolocation(origin: string): void

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

**参数:**

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

**示例:**
4159

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

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

static deleteAllGeolocation(): void

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

**示例:**
4187

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

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

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

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

**参数:**

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

**示例:**
4221

4222 4223
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4224
  import web_webview from '@ohos.web.webview';
4225 4226 4227 4228 4229 4230 4231 4232 4233
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('getAccessibleGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4234
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
4235
              if (error) {
4236
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error));
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 4263
                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   | 是   | -     | 指定源的字符串索引。 |

**返回值:**

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

**示例:**
4267

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

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

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

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

**参数:**

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

**示例:**
4305

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

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

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

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

**参数:**

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

**返回值:**

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

**示例:**
4351

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

searchAllAsync(searchString: string): void

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

**参数:**

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

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

F
Fred Ranking 已提交
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 4752
  ```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 已提交
4753

F
Fred Ranking 已提交
4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786
  ```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 已提交
4787

F
Fred Ranking 已提交
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 4821
  ```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 已提交
4822

F
Fred Ranking 已提交
4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840
  ```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 已提交
4841

4842
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
4843

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

Z
zhou-liting125 已提交
4846
**参数:**
L
laosan_ted 已提交
4847

4848 4849 4850 4851 4852
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
4853 4854 4855

## MessageLevel枚举说明

4856 4857
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
4858 4859 4860 4861 4862 4863 4864 4865 4866 4867
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

4868 4869 4870 4871 4872 4873 4874
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
4875 4876 4877

## MixedMode枚举说明

4878 4879
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
4880
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
4881 4882
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
4883 4884

## CacheMode枚举说明
4885 4886
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
4887
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
4888 4889 4890
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
4891 4892

## FileSelectorMode枚举说明
4893 4894 4895 4896
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
4897
| FileOpenFolderMode   | 打开上传文件夹模式。 |
4898
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
4899 4900 4901

 ## HitTestType枚举说明

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

I
bugfix  
i-am-a-little-bird 已提交
4912
## SslError<sup>9+</sup>枚举说明
4913 4914 4915

onSslErrorEventReceive接口返回的SSL错误的具体原因。

I
bugfix  
i-am-a-little-bird 已提交
4916 4917 4918
| 名称           | 描述                  |
| -------------- | -----------------    |
| Invalid        | 一般错误。            |
I
bugfix  
i-am-a-little-bird 已提交
4919 4920 4921
| HostMismatch   | 主机名不匹配。        |
| DateInvalid    | 证书日期无效。        |
| Untrusted      | 证书颁发机构不受信任。 |
4922

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

X
xiongjun_gitee 已提交
4925 4926
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
F
Fred Ranking 已提交
4927
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|
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 4957

## 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 已提交
4958
  import web_webview from '@ohos.web.webview'
4959 4960 4961 4962 4963 4964 4965 4966
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
4967
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
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 5002
            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 已提交
5003
  import web_webview from '@ohos.web.webview'
5004 5005 5006 5007 5008 5009 5010 5011
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
5012
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
            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 })
      }
    }
  }
  ```
5025 5026 5027 5028

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

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

E
echoorchid 已提交
5030
### close<sup>9+</sup>
5031 5032 5033 5034
close(): void

关闭该信息端口。

E
echoorchid 已提交
5035
### postMessageEvent<sup>9+</sup>
5036 5037 5038 5039 5040
postMessageEvent(message: WebMessageEvent): void

发送消息。

**参数:**
5041

5042 5043
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
5044
| message   | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
5045 5046

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

5048 5049 5050 5051 5052 5053
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5054
    ports: WebMessagePort[] = null;
5055 5056 5057 5058 5059 5060

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
5061
            msg.setData("post message from ets to html5");
L
laosan_ted 已提交
5062
            this.ports[0].postMessageEvent(msg);
5063 5064 5065 5066 5067 5068 5069
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
5070
### onMessageEvent<sup>9+</sup>
5071 5072
onMessageEvent(callback: (result: string) => void): void

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

**参数:**
5076

5077 5078 5079 5080 5081
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | function | 是    | -    | 接收消息的回调函数。 |

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

5083 5084 5085 5086 5087 5088
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5089
    ports: WebMessagePort[] = null;
5090 5091 5092 5093 5094

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
L
laosan_ted 已提交
5095
            this.ports[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
5096
              console.log("received message from html5, on message:" + result);
5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


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

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

E
echoorchid 已提交
5110
### getData<sup>9+</sup>
5111 5112 5113 5114 5115
getData(): string

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

**返回值:**
5116

5117 5118 5119 5120
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
5121
**示例:**
L
laosan_ted 已提交
5122

E
echoorchid 已提交
5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140
  ```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);
          })
      }
    }
  }
  ```
5141

E
echoorchid 已提交
5142
### setData<sup>9+</sup>
5143 5144 5145 5146 5147
setData(data: string): void

设置当前对象中的消息。

**参数:**
5148

5149 5150 5151 5152 5153
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| data   | string | 是    | -    | 要发送的消息。 |

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

5155 5156 5157 5158 5159 5160
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5161
    ports: WebMessagePort[] = null;
5162 5163 5164 5165 5166 5167

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
5168
            msg.setData("post message from ets to HTML5");
L
laosan_ted 已提交
5169
            this.ports[0].postMessageEvent(msg);
5170 5171 5172 5173 5174 5175
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
5176
### getPorts<sup>9+</sup>
E
echoorchid 已提交
5177
getPorts(): Array\<WebMessagePort\>
5178 5179 5180 5181

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

**返回值:**
5182

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

E
echoorchid 已提交
5187
**示例:**
L
laosan_ted 已提交
5188

E
echoorchid 已提交
5189 5190 5191 5192 5193
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
L
laosan_ted 已提交
5194
    ports: WebMessagePort[] = null;
E
echoorchid 已提交
5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208
    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);
          })
      }
    }
  }
  ```
5209

E
echoorchid 已提交
5210
### setPorts<sup>9+</sup>
E
echoorchid 已提交
5211
setPorts(ports: Array\<WebMessagePort\>): void
5212 5213 5214 5215

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

**参数:**
5216

5217 5218
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
5219
| ports   | Array\<[WebMessagePort](#webmessageport9)\> | 是    | -    | 要发送的消息端口。 |
5220 5221

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

5223 5224 5225 5226 5227 5228
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5229 5230
    ports: WebMessagePort[] = null;
  
5231 5232 5233 5234 5235 5236 5237 5238
    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 已提交
5239
            this.controller.postMessage({message: msgEvent, uri: "*"});
5240 5241 5242 5243 5244 5245
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```