ts-basic-components-web.md 132.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 1296
| 类型                                       | 说明                          |
| ---------------------------------------- | --------------------------- |
| [WebResourceResponse](#webresourceresponse) | 返回响应数据为空表示按原来方式加载,否则加载响应数据。 |
L
update  
laosan_ted 已提交
1297

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

Z
zhou-liting125 已提交
1300 1301
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1302
  @Entry
L
update  
laosan_ted 已提交
1303 1304
  @Component
  struct WebComponent {
1305
    controller: WebController = new WebController();
L
laosan_ted 已提交
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
    responseweb: WebResourceResponse = new WebResourceResponse();
    heads:Header[] = new Array();
    @State webdata: string = "<!DOCTYPE html>\n" +
    "<html>\n"+
    "<head>\n"+
    "<title>intercept test</title>\n"+
    "</head>\n"+
    "<body>\n"+
    "<h1>intercept test</h1>\n"+
    "</body>\n"+
    "</html>"
L
update  
laosan_ted 已提交
1317 1318
    build() {
      Column() {
1319
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
          .onInterceptRequest((event) => {
            console.log('url:' + event.request.getRequestUrl());
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
            var length = this.heads.push(head1);
            length = this.heads.push(head2);
            this.responseweb.setResponseHeader(this.heads);
            this.responseweb.setResponseData(this.webdata);
            this.responseweb.setResponseEncoding('utf-8');
            this.responseweb.setResponseMimeType('text/html');
            this.responseweb.setResponseCode(200);
            this.responseweb.setReasonMessage('OK');
            return this.responseweb;
          })
L
update  
laosan_ted 已提交
1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

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

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

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

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

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

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

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

通知收到获取权限请求。

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

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

L
laosan_ted 已提交
1426 1427
**示例:**

1428 1429 1430 1431 1432
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1433
    controller: WebController = new WebController();
1434 1435
    build() {
      Column() {
1436 1437 1438 1439 1440
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
1441 1442 1443 1444 1445 1446 1447
              primaryButton: {
                value: 'deny',
                action: () => {
                  event.request.deny();
                }
              },
              secondaryButton: {
1448 1449 1450 1451 1452 1453
                value: 'onConfirm',
                action: () => {
                  event.request.grant(event.request.getAccessibleResource());
                }
              },
              cancel: () => {
L
laosan_ted 已提交
1454
                event.request.deny();
1455
              }
1456
            })
1457
          })
Y
yu-shihao4 已提交
1458
      }
1459 1460 1461
    }
  }
  ```
1462

1463 1464 1465 1466 1467 1468 1469
### onContextMenuShow<sup>9+</sup>

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

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

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

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

Y
yu-shihao4 已提交
1476 1477
**返回值:**

Y
yu-shihao4 已提交
1478 1479 1480 1481
| 类型     | 说明                   |
| ------ | -------------------- |
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
1482
**示例:**
Y
yu-shihao4 已提交
1483

1484 1485 1486 1487 1488
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
1489
    controller: WebController = new WebController();
1490 1491
    build() {
      Column() {
1492
        Web({ src: 'www.example.com', controller: this.controller })
1493 1494 1495
        .onContextMenuShow((event) => {
            console.info("x coord = " + event.param.x());
            console.info("link url = " + event.param.getLinkUrl());
L
laosan_ted 已提交
1496
            return false;
1497 1498
        })
      }
1499 1500 1501
    }
  }
  ```
1502

L
laosan_ted 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
### 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);
        })
      }
    }
  }
  ```

1536 1537 1538 1539
### onGeolocationShow

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

1540
通知用户收到地理位置信息获取请求。
1541 1542 1543 1544 1545 1546 1547 1548 1549

**参数:**

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

**示例:**
1550

1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
  ```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 已提交
1581
## ConsoleMessage
1582

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

Z
zhou-liting125 已提交
1585
### getLineNumber
1586

Z
zhou-liting125 已提交
1587 1588 1589 1590
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
1591
**返回值:** 
L
laosan_ted 已提交
1592

1593 1594 1595
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
1596 1597 1598 1599 1600 1601 1602

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
1603
**返回值:** 
L
laosan_ted 已提交
1604

1605 1606 1607
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
1608 1609 1610 1611

### getMessageLevel

getMessageLevel(): MessageLevel
1612

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

Z
zhou-liting125 已提交
1615
**返回值:** 
L
laosan_ted 已提交
1616

1617 1618 1619
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
1620 1621 1622 1623 1624 1625 1626

### getSourceId

getSourceId(): string

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

Z
zhou-liting125 已提交
1627
**返回值:** 
L
laosan_ted 已提交
1628

1629 1630 1631
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
1632 1633

## JsResult
L
lixingchi1 已提交
1634

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

Z
zhou-liting125 已提交
1637 1638 1639
### handleCancel

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

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

Z
zhou-liting125 已提交
1643
### handleConfirm
L
add web  
liujinwei 已提交
1644

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

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

Z
zhou-liting125 已提交
1649 1650 1651 1652 1653 1654
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
1655
**参数:**
L
laosan_ted 已提交
1656

1657 1658 1659
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
1660 1661 1662

## WebResourceError

L
update  
laosan_ted 已提交
1663
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1664 1665 1666 1667 1668 1669 1670

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
1671
**返回值:** 
L
laosan_ted 已提交
1672

1673 1674 1675
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
1676 1677 1678 1679 1680 1681 1682

### getErrorInfo

getErrorInfo(): string

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

Z
zhou-liting125 已提交
1683
**返回值:** 
L
laosan_ted 已提交
1684

1685 1686 1687
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
1688 1689 1690

## WebResourceRequest

L
update  
laosan_ted 已提交
1691
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
1692 1693 1694 1695 1696 1697 1698

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

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

1701 1702 1703
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
1704 1705 1706 1707 1708 1709 1710

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

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

1713 1714 1715
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
1716 1717 1718 1719 1720 1721 1722

### isMainFrame

isMainFrame(): boolean

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

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

1725 1726 1727
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
1728 1729 1730 1731 1732 1733 1734

### isRedirect

isRedirect(): boolean

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

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

1737 1738 1739
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
1740 1741 1742 1743 1744 1745 1746

### isRequestGesture

isRequestGesture(): boolean

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

Z
zhou-liting125 已提交
1747
**返回值:** 
L
laosan_ted 已提交
1748

1749 1750 1751
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
1752 1753

## Header
L
liwenzhen 已提交
1754 1755 1756

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

1757 1758 1759 1760
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
1761

L
add web  
liujinwei 已提交
1762

Z
zhou-liting125 已提交
1763
## WebResourceResponse
L
add web  
liujinwei 已提交
1764

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

Z
zhou-liting125 已提交
1767
### getReasonMessage
T
Ted 已提交
1768

Z
zhou-liting125 已提交
1769
getReasonMessage(): string
T
Ted 已提交
1770

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

Z
zhou-liting125 已提交
1773
**返回值:** 
L
laosan_ted 已提交
1774

1775 1776 1777
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
1778

Z
zhou-liting125 已提交
1779
### getResponseCode
T
Ted 已提交
1780

Z
zhou-liting125 已提交
1781 1782 1783 1784
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
1785
**返回值:** 
L
laosan_ted 已提交
1786

1787 1788 1789
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
1790 1791 1792 1793 1794 1795 1796

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
1797
**返回值:** 
L
laosan_ted 已提交
1798

1799 1800 1801
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
1802 1803 1804 1805 1806 1807 1808

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
1809
**返回值:** 
L
laosan_ted 已提交
1810

1811 1812 1813
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
1814 1815 1816 1817 1818 1819 1820

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
1821
**返回值:** 
L
laosan_ted 已提交
1822

1823 1824 1825
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
1826 1827 1828 1829 1830 1831 1832

### getResponseMimeType

getResponseMimeType(): string

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

Z
zhou-liting125 已提交
1833
**返回值:** 
L
laosan_ted 已提交
1834

1835 1836 1837
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1838 1839 1840 1841 1842 1843 1844

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

setResponseData(data: string)

设置资源响应数据。

Z
zhou-liting125 已提交
1845
**参数:**
L
laosan_ted 已提交
1846

1847 1848 1849
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
1850 1851 1852 1853 1854 1855 1856

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
1857
**参数:**
L
laosan_ted 已提交
1858

1859 1860 1861
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
1862 1863 1864 1865 1866 1867 1868

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
1869
**参数:**
L
laosan_ted 已提交
1870

1871 1872 1873
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
1874 1875 1876 1877 1878 1879 1880

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
1881
**参数:**
L
laosan_ted 已提交
1882

1883 1884 1885
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
1886 1887 1888 1889 1890 1891 1892

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
1893
**参数:**
L
laosan_ted 已提交
1894

1895 1896 1897
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
1898 1899 1900 1901 1902 1903 1904

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
1905
**参数:**
L
laosan_ted 已提交
1906

1907 1908 1909
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
1910 1911

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

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

Z
zhou-liting125 已提交
1915
### handleFileList<sup>9+</sup>
1916

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

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

Z
zhou-liting125 已提交
1921
**参数:**
L
laosan_ted 已提交
1922

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

Z
zhou-liting125 已提交
1927 1928
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
1929
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
1930 1931 1932 1933 1934 1935 1936

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

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
1937
**返回值:** 
L
laosan_ted 已提交
1938

1939 1940 1941
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
1942 1943 1944 1945 1946 1947 1948

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

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
1949
**返回值:** 
L
laosan_ted 已提交
1950

1951 1952 1953
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
1954 1955 1956 1957 1958 1959 1960

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
1961
**返回值:** 
L
laosan_ted 已提交
1962

1963 1964 1965
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
1966 1967 1968 1969 1970 1971 1972

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

isCapture(): boolean

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

Z
zhou-liting125 已提交
1973
**返回值:** 
L
laosan_ted 已提交
1974

1975 1976 1977
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
1978 1979 1980

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

Z
zhou-liting125 已提交
1981
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
1982 1983 1984 1985 1986 1987 1988 1989

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

cancel(): void

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

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

1991 1992 1993 1994
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
1995
**参数:**
1996

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

Z
zhou-liting125 已提交
2002
**返回值:**
L
laosan_ted 已提交
2003

2004 2005 2006
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
2007 2008 2009 2010 2011 2012 2013

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

isHttpAuthInfoSaved(): boolean

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

Z
zhou-liting125 已提交
2014
**返回值:**
L
laosan_ted 已提交
2015

2016 2017 2018
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
2019

2020 2021
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
2022
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

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

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
2046
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057

**返回值:**

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

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

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

X
xiongjun_gitee 已提交
2058
对网页访问的给定权限进行授权。
2059 2060 2061 2062 2063 2064 2065

**参数:**

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

2066 2067
## WebContextMenuParam<sup>9+</sup>

Y
yu-shihao4 已提交
2068
实现长按页面元素跳出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079

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

x(): number

弹出菜单的x坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2080
| number | 显示正常返回非负整数,否则返回-1。 |
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091

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

y(): number

弹出菜单的y坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2092
| number | 显示正常返回非负整数,否则返回-1。 |
2093 2094 2095 2096 2097

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

getLinkUrl(): string

Y
yu-shihao4 已提交
2098
获取链接地址。
2099 2100 2101 2102 2103

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2104
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
2105 2106 2107 2108 2109

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

getUnfilterendLinkUrl(): string

Y
yu-shihao4 已提交
2110
获取链接地址。
2111 2112 2113 2114 2115

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2116
| string | 如果长按位置是链接,返回原始的url链接。 |
2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143

### 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 已提交
2144
实现长按页面元素跳出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157

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

closeContextMenu(): void

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

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

copyImage(): void

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

2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175
## JsGeolocation

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

### invoke

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

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

**参数:**

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

Z
zengyawen 已提交
2176 2177
## WebController

L
liwenzhen 已提交
2178
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
2179 2180 2181 2182 2183 2184 2185

### 创建对象

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

L
laosan_ted 已提交
2186 2187 2188 2189 2190 2191 2192
### requestFocus

requestFocus()

使当前web页面获取焦点。

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

L
laosan_ted 已提交
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212
  ```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 已提交
2213 2214 2215 2216
### accessBackward

accessBackward(): boolean

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

Z
zhou-liting125 已提交
2219
**返回值:**
L
laosan_ted 已提交
2220

2221 2222 2223
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2224

Z
zhou-liting125 已提交
2225
**示例:**
L
laosan_ted 已提交
2226

Z
zhou-liting125 已提交
2227 2228
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2229
  @Entry
L
update  
laosan_ted 已提交
2230 2231
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2232 2233
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2234 2235 2236
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
2237 2238 2239 2240
          .onClick(() => {
            let result = this.controller.accessBackward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2241
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2242
      }
L
update  
laosan_ted 已提交
2243 2244 2245 2246
    }
  }
  ```

L
lixingchi1 已提交
2247 2248 2249 2250
### accessForward

accessForward(): boolean

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

Z
zhou-liting125 已提交
2253
**返回值:**
L
laosan_ted 已提交
2254

2255 2256 2257
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2258

Z
zhou-liting125 已提交
2259
**示例:**
L
laosan_ted 已提交
2260

Z
zhou-liting125 已提交
2261 2262
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2263
  @Entry
L
update  
laosan_ted 已提交
2264 2265
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2266 2267
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2268 2269 2270
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
2271 2272 2273 2274
          .onClick(() => {
            let result = this.controller.accessForward();
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2275
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2276
      }
L
update  
laosan_ted 已提交
2277 2278 2279 2280
    }
  }
  ```

L
lixingchi1 已提交
2281
### accessStep
Z
zengyawen 已提交
2282

L
lixingchi1 已提交
2283
accessStep(step: number): boolean
Z
zengyawen 已提交
2284

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

Z
zhou-liting125 已提交
2287
**参数:**
Z
zengyawen 已提交
2288

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

Z
zhou-liting125 已提交
2293
**返回值:**
L
laosan_ted 已提交
2294

2295 2296 2297
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
2298

Z
zhou-liting125 已提交
2299
**示例:**
L
laosan_ted 已提交
2300

Z
zhou-liting125 已提交
2301 2302
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2303
  @Entry
L
update  
laosan_ted 已提交
2304 2305
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2306
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2307
    @State steps: number = 2;
L
laosan_ted 已提交
2308
  
L
update  
laosan_ted 已提交
2309 2310 2311
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
2312 2313 2314 2315
          .onClick(() => {
            let result = this.controller.accessStep(this.steps);
            console.log('result:' + result);
          })
Z
zhou-liting125 已提交
2316
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2317
      }
L
update  
laosan_ted 已提交
2318 2319 2320 2321
    }
  }
  ```

L
lixingchi1 已提交
2322 2323
### backward

L
update  
laosan_ted 已提交
2324
backward(): void
L
lixingchi1 已提交
2325

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

Z
zhou-liting125 已提交
2328
**示例:**
L
laosan_ted 已提交
2329

Z
zhou-liting125 已提交
2330 2331
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2332
  @Entry
L
update  
laosan_ted 已提交
2333 2334
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2335 2336
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2337 2338 2339
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
2340 2341 2342
          .onClick(() => {
            this.controller.backward();
          })
Z
zhou-liting125 已提交
2343
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2344
      }
L
update  
laosan_ted 已提交
2345 2346 2347
    }
  }
  ```
L
lixingchi1 已提交
2348 2349 2350

### forward

L
update  
laosan_ted 已提交
2351
forward(): void
L
lixingchi1 已提交
2352

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

Z
zhou-liting125 已提交
2355
**示例:**
L
laosan_ted 已提交
2356

Z
zhou-liting125 已提交
2357 2358
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2359
  @Entry
L
update  
laosan_ted 已提交
2360 2361
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2362 2363
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2364 2365 2366
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
2367 2368 2369
          .onClick(() => {
            this.controller.forward();
          })
Z
zhou-liting125 已提交
2370
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2371
      }
L
update  
laosan_ted 已提交
2372 2373 2374 2375
    }
  }
  ```

2376 2377 2378 2379 2380 2381
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

Z
zhou-liting125 已提交
2382
**参数:**
L
laosan_ted 已提交
2383

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

Z
zhou-liting125 已提交
2388
**示例:**
L
laosan_ted 已提交
2389

Z
zhou-liting125 已提交
2390 2391
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2392
  @Entry
L
update  
laosan_ted 已提交
2393 2394
  @Component
  struct WebComponent {
2395
    controller: WebController = new WebController();
L
laosan_ted 已提交
2396 2397
    @State step: number = -2;
  
L
update  
laosan_ted 已提交
2398 2399 2400
    build() {
      Column() {
        Button('backOrForward')
L
laosan_ted 已提交
2401 2402 2403
          .onClick(() => {
            this.controller.backOrForward(this.step);
          })
2404
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2405
      }
L
update  
laosan_ted 已提交
2406 2407 2408 2409 2410 2411 2412 2413
    }
  }
  ```

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

Z
zhou-liting125 已提交
2416
**参数:**
L
laosan_ted 已提交
2417

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

Z
zhou-liting125 已提交
2422
**示例:**
L
laosan_ted 已提交
2423

Z
zhou-liting125 已提交
2424 2425
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2426
  @Entry
L
update  
laosan_ted 已提交
2427 2428
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2429
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2430
    @State name: string = 'Object';
L
laosan_ted 已提交
2431
  
L
update  
laosan_ted 已提交
2432 2433 2434
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
2435 2436 2437
          .onClick(() => {
            this.controller.deleteJavaScriptRegister(this.name);
          })
Z
zhou-liting125 已提交
2438
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2439
      }
L
update  
laosan_ted 已提交
2440 2441 2442 2443
    }
  }
  ```

L
lixingchi1 已提交
2444 2445 2446 2447
### getHitTest

getHitTest(): HitTestType

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

Z
zhou-liting125 已提交
2450
**返回值:**
L
laosan_ted 已提交
2451

2452 2453 2454
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
2455

Z
zhou-liting125 已提交
2456
**示例:**
L
laosan_ted 已提交
2457

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

2478 2479 2480 2481 2482
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

Z
zhou-liting125 已提交
2483
**返回值:**
L
laosan_ted 已提交
2484

2485 2486 2487
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
2488

Z
zhou-liting125 已提交
2489
**示例:**
L
laosan_ted 已提交
2490

Z
zhou-liting125 已提交
2491 2492
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2493
  @Entry
L
update  
laosan_ted 已提交
2494 2495
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2496 2497
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2498 2499 2500
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
2501 2502 2503 2504 2505
          .onClick(() => {
            let hitValue = this.controller.getHitTestValue();
            console.log("hitType: " + hitValue.getType());
            console.log("extra: " + hitValue.getExtra());
          })
Z
zhou-liting125 已提交
2506
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2507
      }
L
update  
laosan_ted 已提交
2508 2509 2510 2511
    }
  }
  ```

2512 2513 2514 2515 2516
### getWebId<sup>9+</sup>
getWebId(): number

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

Z
zhou-liting125 已提交
2517
**返回值:**
L
laosan_ted 已提交
2518

2519 2520 2521
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
2522

Z
zhou-liting125 已提交
2523
**示例:**
L
laosan_ted 已提交
2524

Z
zhou-liting125 已提交
2525 2526
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2527
  @Entry
L
update  
laosan_ted 已提交
2528 2529
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2530 2531
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2532 2533 2534
    build() {
      Column() {
        Button('getWebId')
L
laosan_ted 已提交
2535 2536 2537 2538
          .onClick(() => {
            let id = this.controller.getWebId();
            console.log("id: " + id);
          })
Z
zhou-liting125 已提交
2539
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2540
      }
L
update  
laosan_ted 已提交
2541 2542 2543 2544
    }
  }
  ```

2545 2546 2547 2548
### getTitle<sup>9+</sup>
getTitle(): string

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

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

2552 2553 2554
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
2555

Z
zhou-liting125 已提交
2556
**示例:**
L
laosan_ted 已提交
2557

Z
zhou-liting125 已提交
2558 2559
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2560
  @Entry
L
update  
laosan_ted 已提交
2561 2562
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2563 2564
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2565 2566 2567
    build() {
      Column() {
        Button('getTitle')
L
laosan_ted 已提交
2568 2569 2570 2571
          .onClick(() => {
            let title = this.controller.getTitle();
            console.log("title: " + title);
          })
Z
zhou-liting125 已提交
2572
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2573
      }
L
update  
laosan_ted 已提交
2574 2575 2576 2577
    }
  }
  ```

2578 2579 2580 2581
### getPageHeight<sup>9+</sup>
getPageHeight(): number

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

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

2585 2586 2587
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
2588

Z
zhou-liting125 已提交
2589
**示例:**
L
laosan_ted 已提交
2590

Z
zhou-liting125 已提交
2591 2592
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2593
  @Entry
L
update  
laosan_ted 已提交
2594 2595
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2596 2597
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2598 2599 2600
    build() {
      Column() {
        Button('getPageHeight')
L
laosan_ted 已提交
2601 2602 2603 2604
          .onClick(() => {
            let pageHeight = this.controller.getPageHeight();
            console.log("pageHeight: " + pageHeight);
          })
Z
zhou-liting125 已提交
2605
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2606
      }
L
update  
laosan_ted 已提交
2607 2608 2609
    }
  }
  ```
2610 2611 2612 2613 2614

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

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

Z
zhou-liting125 已提交
2616
**返回值:**
L
laosan_ted 已提交
2617

2618 2619 2620
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
2621

Z
zhou-liting125 已提交
2622
**示例:**
L
laosan_ted 已提交
2623

Z
zhou-liting125 已提交
2624 2625
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2626
  @Entry
L
update  
laosan_ted 已提交
2627 2628
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2629 2630
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2631 2632 2633
    build() {
      Column() {
        Button('getDefaultUserAgent')
L
laosan_ted 已提交
2634 2635 2636 2637
          .onClick(() => {
            let userAgent = this.controller.getDefaultUserAgent();
            console.log("userAgent: " + userAgent);
          })
Z
zhou-liting125 已提交
2638
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2639
      }
L
update  
laosan_ted 已提交
2640 2641 2642 2643
    }
  }
  ```

L
lixingchi1 已提交
2644 2645
### loadData

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

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

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

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

Z
zhou-liting125 已提交
2654
**参数:**
L
laosan_ted 已提交
2655

2656 2657 2658 2659 2660 2661 2662
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
2663

Z
zhou-liting125 已提交
2664
**示例:**
L
laosan_ted 已提交
2665

Z
zhou-liting125 已提交
2666 2667
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2668
  @Entry
L
update  
laosan_ted 已提交
2669 2670
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2671 2672
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2673 2674 2675
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
2676 2677 2678 2679 2680 2681 2682
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
            });
          })
Z
zhou-liting125 已提交
2683
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2684
      }
L
update  
laosan_ted 已提交
2685 2686 2687 2688
    }
  }
  ```

Z
zengyawen 已提交
2689 2690
### loadUrl

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

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

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

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

Z
zhou-liting125 已提交
2699
**参数:**
L
laosan_ted 已提交
2700

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

Z
zhou-liting125 已提交
2706
**示例:**
L
laosan_ted 已提交
2707

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

L
lixingchi1 已提交
2727 2728 2729 2730
### onActive

onActive(): void

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

Z
zhou-liting125 已提交
2733
**示例:**
L
laosan_ted 已提交
2734

Z
zhou-liting125 已提交
2735 2736
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2737
  @Entry
L
update  
laosan_ted 已提交
2738 2739
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2740 2741
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2742 2743 2744
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
2745 2746 2747
          .onClick(() => {
            this.controller.onActive();
          })
Z
zhou-liting125 已提交
2748
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2749
      }
L
update  
laosan_ted 已提交
2750 2751 2752 2753
    }
  }
  ```

L
lixingchi1 已提交
2754 2755 2756 2757
### onInactive

onInactive(): void

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

Z
zhou-liting125 已提交
2760
**示例:**
L
laosan_ted 已提交
2761

Z
zhou-liting125 已提交
2762 2763
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2764
  @Entry
L
update  
laosan_ted 已提交
2765 2766
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2767 2768
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2769 2770 2771
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
2772 2773 2774
          .onClick(() => {
            this.controller.onInactive();
          })
Z
zhou-liting125 已提交
2775
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2776
      }
L
update  
laosan_ted 已提交
2777 2778 2779 2780
    }
  }
  ```

2781 2782 2783 2784
### zoom
zoom(factor: number): void

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

Z
zhou-liting125 已提交
2786
**参数:**
L
laosan_ted 已提交
2787

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

Z
zhou-liting125 已提交
2792
**示例:**
L
laosan_ted 已提交
2793

Z
zhou-liting125 已提交
2794 2795
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2796
  @Entry
L
update  
laosan_ted 已提交
2797 2798
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2799
    controller: WebController = new WebController();
L
update  
laosan_ted 已提交
2800
    @State factor: number = 1;
L
laosan_ted 已提交
2801
  
L
update  
laosan_ted 已提交
2802 2803 2804
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
2805 2806 2807
          .onClick(() => {
            this.controller.zoom(this.factor);
          })
Z
zhou-liting125 已提交
2808
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2809
      }
L
update  
laosan_ted 已提交
2810 2811 2812 2813
    }
  }
  ```

2814 2815 2816 2817
### zoomIn<sup>9+</sup>
zoomIn(): boolean

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

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

2821 2822 2823
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
2824

Z
zhou-liting125 已提交
2825
**示例:**
L
laosan_ted 已提交
2826

Z
zhou-liting125 已提交
2827 2828
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2829
  @Entry
L
update  
laosan_ted 已提交
2830 2831
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2832 2833
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2834 2835 2836
    build() {
      Column() {
        Button('zoomIn')
L
laosan_ted 已提交
2837 2838 2839 2840
          .onClick(() => {
            let result = this.controller.zoomIn();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
2841
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2842
      }
L
update  
laosan_ted 已提交
2843 2844 2845 2846
    }
  }
  ```

2847 2848 2849 2850
### zoomOut<sup>9+</sup>
zoomOut(): boolean

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

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

2854 2855 2856
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
2857

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

Z
zhou-liting125 已提交
2860 2861
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2862
  @Entry
L
update  
laosan_ted 已提交
2863 2864
  @Component
  struct WebComponent {
L
laosan_ted 已提交
2865 2866
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
2867 2868 2869
    build() {
      Column() {
        Button('zoomOut')
L
laosan_ted 已提交
2870 2871 2872 2873
          .onClick(() => {
            let result = this.controller.zoomOut();
            console.log("result: " + result);
          })
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
### refresh

Z
zhou-liting125 已提交
2882
refresh()
L
lixingchi1 已提交
2883

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('refresh')
L
laosan_ted 已提交
2898 2899 2900
          .onClick(() => {
            this.controller.refresh();
          })
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
### registerJavaScriptProxy

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

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

Z
zhou-liting125 已提交
2913
**参数:**
L
laosan_ted 已提交
2914

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

Z
zhou-liting125 已提交
2921
**示例:**
L
laosan_ted 已提交
2922

Z
zhou-liting125 已提交
2923 2924
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2925
  @Entry
L
update  
laosan_ted 已提交
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
  @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)
      }
    }
  }
  ```
2954

L
update  
laosan_ted 已提交
2955
  ```html
L
laosan_ted 已提交
2956
  <!-- index.html -->
L
update  
laosan_ted 已提交
2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
  <!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 已提交
2973 2974
### runJavaScript

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

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

Z
zhou-liting125 已提交
2979
**参数:**
L
laosan_ted 已提交
2980

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

Z
zhou-liting125 已提交
2986
**示例:**
L
laosan_ted 已提交
2987

Z
zhou-liting125 已提交
2988 2989
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2990
  @Entry
L
update  
laosan_ted 已提交
2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014
  @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 已提交
3015
  <!-- index.html -->
L
update  
laosan_ted 已提交
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031
  <!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 已提交
3032 3033
### stop

Z
zhou-liting125 已提交
3034
stop()
Z
zengyawen 已提交
3035

L
lixingchi1 已提交
3036
停止页面加载。
Z
zengyawen 已提交
3037

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

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

T
Ted 已提交
3059 3060 3061 3062 3063 3064
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
3065
**示例:**
L
laosan_ted 已提交
3066

Z
zhou-liting125 已提交
3067 3068
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3069
  @Entry
L
update  
laosan_ted 已提交
3070 3071
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3072 3073
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3074 3075 3076
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
3077 3078 3079
          .onClick(() => {
            this.controller.clearHistory();
          })
Z
zhou-liting125 已提交
3080
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3081
      }
L
update  
laosan_ted 已提交
3082 3083 3084 3085
    }
  }
  ```

Z
zhou-liting125 已提交
3086
### getCookieManager<sup>9+</sup>
T
Ted 已提交
3087 3088 3089 3090

getCookieManager(): WebCookie

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

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

3094 3095 3096
| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
3097

Z
zhou-liting125 已提交
3098
**示例:**
L
laosan_ted 已提交
3099

Z
zhou-liting125 已提交
3100 3101
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3102
  @Entry
L
update  
laosan_ted 已提交
3103 3104
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3105 3106
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3107 3108 3109
    build() {
      Column() {
        Button('getCookieManager')
L
laosan_ted 已提交
3110 3111 3112
          .onClick(() => {
            let cookieManager = this.controller.getCookieManager();
          })
Z
zhou-liting125 已提交
3113
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3114
      }
L
update  
laosan_ted 已提交
3115 3116 3117 3118
    }
  }
  ```

3119 3120
### createWebMessagePorts<sup>9+</sup>

E
echoorchid 已提交
3121
createWebMessagePorts(): Array\<WebMessagePort\>
3122 3123 3124 3125

创建Web信息端口。

**返回值:**
3126

L
laosan_ted 已提交
3127

3128 3129
| 类型                              | 说明            |
| ------------------------------- | ------------- |
E
echoorchid 已提交
3130
| Array\<[WebMessagePort](#webmessageport9)\> | web信息端口列表。 |
3131 3132

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

3134 3135 3136 3137 3138 3139
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3140
    ports: WebMessagePort[] = null;
3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157
    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 已提交
3158
发送Web信息端口到HTML5。
3159 3160

**参数:**
3161

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

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

3169 3170 3171 3172 3173 3174
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
3175
    ports: WebMessagePort[] = null;
3176 3177 3178 3179 3180 3181 3182 3183
    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 已提交
3184
            this.controller.postMessage({message: msgEvent, uri: "*"});
3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
          })
        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 已提交
3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235
### 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 })
      }
    }
  }
  ```

3236
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
3237
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
3238 3239 3240 3241 3242

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

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

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

3246 3247 3248
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
3249 3250 3251 3252 3253

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

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

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

3257 3258 3259
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
3260

L
laosan_ted 已提交
3261

T
Ted 已提交
3262
## WebCookie
Z
zhou-liting125 已提交
3263

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

### setCookie<sup>9+</sup>
T
Ted 已提交
3267 3268 3269 3270
setCookie(url: string, value: string): boolean

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

Z
zhou-liting125 已提交
3271
**参数:**
L
laosan_ted 已提交
3272

3273 3274 3275 3276
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
3277

Z
zhou-liting125 已提交
3278
**返回值:** 
L
laosan_ted 已提交
3279

3280 3281 3282
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
3283

Z
zhou-liting125 已提交
3284
**示例:**
L
laosan_ted 已提交
3285

Z
zhou-liting125 已提交
3286 3287
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3288
  @Entry
L
update  
laosan_ted 已提交
3289 3290
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3291 3292
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3293 3294 3295
    build() {
      Column() {
        Button('setCookie')
L
laosan_ted 已提交
3296
          .onClick(() => {
Z
zhou-liting125 已提交
3297
            let result = this.controller.getCookieManager().setCookie("www.example.com", "a=b");
L
laosan_ted 已提交
3298 3299
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
3300
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3301
      }
L
update  
laosan_ted 已提交
3302 3303 3304 3305
    }
  }
  ```

Z
zhou-liting125 已提交
3306
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
3307 3308 3309
saveCookieSync(): boolean

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

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

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

Z
zhou-liting125 已提交
3317
**示例:**
L
laosan_ted 已提交
3318

Z
zhou-liting125 已提交
3319 3320
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3321
  @Entry
L
update  
laosan_ted 已提交
3322 3323
  @Component
  struct WebComponent {
L
laosan_ted 已提交
3324 3325
    controller: WebController = new WebController();
  
L
update  
laosan_ted 已提交
3326 3327 3328
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
3329 3330 3331 3332
          .onClick(() => {
            let result = this.controller.getCookieManager().saveCookieSync();
            console.log("result: " + result);
          })
Z
zhou-liting125 已提交
3333
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3334
      }
L
update  
laosan_ted 已提交
3335 3336 3337 3338
    }
  }
  ```

L
laosan_ted 已提交
3339 3340
### getCookie<sup>9+</sup>
getCookie(url: string): string
3341

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

L
laosan_ted 已提交
3344
**参数:**
3345

L
laosan_ted 已提交
3346 3347 3348
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要获取的cookie所属的url。 |
3349

L
laosan_ted 已提交
3350 3351 3352 3353 3354
**返回值:**

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

Z
zhou-liting125 已提交
3356
**示例:**
L
laosan_ted 已提交
3357

Z
zhou-liting125 已提交
3358 3359
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3360
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3361 3362 3363 3364 3365 3366 3367
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
L
laosan_ted 已提交
3368
        Button('getCookie')
L
laosan_ted 已提交
3369
          .onClick(() => {
L
laosan_ted 已提交
3370 3371
            let value = webview.WebCookieManager.getCookie('www.example.com');
            console.log("value: " + value);
L
laosan_ted 已提交
3372
          })
Z
zhou-liting125 已提交
3373
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3374 3375 3376
      }
    }
  }
L
update  
laosan_ted 已提交
3377 3378
  ```

L
laosan_ted 已提交
3379 3380
### setCookie<sup>9+</sup>
setCookie(url: string, value: string): boolean
3381

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

L
laosan_ted 已提交
3384
**参数:**
3385

L
laosan_ted 已提交
3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value   | string | 是    | -    | 要设置的cookie的值。 |

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3401
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3402 3403 3404 3405 3406 3407 3408 3409 3410
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('setCookie')
          .onClick(() => {
L
laosan_ted 已提交
3411
            let result = web_webview.WebCookieManager.setCookie('www.example.com', 'a=b');
L
laosan_ted 已提交
3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434
            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 已提交
3435
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3436 3437 3438 3439 3440 3441 3442 3443 3444
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieSync')
          .onClick(() => {
L
laosan_ted 已提交
3445
            let result = web_webview.WebCookieManager.saveCookieSync();
L
laosan_ted 已提交
3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468
            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 已提交
3469
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3470 3471 3472 3473 3474 3475 3476 3477 3478
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3479
            web_webview.WebCookieManager.saveCookieAsync()
L
laosan_ted 已提交
3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507
              .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 已提交
3508
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3509 3510 3511 3512 3513 3514 3515 3516 3517
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
3518
            web_webview.WebCookieManager.saveCookieAsync(function(result) {
L
laosan_ted 已提交
3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542
              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 已提交
3543
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3544 3545 3546 3547 3548 3549 3550 3551 3552
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3553
            let result = web_webview.WebCookieManager.isCookieAllowed();
L
laosan_ted 已提交
3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576
            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 已提交
3577
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3578 3579 3580 3581 3582 3583 3584 3585 3586
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3587
            web_webview.WebCookieManager.putAcceptCookieEnabled(false);
L
laosan_ted 已提交
3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3610
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3611 3612 3613 3614 3615 3616 3617 3618 3619
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('isThirdPartyCookieAllowed')
          .onClick(() => {
L
laosan_ted 已提交
3620
            let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed();
L
laosan_ted 已提交
3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643
            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 已提交
3644
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3645 3646 3647 3648 3649 3650 3651 3652 3653
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('putAcceptThirdPartyCookieEnabled')
          .onClick(() => {
L
laosan_ted 已提交
3654
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false);
L
laosan_ted 已提交
3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

获取是否存在cookie。

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3677
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3678 3679 3680 3681 3682 3683 3684 3685 3686
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existCookie')
          .onClick(() => {
L
laosan_ted 已提交
3687
            let result = web_webview.WebCookieManager.existCookie();
L
laosan_ted 已提交
3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704
            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 已提交
3705
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3706 3707 3708 3709 3710 3711 3712 3713 3714
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteEntireCookie')
          .onClick(() => {
L
laosan_ted 已提交
3715
            web_webview.WebCookieManager.deleteEntireCookie();
L
laosan_ted 已提交
3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

清除所有会话cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
3732
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768
  @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 已提交
3769
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3770 3771 3772 3773 3774 3775 3776 3777 3778
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
3779
            let result = web_webview.WebDataBase.existHttpAuthCredentials();
L
laosan_ted 已提交
3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797
            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 已提交
3798
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3799
  @Entry
L
laosan_ted 已提交
3800 3801 3802 3803 3804 3805 3806 3807
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
3808
            web_webview.WebDataBase.deleteHttpAuthCredentials();
L
laosan_ted 已提交
3809
          })
Z
zhou-liting125 已提交
3810
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3811 3812 3813
      }
    }
  }
L
update  
laosan_ted 已提交
3814 3815
  ```

3816 3817 3818 3819
### getHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
3822
**参数:**
L
laosan_ted 已提交
3823

3824 3825 3826 3827
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
3828

Z
zhou-liting125 已提交
3829
**返回值:** 
L
laosan_ted 已提交
3830

3831 3832 3833
| 类型              | 说明                     |
| --------------- | ---------------------- |
| Array\<string\> | 包含用户名和密码的组数,检索失败返回空数组。 |
3834

Z
zhou-liting125 已提交
3835
**示例:**
L
laosan_ted 已提交
3836

Z
zhou-liting125 已提交
3837 3838
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3839
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850
  @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 已提交
3851
            this.username_password = web_webview.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
L
laosan_ted 已提交
3852 3853 3854 3855 3856
            console.log('num: ' + this.username_password.length);
            ForEach(this.username_password, (item) => {
              console.log('username_password: ' + item);
            }, item => item)
          })
Z
zhou-liting125 已提交
3857
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3858 3859 3860
      }
    }
  }
L
update  
laosan_ted 已提交
3861 3862
  ```

3863 3864 3865 3866
### saveHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
3869
**参数:**
L
laosan_ted 已提交
3870

3871 3872 3873 3874 3875 3876
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
3877

Z
zhou-liting125 已提交
3878
**示例:**
L
laosan_ted 已提交
3879

Z
zhou-liting125 已提交
3880 3881
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3882
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
3883 3884 3885 3886 3887 3888 3889 3890 3891 3892
  @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 已提交
3893
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
L
laosan_ted 已提交
3894
          })
Z
zhou-liting125 已提交
3895
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3896 3897 3898
      }
    }
  }
L
update  
laosan_ted 已提交
3899 3900
  ```

3901 3902 3903 3904 3905 3906 3907 3908
## GeolocationPermissions<sup>9+</sup>

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

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

static allowGeolocation(origin: string): void

3909
允许指定来源使用地理位置接口。
3910 3911 3912 3913 3914 3915 3916 3917

**参数:**

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

**示例:**
3918

3919 3920
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3921
  import web_webview from '@ohos.web.webview';
3922 3923 3924 3925 3926 3927 3928 3929 3930
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('allowGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
3931
            web_webview.GeolocationPermissions.allowGeolocation(this.origin);
3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

static deleteGeolocation(origin: string): void

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

**参数:**

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

**示例:**
3952

3953 3954
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3955
  import web_webview from '@ohos.web.webview';
3956 3957 3958 3959 3960 3961 3962 3963 3964
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('deleteGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
3965
            web_webview.GeolocationPermissions.deleteGeolocation(this.origin);
3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

static deleteAllGeolocation(): void

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

**示例:**
3980

3981 3982
  ```ts
  // xxx.ets
L
laosan_ted 已提交
3983
  import web_webview from '@ohos.web.webview';
3984 3985 3986 3987 3988 3989 3990 3991
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllGeolocation')
          .onClick(() => {
L
laosan_ted 已提交
3992
            web_webview.GeolocationPermissions.deleteAllGeolocation();
3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

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

**参数:**

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

**示例:**
4014

4015 4016
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4017
  import web_webview from '@ohos.web.webview';
4018 4019 4020 4021 4022 4023 4024 4025 4026
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('getAccessibleGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4027
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
4028
              if (error) {
4029
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error));
4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056
                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   | 是   | -     | 指定源的字符串索引。 |

**返回值:**

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

**示例:**
4060

4061 4062
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4063
  import web_webview from '@ohos.web.webview';
4064 4065 4066 4067 4068 4069 4070 4071 4072
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "file:///";
    build() {
      Column() {
        Button('getAccessibleGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4073
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin).then(result => {
4074 4075
              console.log('getAccessibleGeolocationPromise result: ' + result);
            }).catch(error => {
4076
              console.log('getAccessibleGeolocationPromise error: ' + JSON.stringify(error));
4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

4089
以回调方式异步获取已存储地理位置权限状态的所有源信息。
4090 4091 4092 4093 4094

**参数:**

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

**示例:**
4098

4099 4100
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4101
  import web_webview from '@ohos.web.webview';
4102 4103 4104 4105 4106 4107 4108 4109
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('getStoredGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4110
            web_webview.GeolocationPermissions.getStoredGeolocation((error, origins) => {
4111
              if (error) {
4112
                console.log('getStoredGeolocationAsync error: ' + JSON.stringify(error));
4113 4114
                return;
              }
4115
              let origins_str: string = origins.join();
4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128
              console.log('getStoredGeolocationAsync origins: ' + origins_str);
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

4129
以Promise方式异步获取已存储地理位置权限状态的所有源信息。
4130 4131 4132 4133 4134

**参数:**

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

**返回值:**

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

**示例:**
4144

4145 4146
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4147
  import web_webview from '@ohos.web.webview';
4148 4149 4150 4151 4152 4153 4154 4155
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('getStoredGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4156
            web_webview.GeolocationPermissions.getStoredGeolocation().then(origins => {
4157
              let origins_str: string = origins.join();
4158 4159
              console.log('getStoredGeolocationPromise origins: ' + origins_str);
            }).catch(error => {
4160
                console.log('getStoredGeolocationPromise error: ' + JSON.stringify(error));
4161 4162 4163 4164 4165 4166 4167 4168
            });
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

4169 4170 4171 4172 4173 4174
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

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

Z
zhou-liting125 已提交
4176
**示例:**
L
laosan_ted 已提交
4177

Z
zhou-liting125 已提交
4178 4179
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4180
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4181 4182 4183 4184 4185 4186 4187 4188
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
L
laosan_ted 已提交
4189
            web_webview.WebStorage.deleteAllData();
L
laosan_ted 已提交
4190
          })
Z
zhou-liting125 已提交
4191
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4192 4193 4194 4195
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4196 4197
  ```

4198 4199 4200 4201
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

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

Z
zhou-liting125 已提交
4203
**参数:**
L
laosan_ted 已提交
4204

4205 4206 4207
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4208

Z
zhou-liting125 已提交
4209
**示例:**
L
laosan_ted 已提交
4210

Z
zhou-liting125 已提交
4211 4212
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4213
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4214 4215 4216 4217 4218 4219 4220 4221 4222
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
L
laosan_ted 已提交
4223
            web_webview.WebStorage.deleteOrigin(this.origin);
L
laosan_ted 已提交
4224
          })
Z
zhou-liting125 已提交
4225
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4226 4227 4228 4229
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4230 4231
  ```

4232
### getOrigins<sup>9+</sup>
L
laosan_ted 已提交
4233
static getOrigins(callback: AsyncCallback<Array<WebStorageOrigin>>) : void
4234 4235

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

Z
zhou-liting125 已提交
4237
**参数:**
L
laosan_ted 已提交
4238

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

Z
zhou-liting125 已提交
4243
**示例:**
L
laosan_ted 已提交
4244

Z
zhou-liting125 已提交
4245 4246
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4247
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4248 4249 4250 4251 4252 4253 4254 4255 4256
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
4257
            web_webview.WebStorage.getOrigins((error, origins) => {
L
laosan_ted 已提交
4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268
              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 已提交
4269
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4270 4271
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4272
    }
L
laosan_ted 已提交
4273 4274
  }
  ```
L
update  
laosan_ted 已提交
4275

4276
### getOrigins<sup>9+</sup>
L
laosan_ted 已提交
4277
static getOrigins() : Promise<Array<WebStorageOrigin>>
4278 4279

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

Z
zhou-liting125 已提交
4281
**返回值:**
L
laosan_ted 已提交
4282

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

Z
zhou-liting125 已提交
4287
**示例:**
L
laosan_ted 已提交
4288

Z
zhou-liting125 已提交
4289 4290
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4291
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4292 4293 4294 4295 4296 4297 4298 4299 4300
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
4301
            web_webview.WebStorage.getOrigins()
L
laosan_ted 已提交
4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312
              .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 已提交
4313
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4314 4315
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4316
    }
L
laosan_ted 已提交
4317
  }
L
update  
laosan_ted 已提交
4318 4319
  ```

4320
### getOriginQuota<sup>9+</sup>
4321
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
4322 4323

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

Z
zhou-liting125 已提交
4325
**参数:**
L
laosan_ted 已提交
4326

4327 4328 4329
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
4330
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
4331

Z
zhou-liting125 已提交
4332
**示例:**
L
laosan_ted 已提交
4333

Z
zhou-liting125 已提交
4334 4335
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4336
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4337 4338 4339 4340 4341 4342 4343 4344 4345
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4346
            web_webview.WebStorage.getOriginQuota(this.origin, (error, quota) => {
L
laosan_ted 已提交
4347 4348 4349 4350 4351 4352 4353
              if (error) {
                console.log('error: ' + error);
                return;
              }
              console.log('quota: ' + quota);
            })
          })
Z
zhou-liting125 已提交
4354
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4355 4356
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4357
    }
L
laosan_ted 已提交
4358
  }
L
update  
laosan_ted 已提交
4359 4360
  ```

4361
### getOriginQuota<sup>9+</sup>
4362
static getOriginQuota(origin : string) : Promise\<number>
4363 4364

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

Z
zhou-liting125 已提交
4366
**参数:**
L
laosan_ted 已提交
4367

4368 4369 4370
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4371

Z
zhou-liting125 已提交
4372
**返回值:**
L
laosan_ted 已提交
4373

4374 4375
| 类型               | 说明                      |
| ---------------- | ----------------------- |
4376
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
4377

Z
zhou-liting125 已提交
4378
**示例:**
L
laosan_ted 已提交
4379

Z
zhou-liting125 已提交
4380 4381
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4382
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4383 4384 4385 4386 4387 4388 4389 4390 4391
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4392
            web_webview.WebStorage.getOriginQuota(this.origin)
L
laosan_ted 已提交
4393 4394 4395 4396 4397 4398 4399
              .then(quota => {
                console.log('quota: ' + quota);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
4400
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4401 4402 4403 4404
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4405 4406
  ```

4407
### getOriginUsage<sup>9+</sup>
4408
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
4409 4410

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

Z
zhou-liting125 已提交
4412
**参数:**
L
laosan_ted 已提交
4413

4414 4415 4416
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
4417
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
4418

Z
zhou-liting125 已提交
4419
**示例:**
L
laosan_ted 已提交
4420

Z
zhou-liting125 已提交
4421 4422
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4423
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4424 4425 4426 4427 4428 4429 4430 4431 4432
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
L
laosan_ted 已提交
4433
            web_webview.WebStorage.getOriginUsage(this.origin, (error, usage) => {
L
laosan_ted 已提交
4434 4435 4436 4437
              if (error) {
                console.log('error: ' + error);
                return;
              }
L
laosan_ted 已提交
4438
              console.log('usage: ' + usage);
L
laosan_ted 已提交
4439 4440
            })
          })
Z
zhou-liting125 已提交
4441
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4442 4443
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
4444
    }
L
laosan_ted 已提交
4445
  }
L
update  
laosan_ted 已提交
4446 4447
  ```

4448
### getOriginUsage<sup>9+</sup>
4449
static getOriginUsage(origin : string) : Promise\<number>
4450 4451

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

Z
zhou-liting125 已提交
4453
**参数:**
L
laosan_ted 已提交
4454

4455 4456 4457
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4458

Z
zhou-liting125 已提交
4459
**返回值:**
L
laosan_ted 已提交
4460

4461 4462
| 类型               | 说明                     |
| ---------------- | ---------------------- |
4463
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
4464

Z
zhou-liting125 已提交
4465
**示例:**
L
laosan_ted 已提交
4466

Z
zhou-liting125 已提交
4467 4468
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4469
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4470 4471 4472 4473 4474 4475 4476 4477 4478
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    origin: string = "origin";
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
4479
            web_webview.WebStorage.getOriginUsage(this.origin)
L
laosan_ted 已提交
4480 4481 4482 4483 4484 4485 4486
              .then(usage => {
                console.log('usage: ' + usage);
              })
              .catch(error => {
                console.log('error: ' + error);
              })
          })
Z
zhou-liting125 已提交
4487
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4488 4489 4490 4491
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4492
  ```
F
Fred Ranking 已提交
4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505
### searchAllAsync<sup>9+</sup>

searchAllAsync(searchString: string): void

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

**参数:**

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

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

F
Fred Ranking 已提交
4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545
  ```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 已提交
4546

F
Fred Ranking 已提交
4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579
  ```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 已提交
4580

F
Fred Ranking 已提交
4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614
  ```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 已提交
4615

F
Fred Ranking 已提交
4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633
  ```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 已提交
4634

4635
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
4636

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

Z
zhou-liting125 已提交
4639
**参数:**
L
laosan_ted 已提交
4640

4641 4642 4643 4644 4645
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
4646 4647 4648

## MessageLevel枚举说明

4649 4650
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
4651 4652 4653 4654 4655 4656 4657 4658 4659 4660
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

4661 4662 4663 4664 4665 4666 4667
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
4668 4669 4670

## MixedMode枚举说明

4671 4672
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
4673
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
4674 4675
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
4676 4677

## CacheMode枚举说明
4678 4679
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
4680
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
4681 4682 4683
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
4684 4685

## FileSelectorMode枚举说明
4686 4687 4688 4689
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
4690
| FileOpenFolderMode   | 打开上传文件夹模式。 |
4691
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
4692 4693 4694

 ## HitTestType枚举说明

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

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

X
xiongjun_gitee 已提交
4707 4708
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
F
Fred Ranking 已提交
4709
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|
4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739

## 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 已提交
4740
  import web_webview from '@ohos.web.webview'
4741 4742 4743 4744 4745 4746 4747 4748
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
4749
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784
            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 已提交
4785
  import web_webview from '@ohos.web.webview'
4786 4787 4788 4789 4790 4791 4792 4793
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
4794
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806
            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 })
      }
    }
  }
  ```
4807 4808 4809 4810

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

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

E
echoorchid 已提交
4812
### close<sup>9+</sup>
4813 4814 4815 4816
close(): void

关闭该信息端口。

E
echoorchid 已提交
4817
### postMessageEvent<sup>9+</sup>
4818 4819 4820 4821 4822
postMessageEvent(message: WebMessageEvent): void

发送消息。

**参数:**
4823

4824 4825
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
4826
| message   | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
4827 4828

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

4830 4831 4832 4833 4834 4835
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
4836
    ports: WebMessagePort[] = null;
4837 4838 4839 4840 4841 4842

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
4843
            msg.setData("post message from ets to html5");
L
laosan_ted 已提交
4844
            this.ports[0].postMessageEvent(msg);
4845 4846 4847 4848 4849 4850 4851
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
4852
### onMessageEvent<sup>9+</sup>
4853 4854
onMessageEvent(callback: (result: string) => void): void

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

**参数:**
4858

4859 4860 4861 4862 4863
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | function | 是    | -    | 接收消息的回调函数。 |

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

4865 4866 4867 4868 4869 4870
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
4871
    ports: WebMessagePort[] = null;
4872 4873 4874 4875 4876

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
L
laosan_ted 已提交
4877
            this.ports[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
4878
              console.log("received message from html5, on message:" + result);
4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


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

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

E
echoorchid 已提交
4892
### getData<sup>9+</sup>
4893 4894 4895 4896 4897
getData(): string

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

**返回值:**
4898

4899 4900 4901 4902
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
4903
**示例:**
L
laosan_ted 已提交
4904

E
echoorchid 已提交
4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922
  ```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);
          })
      }
    }
  }
  ```
4923

E
echoorchid 已提交
4924
### setData<sup>9+</sup>
4925 4926 4927 4928 4929
setData(data: string): void

设置当前对象中的消息。

**参数:**
4930

4931 4932 4933 4934 4935
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| data   | string | 是    | -    | 要发送的消息。 |

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

4937 4938 4939 4940 4941 4942
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
4943
    ports: WebMessagePort[] = null;
4944 4945 4946 4947 4948 4949

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
            var msg = new WebMessageEvent();
E
echoorchid 已提交
4950
            msg.setData("post message from ets to HTML5");
L
laosan_ted 已提交
4951
            this.ports[0].postMessageEvent(msg);
4952 4953 4954 4955 4956 4957
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
4958
### getPorts<sup>9+</sup>
E
echoorchid 已提交
4959
getPorts(): Array\<WebMessagePort\>
4960 4961 4962 4963

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

**返回值:**
4964

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

E
echoorchid 已提交
4969
**示例:**
L
laosan_ted 已提交
4970

E
echoorchid 已提交
4971 4972 4973 4974 4975
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
L
laosan_ted 已提交
4976
    ports: WebMessagePort[] = null;
E
echoorchid 已提交
4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990
    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);
          })
      }
    }
  }
  ```
4991

E
echoorchid 已提交
4992
### setPorts<sup>9+</sup>
E
echoorchid 已提交
4993
setPorts(ports: Array\<WebMessagePort\>): void
4994 4995 4996 4997

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

**参数:**
4998

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

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

5005 5006 5007 5008 5009 5010
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
L
laosan_ted 已提交
5011 5012
    ports: WebMessagePort[] = null;
  
5013 5014 5015 5016 5017 5018 5019 5020
    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 已提交
5021
            this.controller.postMessage({message: msgEvent, uri: "*"});
5022 5023 5024 5025 5026 5027
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```