ts-basic-components-web.md 150.1 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
## 子组件



## 接口

Y
yuhaoge 已提交
19
Web(options: { src: ResourceStr, controller: WebController | WebviewController})
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)                           | 是    | 网页资源地址。 |
Y
yuhaoge 已提交
30
| controller | [WebController](#webcontroller)[WebviewController](../apis/js-apis-webview.md#webviewcontroller) |是    | 控制器。    |
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 {
Y
yamila 已提交
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
      }
    }
  }
  ```
Y
yuhaoge 已提交
48 49 50 51 52 53 54
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
55
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
56 57 58 59 60 61 62
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
Z
zengyawen 已提交
63

L
laosan_ted 已提交
64 65 66 67 68 69
  加载本地网页
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
70
    controller: WebController = new WebController()
L
laosan_ted 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
    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 已提交
88

L
update  
laosan_ted 已提交
89
## 属性
Z
zhou-liting125 已提交
90 91 92 93 94 95 96 97 98

web组件的网络属性。

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

Z
zhou-liting125 已提交
99
**参数:**
L
laosan_ted 已提交
100

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

Z
zhou-liting125 已提交
105
**示例:**
L
laosan_ted 已提交
106

Z
zhou-liting125 已提交
107 108
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
109
  @Entry
L
update  
laosan_ted 已提交
110 111
  @Component
  struct WebComponent {
Y
yamila 已提交
112
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
113 114
    build() {
      Column() {
115 116
        Web({ src: 'www.example.com', controller: this.controller })
          .domStorageAccess(true)
L
update  
laosan_ted 已提交
117 118 119 120 121
      }
    }
  }
  ```

Z
zhou-liting125 已提交
122 123 124 125
### fileAccess

fileAccess(fileAccess: boolean)

E
echoorchid 已提交
126
设置是否开启应用中文件系统的访问,默认启用。[$rawfile(filepath/filename)](../../quick-start/resource-categories-and-access.md)中rawfile路径的文件不受该属性影响而限制访问。
Z
zhou-liting125 已提交
127

Z
zhou-liting125 已提交
128
**参数:**
L
laosan_ted 已提交
129

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

Z
zhou-liting125 已提交
134
**示例:**
L
laosan_ted 已提交
135

Z
zhou-liting125 已提交
136 137
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
138
  @Entry
L
update  
laosan_ted 已提交
139 140
  @Component
  struct WebComponent {
Y
yamila 已提交
141
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
142 143
    build() {
      Column() {
144
        Web({ src: 'www.example.com', controller: this.controller })
145
          .fileAccess(true)
L
update  
laosan_ted 已提交
146 147 148 149 150
      }
    }
  }
  ```

Z
zhou-liting125 已提交
151 152 153 154 155 156
### imageAccess

imageAccess(imageAccess: boolean)

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

Z
zhou-liting125 已提交
157
**参数:**
L
laosan_ted 已提交
158

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

Z
zhou-liting125 已提交
163
**示例:**
Z
zhou-liting125 已提交
164 165
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
166
  @Entry
L
update  
laosan_ted 已提交
167 168
  @Component
  struct WebComponent {
Y
yamila 已提交
169
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
170 171
    build() {
      Column() {
172 173
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
174 175 176 177 178
      }
    }
  }
  ```

Z
zhou-liting125 已提交
179 180 181
### javaScriptProxy

javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\<string\>,
Y
yuhaoge 已提交
182
    controller: WebController | WebviewController})
Z
zhou-liting125 已提交
183 184 185

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

Z
zhou-liting125 已提交
186
**参数:**
L
laosan_ted 已提交
187

188 189 190 191 192
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
| object     | object          | 是    | -    | 参与注册的对象。只能声明方法,不能声明属性。    |
| name       | string          | 是    | -    | 注册对象的名称,与window中调用的对象名一致。 |
| methodList | Array\<string\> | 是    | -    | 参与注册的应用侧JavaScript对象的方法。  |
Y
yuhaoge 已提交
193
| controller | [WebController](#webcontroller)[WebviewController](../apis/js-apis-webview.md#webviewcontroller) | 是    | -    | 控制器。    |
194

Z
zhou-liting125 已提交
195
**示例:**
L
laosan_ted 已提交
196

Z
zhou-liting125 已提交
197 198
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
199
  @Entry
L
update  
laosan_ted 已提交
200 201
  @Component
  struct WebComponent {
Y
yamila 已提交
202
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
203 204
    testObj = {
      test: (data1, data2, data3) => {
Y
yamila 已提交
205 206 207 208
        console.log("data1:" + data1)
        console.log("data2:" + data2)
        console.log("data3:" + data3)
        return "AceString"
L
update  
laosan_ted 已提交
209 210
      },
      toString: () => {
Y
yamila 已提交
211
        console.log('toString' + "interface instead.")
L
update  
laosan_ted 已提交
212 213 214 215
      }
    }
    build() {
      Column() {
216 217 218 219 220 221 222
        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 已提交
223 224 225 226 227
        })
      }
    }
  }
  ```
Y
yuhaoge 已提交
228 229 230 231 232 233 234
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
235
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
236 237
    testObj = {
      test: (data1, data2, data3) => {
Y
yamila 已提交
238 239 240 241
        console.log("data1:" + data1)
        console.log("data2:" + data2)
        console.log("data3:" + data3)
        return "AceString"
Y
yuhaoge 已提交
242 243
      },
      toString: () => {
Y
yamila 已提交
244
        console.log('toString' + "interface instead.")
Y
yuhaoge 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
      }
    }
    build() {
      Column() {
        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 已提交
261

Z
zhou-liting125 已提交
262 263 264 265 266 267
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

Z
zhou-liting125 已提交
268
**参数:**
L
laosan_ted 已提交
269

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

Z
zhou-liting125 已提交
274
**示例:**
L
laosan_ted 已提交
275

Z
zhou-liting125 已提交
276 277
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
278
  @Entry
L
update  
laosan_ted 已提交
279 280
  @Component
  struct WebComponent {
Y
yamila 已提交
281
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
282 283
    build() {
      Column() {
284 285
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
L
update  
laosan_ted 已提交
286 287 288 289 290
      }
    }
  }
  ```

Z
zhou-liting125 已提交
291 292 293 294 295 296
### mixedMode

mixedMode(mixedMode: MixedMode)

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

Z
zhou-liting125 已提交
297
**参数:**
L
laosan_ted 已提交
298

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

Z
zhou-liting125 已提交
303
**示例:**
L
laosan_ted 已提交
304

Z
zhou-liting125 已提交
305 306
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
307
  @Entry
L
update  
laosan_ted 已提交
308 309
  @Component
  struct WebComponent {
Y
yamila 已提交
310 311
    controller: WebController = new WebController()
    @State mode: MixedMode = MixedMode.All
L
update  
laosan_ted 已提交
312 313
    build() {
      Column() {
314 315
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
316 317 318 319 320
      }
    }
  }
  ```

Z
zhou-liting125 已提交
321 322 323 324 325 326
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

Z
zhou-liting125 已提交
327
**参数:**
L
laosan_ted 已提交
328

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

Z
zhou-liting125 已提交
333
**示例:**
L
laosan_ted 已提交
334

Z
zhou-liting125 已提交
335 336
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
337
  @Entry
L
update  
laosan_ted 已提交
338 339
  @Component
  struct WebComponent {
Y
yamila 已提交
340
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
341 342
    build() {
      Column() {
343 344
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
345 346 347 348 349
      }
    }
  }
  ```

Z
zhou-liting125 已提交
350 351 352 353 354 355
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

Z
zhou-liting125 已提交
356
**参数:**
L
laosan_ted 已提交
357

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

Z
zhou-liting125 已提交
362
**示例:**
L
laosan_ted 已提交
363

Z
zhou-liting125 已提交
364 365
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
366
  @Entry
L
update  
laosan_ted 已提交
367 368
  @Component
  struct WebComponent {
Y
yamila 已提交
369
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
370 371
    build() {
      Column() {
372 373
        Web({ src: 'www.example.com', controller: this.controller })
          .zoomAccess(true)
L
update  
laosan_ted 已提交
374 375 376 377 378
      }
    }
  }
  ```

Z
zhou-liting125 已提交
379 380 381 382 383 384
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

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

Z
zhou-liting125 已提交
385
**参数:**
L
laosan_ted 已提交
386

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

Z
zhou-liting125 已提交
391
**示例:**
L
laosan_ted 已提交
392

Z
zhou-liting125 已提交
393 394
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
395
  @Entry
L
update  
laosan_ted 已提交
396 397
  @Component
  struct WebComponent {
Y
yamila 已提交
398
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
399 400
    build() {
      Column() {
401 402
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
403 404 405 406 407
      }
    }
  }
  ```

Z
zhou-liting125 已提交
408 409 410 411 412 413
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

Z
zhou-liting125 已提交
414
**参数:**
L
laosan_ted 已提交
415

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

L
laosan_ted 已提交
420
**示例:**
L
laosan_ted 已提交
421

Z
zhou-liting125 已提交
422 423
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
424
  @Entry
L
update  
laosan_ted 已提交
425 426
  @Component
  struct WebComponent {
Y
yamila 已提交
427
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
428 429
    build() {
      Column() {
430 431
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
432 433 434 435 436
      }
    }
  }
  ```

L
laosan_ted 已提交
437 438 439 440 441 442 443
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

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

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

L
laosan_ted 已提交
445 446 447 448 449
| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
| geolocationAccess | boolean | 是    | true    | 设置是否开启获取地理位置权限。 |

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

L
laosan_ted 已提交
451 452 453 454 455
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
456
    controller: WebController = new WebController()
L
laosan_ted 已提交
457 458
    build() {
      Column() {
459 460
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
461 462 463 464 465
      }
    }
  }
  ```

L
laosan_ted 已提交
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
### mediaPlayGestureAccess

mediaPlayGestureAccess(access: boolean)

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

**参数:**

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

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
485 486
    controller: WebController = new WebController()
    @State access: boolean = true
L
laosan_ted 已提交
487 488 489 490 491 492 493 494 495
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .mediaPlayGestureAccess(this.access)
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
### multiWindowAccess<sup>9+</sup>

multiWindowAccess(multiWindow: boolean)

设置是否开启多窗口权限,默认不开启。

**参数:**

| 参数名            | 参数类型    | 必填   | 默认值  | 参数描述              |
| -------------- | ------- | ---- | ---- | ----------------- |
| multiWindow | boolean | 是    | false | 设置是否开启多窗口权限。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
515
    controller: WebController = new WebController()
X
xiongjun_gitee 已提交
516 517 518 519 520 521 522 523 524
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .multiWindowAccess(true)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
525 526 527 528 529 530
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
531
**参数:**
L
laosan_ted 已提交
532

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

Z
zhou-liting125 已提交
537
**示例:**
L
laosan_ted 已提交
538

Z
zhou-liting125 已提交
539 540
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
541
  @Entry
L
update  
laosan_ted 已提交
542 543
  @Component
  struct WebComponent {
Y
yamila 已提交
544 545
    controller: WebController = new WebController()
    @State mode: CacheMode = CacheMode.None
L
update  
laosan_ted 已提交
546 547
    build() {
      Column() {
548 549
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
550 551 552 553 554
      }
    }
  }
  ```

L
laosan_ted 已提交
555
### textZoomRatio<sup>9+</sup>
Z
zhou-liting125 已提交
556

L
laosan_ted 已提交
557
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
558 559 560

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

Z
zhou-liting125 已提交
561
**参数:**
L
laosan_ted 已提交
562

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

Z
zhou-liting125 已提交
567
**示例:**
L
laosan_ted 已提交
568

Z
zhou-liting125 已提交
569 570
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
571
  @Entry
L
update  
laosan_ted 已提交
572 573
  @Component
  struct WebComponent {
Y
yamila 已提交
574 575
    controller: WebController = new WebController()
    @State atio: number = 150
L
update  
laosan_ted 已提交
576 577
    build() {
      Column() {
578 579
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
580 581 582 583 584
      }
    }
  }
  ```

L
laosan_ted 已提交
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
### initialScale<sup>9+</sup>

initialScale(percent: number)

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

**参数:**

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

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
    @State percent: number = 100
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .initialScale(this.percent)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
615 616 617 618 619 620
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
621
**参数:**
L
laosan_ted 已提交
622

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

Z
zhou-liting125 已提交
627
**示例:**
L
laosan_ted 已提交
628

Z
zhou-liting125 已提交
629 630
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
631
  @Entry
L
update  
laosan_ted 已提交
632 633
  @Component
  struct WebComponent {
Y
yamila 已提交
634 635
    controller: WebController = new WebController()
    @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 已提交
636 637
    build() {
      Column() {
638 639
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
640 641 642 643 644
      }
    }
  }
  ```

L
laosan_ted 已提交
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663
### webDebuggingAccess<sup>9+</sup>

webDebuggingAccess(webDebuggingAccess: boolean)

设置是否启用网页调试功能。

**参数:**

| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| webDebuggingAccess | boolean | 是    | false    | 设置是否启用网页调试功能。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
664 665
    controller: WebController = new WebController()
    @State webDebuggingAccess: boolean = true
L
laosan_ted 已提交
666 667 668 669 670 671 672 673 674
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webDebuggingAccess(this.webDebuggingAccess)
      }
    }
  }
  ```

H
geshi  
HelloCrease 已提交
675
>  **说明:**
Z
zengyawen 已提交
676
>
677
>  通用属性仅支持[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 已提交
678 679 680

## 事件

L
liwenzhen 已提交
681
不支持通用事件。
Z
zengyawen 已提交
682

L
update  
laosan_ted 已提交
683 684 685 686 687 688
### onAlert

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

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

Z
zhou-liting125 已提交
689
**参数:**
L
laosan_ted 已提交
690

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

Z
zhou-liting125 已提交
697
**返回值:**
L
laosan_ted 已提交
698

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

Z
zhou-liting125 已提交
703
**示例:**
L
laosan_ted 已提交
704

Z
zhou-liting125 已提交
705 706
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
707
  @Entry
L
update  
laosan_ted 已提交
708 709
  @Component
  struct WebComponent {
Y
yamila 已提交
710
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
711 712
    build() {
      Column() {
713
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
714 715
          .onAlert((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
716
              title: 'onAlert',
L
laosan_ted 已提交
717
              message: 'text',
L
laosan_ted 已提交
718 719 720 721 722 723 724 725
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
726 727 728 729 730 731 732 733
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
734
            return true
L
update  
laosan_ted 已提交
735 736 737 738 739 740 741 742 743 744
          })
      }
    }
  }
  ```

### onBeforeUnload

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

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

Z
zhou-liting125 已提交
747
**参数:**
L
laosan_ted 已提交
748

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

Z
zhou-liting125 已提交
755
**返回值:**
L
laosan_ted 已提交
756

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

Z
zhou-liting125 已提交
761
**示例:**
L
laosan_ted 已提交
762

Z
zhou-liting125 已提交
763 764
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
765
  @Entry
L
update  
laosan_ted 已提交
766 767
  @Component
  struct WebComponent {
Y
yamila 已提交
768
    controller: WebController = new WebController()
L
laosan_ted 已提交
769
  
L
update  
laosan_ted 已提交
770 771
    build() {
      Column() {
Z
zhou-liting125 已提交
772
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
773
          .onBeforeUnload((event) => {
Y
yamila 已提交
774 775
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
            AlertDialog.show({
              title: 'onBeforeUnload',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
795
            return true
L
laosan_ted 已提交
796 797
          })
      }
L
update  
laosan_ted 已提交
798 799 800 801 802 803 804 805 806 807
    }
  }
  ```

### onConfirm

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

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

Z
zhou-liting125 已提交
808
**参数:**
L
laosan_ted 已提交
809

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

Z
zhou-liting125 已提交
816
**返回值:**
L
laosan_ted 已提交
817

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

Z
zhou-liting125 已提交
822
**示例:**
L
laosan_ted 已提交
823

Z
zhou-liting125 已提交
824 825
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
826
  @Entry
L
update  
laosan_ted 已提交
827 828
  @Component
  struct WebComponent {
Y
yamila 已提交
829
    controller: WebController = new WebController()
L
laosan_ted 已提交
830
  
L
update  
laosan_ted 已提交
831 832
    build() {
      Column() {
Z
zhou-liting125 已提交
833
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
834
          .onConfirm((event) => {
Y
yamila 已提交
835 836 837
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
            console.log("event.result:" + event.result)
L
laosan_ted 已提交
838
            AlertDialog.show({
L
laosan_ted 已提交
839
              title: 'onConfirm',
L
laosan_ted 已提交
840
              message: 'text',
L
laosan_ted 已提交
841 842 843 844 845 846 847 848
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
849 850 851 852 853 854 855 856
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
857
            return true
L
update  
laosan_ted 已提交
858
          })
L
laosan_ted 已提交
859
      }
L
update  
laosan_ted 已提交
860 861 862 863 864 865 866 867
    }
  }
  ```

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

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

Z
zhou-liting125 已提交
868
**参数:**
L
laosan_ted 已提交
869

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

Z
zhou-liting125 已提交
876
**返回值:**
L
laosan_ted 已提交
877

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

Z
zhou-liting125 已提交
882
**示例:**
L
laosan_ted 已提交
883

Z
zhou-liting125 已提交
884 885
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
886
  @Entry
L
update  
laosan_ted 已提交
887 888
  @Component
  struct WebComponent {
Y
yamila 已提交
889
    controller: WebController = new WebController()
L
laosan_ted 已提交
890
  
L
update  
laosan_ted 已提交
891 892
    build() {
      Column() {
893
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
894
          .onPrompt((event) => {
Y
yamila 已提交
895 896 897
            console.log("url:" + event.url)
            console.log("message:" + event.message)
            console.log("value:" + event.value)
L
laosan_ted 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
            AlertDialog.show({
              title: 'onPrompt',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
917
            return true
L
laosan_ted 已提交
918 919
          })
      }
L
update  
laosan_ted 已提交
920 921 922 923 924 925 926 927 928 929
    }
  }
  ```

### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
930
**参数:**
L
laosan_ted 已提交
931

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

Z
zhou-liting125 已提交
936
**返回值:**
L
laosan_ted 已提交
937

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

Z
zhou-liting125 已提交
942
**示例:**
L
laosan_ted 已提交
943

Z
zhou-liting125 已提交
944 945
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
946
  @Entry
L
update  
laosan_ted 已提交
947 948
  @Component
  struct WebComponent {
Y
yamila 已提交
949
    controller: WebController = new WebController()
L
laosan_ted 已提交
950
  
L
update  
laosan_ted 已提交
951 952
    build() {
      Column() {
Z
zhou-liting125 已提交
953
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
954
          .onConsole((event) => {
Y
yamila 已提交
955 956 957 958 959
            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
laosan_ted 已提交
960 961
          })
      }
L
update  
laosan_ted 已提交
962 963 964 965 966 967 968 969
    }
  }
  ```

### onDownloadStart

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

Z
zhou-liting125 已提交
970
**参数:**
L
laosan_ted 已提交
971

972 973 974 975 976 977
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
978

Z
zhou-liting125 已提交
979
**示例:**
L
laosan_ted 已提交
980

Z
zhou-liting125 已提交
981 982
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
983
  @Entry
L
update  
laosan_ted 已提交
984 985
  @Component
  struct WebComponent {
Y
yamila 已提交
986
    controller: WebController = new WebController()
L
laosan_ted 已提交
987
  
L
update  
laosan_ted 已提交
988 989
    build() {
      Column() {
Z
zhou-liting125 已提交
990
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
991
          .onDownloadStart((event) => {
Y
yamila 已提交
992 993 994 995 996
            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
laosan_ted 已提交
997 998
          })
      }
L
update  
laosan_ted 已提交
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    }
  }
  ```

### onErrorReceive

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

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

Z
zhou-liting125 已提交
1009
**参数:**
L
laosan_ted 已提交
1010

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

Z
zhou-liting125 已提交
1016
**示例:**
L
laosan_ted 已提交
1017

Z
zhou-liting125 已提交
1018 1019
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1020
  @Entry
L
update  
laosan_ted 已提交
1021 1022
  @Component
  struct WebComponent {
Y
yamila 已提交
1023
    controller: WebController = new WebController()
L
laosan_ted 已提交
1024
  
L
update  
laosan_ted 已提交
1025 1026
    build() {
      Column() {
Z
zhou-liting125 已提交
1027
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1028
          .onErrorReceive((event) => {
Y
yamila 已提交
1029 1030 1031 1032 1033 1034 1035 1036 1037
            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)
L
laosan_ted 已提交
1038
            for (let i of result) {
Y
yamila 已提交
1039
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue)
L
laosan_ted 已提交
1040 1041 1042
            }
          })
      }
L
update  
laosan_ted 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
1053
**参数:**
L
laosan_ted 已提交
1054

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

Z
zhou-liting125 已提交
1060
**示例:**
L
laosan_ted 已提交
1061

Z
zhou-liting125 已提交
1062 1063
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1064
  @Entry
L
update  
laosan_ted 已提交
1065 1066
  @Component
  struct WebComponent {
Y
yamila 已提交
1067
    controller: WebController = new WebController()
L
laosan_ted 已提交
1068
  
L
update  
laosan_ted 已提交
1069 1070
    build() {
      Column() {
Z
zhou-liting125 已提交
1071
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1072
          .onHttpErrorReceive((event) => {
Y
yamila 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
            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)
L
laosan_ted 已提交
1084
            for (let i of result) {
Y
yamila 已提交
1085
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1086
            }
Y
yamila 已提交
1087 1088
            let resph = event.response.getResponseHeader()
            console.log('The response header result size is ' + resph.length)
L
laosan_ted 已提交
1089
            for (let i of resph) {
Y
yamila 已提交
1090
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1091 1092 1093
            }
          })
      }
L
update  
laosan_ted 已提交
1094 1095 1096 1097 1098 1099 1100 1101
    }
  }
  ```

### onPageBegin

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

1102

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

Z
zhou-liting125 已提交
1105
**参数:**
L
laosan_ted 已提交
1106

1107 1108 1109
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1110

Z
zhou-liting125 已提交
1111
**示例:**
L
laosan_ted 已提交
1112

Z
zhou-liting125 已提交
1113 1114
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1115
  @Entry
L
update  
laosan_ted 已提交
1116 1117
  @Component
  struct WebComponent {
Y
yamila 已提交
1118
    controller: WebController = new WebController()
L
laosan_ted 已提交
1119
  
L
update  
laosan_ted 已提交
1120 1121
    build() {
      Column() {
Z
zhou-liting125 已提交
1122
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1123
          .onPageBegin((event) => {
Y
yamila 已提交
1124
            console.log('url:' + event.url)
L
laosan_ted 已提交
1125 1126
          })
      }
L
update  
laosan_ted 已提交
1127 1128 1129 1130 1131 1132 1133 1134
    }
  }
  ```

### onPageEnd

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

1135

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

Z
zhou-liting125 已提交
1138
**参数:**
L
laosan_ted 已提交
1139

1140 1141 1142
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1143

Z
zhou-liting125 已提交
1144
**示例:**
L
laosan_ted 已提交
1145

Z
zhou-liting125 已提交
1146 1147
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1148
  @Entry
L
update  
laosan_ted 已提交
1149 1150
  @Component
  struct WebComponent {
Y
yamila 已提交
1151
    controller: WebController = new WebController()
L
laosan_ted 已提交
1152
  
L
update  
laosan_ted 已提交
1153 1154
    build() {
      Column() {
Z
zhou-liting125 已提交
1155
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1156
          .onPageEnd((event) => {
Y
yamila 已提交
1157
            console.log('url:' + event.url)
L
laosan_ted 已提交
1158 1159
          })
      }
L
update  
laosan_ted 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169
    }
  }
  ```

### onProgressChange

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

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

Z
zhou-liting125 已提交
1170
**参数:**
L
laosan_ted 已提交
1171

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

L
laosan_ted 已提交
1176 1177
**示例:**

Z
zhou-liting125 已提交
1178 1179
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1180
  @Entry
L
update  
laosan_ted 已提交
1181 1182
  @Component
  struct WebComponent {
Y
yamila 已提交
1183
    controller: WebController = new WebController()
L
laosan_ted 已提交
1184
  
L
update  
laosan_ted 已提交
1185 1186
    build() {
      Column() {
Z
zhou-liting125 已提交
1187
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1188 1189 1190 1191
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
    }
  }
  ```

### onTitleReceive

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

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

Z
zhou-liting125 已提交
1202
**参数:**
L
laosan_ted 已提交
1203

1204 1205 1206
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
1207

L
laosan_ted 已提交
1208 1209
**示例:**

Z
zhou-liting125 已提交
1210 1211
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1212
  @Entry
L
update  
laosan_ted 已提交
1213 1214
  @Component
  struct WebComponent {
Y
yamila 已提交
1215
    controller: WebController = new WebController()
L
laosan_ted 已提交
1216
  
L
update  
laosan_ted 已提交
1217 1218
    build() {
      Column() {
Z
zhou-liting125 已提交
1219
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1220 1221 1222 1223
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
    }
  }
  ```

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
1234
**参数:**
L
laosan_ted 已提交
1235

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

L
laosan_ted 已提交
1241 1242
**示例:**

Z
zhou-liting125 已提交
1243 1244
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1245
  @Entry
L
update  
laosan_ted 已提交
1246 1247
  @Component
  struct WebComponent {
Y
yamila 已提交
1248
    controller: WebController = new WebController()
L
laosan_ted 已提交
1249
  
L
update  
laosan_ted 已提交
1250 1251
    build() {
      Column() {
Z
zhou-liting125 已提交
1252
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1253
          .onRefreshAccessedHistory((event) => {
Y
yamila 已提交
1254
            console.log('url:' + event.url + ' isReload:' + event.isRefreshed)
L
laosan_ted 已提交
1255 1256
          })
      }
L
update  
laosan_ted 已提交
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
    }
  }
  ```

### onRenderExited

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

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

Z
zhou-liting125 已提交
1267
**参数:**
L
laosan_ted 已提交
1268

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

L
laosan_ted 已提交
1273 1274
**示例:**

Z
zhou-liting125 已提交
1275 1276
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1277
  @Entry
L
update  
laosan_ted 已提交
1278 1279
  @Component
  struct WebComponent {
Y
yamila 已提交
1280
    controller: WebController = new WebController()
L
laosan_ted 已提交
1281
  
L
update  
laosan_ted 已提交
1282 1283
    build() {
      Column() {
L
laosan_ted 已提交
1284 1285
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
Y
yamila 已提交
1286
            console.log('reason:' + event.renderExitReason)
L
laosan_ted 已提交
1287 1288
          })
      }
L
update  
laosan_ted 已提交
1289 1290 1291 1292 1293 1294
    }
  }
  ```

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

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

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

Z
zhou-liting125 已提交
1299
**参数:**
L
laosan_ted 已提交
1300

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

L
laosan_ted 已提交
1306 1307 1308 1309 1310 1311
**返回值:**

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

L
laosan_ted 已提交
1312 1313
**示例:**

Z
zhou-liting125 已提交
1314 1315
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1316
  @Entry
L
update  
laosan_ted 已提交
1317 1318
  @Component
  struct WebComponent {
Y
yamila 已提交
1319
    controller: WebController = new WebController()
L
laosan_ted 已提交
1320

L
update  
laosan_ted 已提交
1321 1322
    build() {
      Column() {
Z
zhou-liting125 已提交
1323
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
          .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 已提交
1340
              }
L
laosan_ted 已提交
1341
            })
Y
yamila 已提交
1342
            return true
L
update  
laosan_ted 已提交
1343
          })
L
laosan_ted 已提交
1344
      }
L
update  
laosan_ted 已提交
1345 1346 1347 1348
    }
  }
  ```

L
laosan_ted 已提交
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
### onResourceLoad<sup>9+</sup>

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

通知Web组件所加载的资源文件url信息。

**参数:**

| 参数名  | 参数类型                                     | 参数描述      |
| ---- | ---------------------------------------- | --------- |
| url | string | 所加载的资源文件url信息。 |

**示例:**

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

### onScaleChange<sup>9+</sup>

onScaleChange(callback: (event: {oldScale: number, newScale: number}) => void)

当前页面显示比例的变化时触发该回调。

**参数:**

| 参数名  | 参数类型                                     | 参数描述      |
| ---- | ---------------------------------------- | --------- |
| oldScale | number | 变化前的显示比例百分比。 |
| newScale | number | 变化后的显示比例百分比。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController()
  
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onScaleChange((event) => {
            console.log('onScaleChange changed from ' + event.oldScale + ' to ' + event.newScale)
          })
      }
    }
  }
  ```

L
update  
laosan_ted 已提交
1414 1415 1416 1417 1418 1419
### onUrlLoadIntercept

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

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

Z
zhou-liting125 已提交
1420
**参数:**
L
laosan_ted 已提交
1421

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

Z
zhou-liting125 已提交
1426
**返回值:**
L
laosan_ted 已提交
1427

1428 1429 1430
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
1431

L
laosan_ted 已提交
1432 1433
**示例:**

Z
zhou-liting125 已提交
1434 1435
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1436
  @Entry
L
update  
laosan_ted 已提交
1437 1438
  @Component
  struct WebComponent {
Y
yamila 已提交
1439
    controller: WebController = new WebController()
L
laosan_ted 已提交
1440
  
L
update  
laosan_ted 已提交
1441 1442
    build() {
      Column() {
Z
zhou-liting125 已提交
1443
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1444 1445
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
Y
yamila 已提交
1446
            return true
L
laosan_ted 已提交
1447 1448
          })
      }
L
update  
laosan_ted 已提交
1449 1450 1451 1452 1453 1454
    }
  }
  ```

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

L
laosan_ted 已提交
1455
onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)
L
update  
laosan_ted 已提交
1456 1457 1458

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

Z
zhou-liting125 已提交
1459
**参数:**
L
laosan_ted 已提交
1460

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

Z
zhou-liting125 已提交
1465
**返回值:**
L
laosan_ted 已提交
1466

1467 1468
| 类型                                       | 说明                          |
| ---------------------------------------- | --------------------------- |
L
laosan_ted 已提交
1469
| [WebResourceResponse](#webresourceresponse) | 返回响应数据则按照响应数据加载,无响应数据则返回null表示按照原来的方式加载。 |
L
update  
laosan_ted 已提交
1470

L
laosan_ted 已提交
1471 1472
**示例:**

Z
zhou-liting125 已提交
1473 1474
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
1475
  @Entry
L
update  
laosan_ted 已提交
1476 1477
  @Component
  struct WebComponent {
Y
yamila 已提交
1478 1479 1480
    controller: WebController = new WebController()
    responseweb: WebResourceResponse = new WebResourceResponse()
    heads:Header[] = new Array()
L
laosan_ted 已提交
1481 1482 1483 1484 1485 1486 1487 1488 1489
    @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 已提交
1490 1491
    build() {
      Column() {
1492
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1493
          .onInterceptRequest((event) => {
Y
yamila 已提交
1494
            console.log('url:' + event.request.getRequestUrl())
L
laosan_ted 已提交
1495 1496 1497 1498 1499 1500 1501 1502
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
Y
yamila 已提交
1503 1504 1505 1506 1507 1508 1509 1510 1511
            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
laosan_ted 已提交
1512
          })
L
update  
laosan_ted 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
1524
**参数:**
L
laosan_ted 已提交
1525

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

Z
zhou-liting125 已提交
1532
**返回值:**
L
laosan_ted 已提交
1533

1534 1535 1536
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
1537

L
laosan_ted 已提交
1538 1539
**示例:**

Z
zhou-liting125 已提交
1540 1541
  ```ts
  // xxx.ets
L
laosan_ted 已提交
1542
  import web_webview from '@ohos.web.webview'
Z
zhou-liting125 已提交
1543
  @Entry
L
update  
laosan_ted 已提交
1544 1545
  @Component
  struct WebComponent {
Y
yamila 已提交
1546 1547
    controller: WebController = new WebController()
    httpAuth: boolean = false
L
laosan_ted 已提交
1548
  
L
update  
laosan_ted 已提交
1549 1550
    build() {
      Column() {
1551 1552 1553
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
1554
              title: 'onHttpAuthRequest',
1555
              message: 'text',
L
laosan_ted 已提交
1556 1557 1558
              primaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
1559
                  event.handler.cancel()
L
laosan_ted 已提交
1560 1561 1562 1563
                }
              },
              secondaryButton: {
                value: 'ok',
1564
                action: () => {
Y
yamila 已提交
1565
                  this.httpAuth = event.handler.isHttpAuthInfoSaved()
1566
                  if (this.httpAuth == false) {
L
laosan_ted 已提交
1567
                    web_webview.WebDataBase.saveHttpAuthCredentials(
1568 1569 1570 1571 1572
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
Y
yamila 已提交
1573
                    event.handler.cancel()
1574
                  }
L
update  
laosan_ted 已提交
1575
                }
1576 1577
              },
              cancel: () => {
Y
yamila 已提交
1578
                event.handler.cancel()
L
update  
laosan_ted 已提交
1579
              }
1580
            })
Y
yamila 已提交
1581
            return true
L
update  
laosan_ted 已提交
1582
          })
Y
yu-shihao4 已提交
1583
      }
L
update  
laosan_ted 已提交
1584 1585 1586
    }
  }
  ```
1587 1588
### onSslErrorEventReceive<sup>9+</sup>

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

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

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

1595
| 参数名     | 参数类型                           | 参数描述             |
I
bugfix  
i-am-a-little-bird 已提交
1596 1597
| ------- | ------------------------------------ | ----------------    |
| handler | [SslErrorHandler](#sslerrorhandler9) | 通知Web组件用户操作行为。 |
I
bugfix  
i-am-a-little-bird 已提交
1598
| error   | [SslError](#sslerror9枚举说明)        | 错误码。 |
I
bugfix  
i-am-a-little-bird 已提交
1599 1600

**示例:**
1601 1602 1603

  ```ts
  // xxx.ets
I
bugfix  
i-am-a-little-bird 已提交
1604
  import web_webview from '@ohos.web.webview'
1605 1606 1607
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1608
    controller: WebController = new WebController()
I
bugfix  
i-am-a-little-bird 已提交
1609
  
1610 1611 1612
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
I
bugfix  
i-am-a-little-bird 已提交
1613
          .onSslErrorEventReceive((event) => {
1614
            AlertDialog.show({
I
bugfix  
i-am-a-little-bird 已提交
1615
              title: 'onSslErrorEventReceive',
1616
              message: 'text',
I
bugfix  
i-am-a-little-bird 已提交
1617 1618
              primaryButton: {
                value: 'confirm',
1619
                action: () => {
Y
yamila 已提交
1620
                  event.handler.handleConfirm()
I
bugfix  
i-am-a-little-bird 已提交
1621 1622 1623 1624 1625
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
1626
                  event.handler.handleCancel()
1627 1628 1629
                }
              },
              cancel: () => {
Y
yamila 已提交
1630
                event.handler.handleCancel()
1631 1632
              }
            })
Y
yamila 已提交
1633
            return true
1634 1635 1636 1637 1638 1639
          })
      }
    }
  }
  ```

I
i-am-a-little-bird 已提交
1640 1641 1642 1643
### onClientAuthenticationRequest<sup>9+</sup>

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

I
bugfix  
i-am-a-little-bird 已提交
1644
通知用户收到SSL客户端证书请求事件。
I
i-am-a-little-bird 已提交
1645 1646 1647 1648 1649 1650

**参数:**

| 参数名   | 参数类型                             | 参数描述             |
| ------- | ------------------------------------ | ----------------    |
| handler | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。|
I
bugfix  
i-am-a-little-bird 已提交
1651 1652 1653 1654
| host    | string          | 请求证书服务器的主机名。 |
| port    | number          | 请求证书服务器的端口号。 |
| keyTypes| Array<string>   | 可接受的非对称秘钥类型。 |
| issuers | Array<string>   | 与私钥匹配的证书可接受颁发者。|
I
i-am-a-little-bird 已提交
1655 1656 1657 1658 1659 1660 1661 1662

  **示例:**
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1663
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'onClientAuthenticationRequest',
              message: 'text',
              primaryButton: {
                value: 'confirm',
                action: () => {
Y
yamila 已提交
1675
                  event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem")
I
i-am-a-little-bird 已提交
1676 1677 1678 1679 1680
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
1681
                  event.handler.cancel()
I
i-am-a-little-bird 已提交
1682 1683 1684
                }
              },
              cancel: () => {
Y
yamila 已提交
1685
                event.handler.ignore()
I
i-am-a-little-bird 已提交
1686 1687
              }
            })
Y
yamila 已提交
1688
            return true
I
i-am-a-little-bird 已提交
1689 1690 1691 1692 1693 1694
          })
      }
    }
  }
  ```

1695 1696 1697 1698 1699 1700 1701
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

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

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

L
laosan_ted 已提交
1707 1708
**示例:**

1709 1710 1711 1712 1713
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1714
    controller: WebController = new WebController()
1715 1716
    build() {
      Column() {
1717 1718 1719 1720 1721
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
1722 1723 1724
              primaryButton: {
                value: 'deny',
                action: () => {
Y
yamila 已提交
1725
                  event.request.deny()
L
laosan_ted 已提交
1726 1727 1728
                }
              },
              secondaryButton: {
1729 1730
                value: 'onConfirm',
                action: () => {
Y
yamila 已提交
1731
                  event.request.grant(event.request.getAccessibleResource())
1732 1733 1734
                }
              },
              cancel: () => {
Y
yamila 已提交
1735
                event.request.deny()
1736
              }
1737
            })
1738
          })
Y
yu-shihao4 已提交
1739
      }
1740 1741 1742
    }
  }
  ```
1743

1744 1745 1746 1747 1748 1749 1750
### onContextMenuShow<sup>9+</sup>

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

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

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

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

Y
yu-shihao4 已提交
1757 1758
**返回值:**

Y
yu-shihao4 已提交
1759 1760 1761 1762
| 类型     | 说明                   |
| ------ | -------------------- |
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
1763
**示例:**
Y
yu-shihao4 已提交
1764

1765 1766 1767 1768 1769
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1770
    controller: WebController = new WebController()
1771 1772
    build() {
      Column() {
1773
        Web({ src: 'www.example.com', controller: this.controller })
Y
yu-shihao4 已提交
1774
          .onContextMenuShow((event) => {
Y
yamila 已提交
1775 1776 1777
            console.info("x coord = " + event.param.x())
            console.info("link url = " + event.param.getLinkUrl())
            return true
1778 1779
        })
      }
1780 1781 1782
    }
  }
  ```
1783

L
laosan_ted 已提交
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
### onScroll<sup>9+</sup>

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

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

**参数:**

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

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1804
    controller: WebController = new WebController()
L
laosan_ted 已提交
1805 1806 1807 1808
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .onScroll((event) => {
Y
yamila 已提交
1809 1810
            console.info("x = " + event.xOffset)
            console.info("y = " + event.yOffset)
L
laosan_ted 已提交
1811 1812 1813 1814 1815 1816
        })
      }
    }
  }
  ```

1817 1818 1819 1820
### onGeolocationShow

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

1821
通知用户收到地理位置信息获取请求。
1822 1823 1824 1825 1826 1827 1828 1829 1830

**参数:**

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

**示例:**
1831

1832 1833 1834 1835 1836
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1837
    controller:WebController = new WebController()
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationShow((event) => {
          AlertDialog.show({
            title: 'title',
            message: 'text',
            confirm: {
              value: 'onConfirm',
              action: () => {
Y
yamila 已提交
1849
                event.geolocation.invoke(event.origin, true, true)
1850 1851 1852
              }
            },
            cancel: () => {
Y
yamila 已提交
1853
              event.geolocation.invoke(event.origin, false, true)
1854 1855 1856 1857 1858 1859 1860 1861
            }
          })
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893
### onGeolocationHide

onGeolocationHide(callback: () => void)

通知用户先前被调用[onGeolocationShow](#ongeolocationshow)时收到地理位置信息获取请求已被取消。

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| callback     | () => void           | 地理位置信息获取请求已被取消的回调函数。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    controller:WebController = new WebController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationHide(() => {
          console.log("onGeolocationHide...")
        })
      }
    }
  }
  ```

E
echoorchid 已提交
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912
### onFullScreenEnter<sup>9+</sup>

onFullScreenEnter(callback: (event: { handler: FullScreenExitHandler }) => void)

通知开发者web组件进入全屏模式。

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| handler     | [FullScreenExitHandler](#fullscreenexithandler9)           | 用于退出全屏模式的函数句柄。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1913 1914
    controller:WebController = new WebController()
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
1915 1916 1917 1918
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
1919 1920
          console.log("onFullScreenEnter...")
          this.handler = event.handler
E
echoorchid 已提交
1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
        })
      }
    }
  }
  ```

### onFullScreenExit<sup>9+</sup>

onFullScreenExit(callback: () => void)

通知开发者web组件退出全屏模式。

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| callback     | () => void           | 退出全屏模式时的回调函数。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1946 1947
    controller:WebController = new WebController()
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
1948 1949 1950 1951
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenExit(() => {
Y
yamila 已提交
1952 1953
          console.log("onFullScreenExit...")
          this.handler.exitFullScreen()
E
echoorchid 已提交
1954 1955
        })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
1956
          this.handler = event.handler
E
echoorchid 已提交
1957 1958 1959 1960 1961 1962
        })
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
### onWindowNew<sup>9+</sup>

onWindowNew(callback: (event: {isAlert: boolean, isUserTrigger: boolean, targetUrl: string, handler: ControllerHandler}) => void)

通知用户新建窗口请求。

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| isAlert     | boolean           | true代表请求创建对话框,false代表新标签页。 |
| isUserTrigger | boolean           | true代表用户触发,false代表非用户触发。 |
| targetUrl     | string           | 目标url。 |
| handler     | [ControllerHandler](#controllerhandler9) | 用于设置新建窗口的WebController实例。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
1985
    controller:WebController = new WebController()
X
xiongjun_gitee 已提交
1986 1987 1988 1989 1990
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
        .multiWindowAccess(true)
        .onWindowNew((event) => {
Y
yamila 已提交
1991 1992 1993
          console.log("onWindowNew...")
          var popController: WebController = new WebController()
          event.handler.setWebController(popController)
X
xiongjun_gitee 已提交
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
        })
      }
    }
  }
  ```

### onWindowExit<sup>9+</sup>

onWindowExit(callback: () => void)

通知用户窗口关闭请求。

**参数:**

| 参数名      | 参数类型                         | 参数描述          |
| ----------- | ------------------------------- | ---------------- |
| callback     | () => void           | 窗口请求关闭的回调函数。 |

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2019
    controller:WebController = new WebController()
X
xiongjun_gitee 已提交
2020 2021 2022
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2023
        .onWindowExit(() => {
Y
yamila 已提交
2024
          console.log("onWindowExit...")
X
xiongjun_gitee 已提交
2025 2026 2027 2028 2029 2030
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
### onSearchResultReceive<sup>9+</sup>

onSearchResultReceive(callback: (event?: {activeMatchOrdinal: number, numberOfMatches: number, isDoneCounting: boolean}) => void): WebAttribute

回调通知调用方网页页内查找的结果。

**参数:**

| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| activeMatchOrdinal | number        | 当前匹配的查找项的序号(从0开始)。 |
| numberOfMatches    | number        | 所有匹配到的关键词的个数。 |
| isDoneCounting     | boolean       | 当次页内查找操作是否结束。该方法可能会回调多次,直到isDoneCounting为true为止。 |

**示例:**

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

Z
zhou-liting125 已提交
2066
## ConsoleMessage
2067

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

Z
zhou-liting125 已提交
2070
### getLineNumber
2071

Z
zhou-liting125 已提交
2072 2073 2074 2075
getLineNumber(): number

获取ConsoleMessage的行数。

Z
zhou-liting125 已提交
2076
**返回值:** 
L
laosan_ted 已提交
2077

2078 2079 2080
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
2081 2082 2083 2084 2085 2086 2087

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

Z
zhou-liting125 已提交
2088
**返回值:** 
L
laosan_ted 已提交
2089

2090 2091 2092
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
2093 2094 2095 2096

### getMessageLevel

getMessageLevel(): MessageLevel
2097

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

Z
zhou-liting125 已提交
2100
**返回值:** 
L
laosan_ted 已提交
2101

2102 2103 2104
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
2105 2106 2107 2108 2109 2110 2111

### getSourceId

getSourceId(): string

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

Z
zhou-liting125 已提交
2112
**返回值:** 
L
laosan_ted 已提交
2113

2114 2115 2116
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
2117 2118

## JsResult
L
lixingchi1 已提交
2119

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

Z
zhou-liting125 已提交
2122 2123 2124
### handleCancel

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

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

Z
zhou-liting125 已提交
2128
### handleConfirm
L
add web  
liujinwei 已提交
2129

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

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

Z
zhou-liting125 已提交
2134 2135 2136 2137 2138 2139
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
2140
**参数:**
L
laosan_ted 已提交
2141

2142 2143 2144
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| result | string | 是    | -    | 用户输入的对话框内容。 |
Z
zhou-liting125 已提交
2145

E
echoorchid 已提交
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
## FullScreenExitHandler<sup>9+</sup>

通知开发者Web组件退出全屏。示例代码参考[onFullScreenEnter事件](#onfullscreenenter9)

### exitFullScreen<sup>9+</sup>

exitFullScreen(): void

通知开发者Web组件退出全屏。

X
xiongjun_gitee 已提交
2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171
## ControllerHandler<sup>9+</sup>

设置用户新建web组件的的WebController对象。示例代码参考[onWindowNew事件](#onwindownew9)

### setWebController<sup>9+</sup>

setWebController(controller: WebController): void

设置WebController对象。

**参数:**

| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述        |
| ------ | ------ | ---- | ---- | ----------- |
| controller | WebController | 是    | -    | 新建web组件的的WebController对象。 |

Z
zhou-liting125 已提交
2172 2173
## WebResourceError

L
update  
laosan_ted 已提交
2174
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
2175 2176 2177 2178 2179 2180 2181

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

Z
zhou-liting125 已提交
2182
**返回值:** 
L
laosan_ted 已提交
2183

2184 2185 2186
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
2187 2188 2189 2190 2191 2192 2193

### getErrorInfo

getErrorInfo(): string

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

Z
zhou-liting125 已提交
2194
**返回值:** 
L
laosan_ted 已提交
2195

2196 2197 2198
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
2199 2200 2201

## WebResourceRequest

L
update  
laosan_ted 已提交
2202
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
2203 2204 2205 2206 2207 2208 2209

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

Z
zhou-liting125 已提交
2210
**返回值:** 
L
laosan_ted 已提交
2211

2212 2213 2214
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
2215 2216 2217 2218 2219 2220 2221

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

Z
zhou-liting125 已提交
2222
**返回值:** 
L
laosan_ted 已提交
2223

2224 2225 2226
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
2227 2228 2229 2230 2231 2232 2233

### isMainFrame

isMainFrame(): boolean

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

Z
zhou-liting125 已提交
2234
**返回值:** 
L
laosan_ted 已提交
2235

2236 2237 2238
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
2239 2240 2241 2242 2243 2244 2245

### isRedirect

isRedirect(): boolean

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

Z
zhou-liting125 已提交
2246
**返回值:** 
L
laosan_ted 已提交
2247

2248 2249 2250
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
2251 2252 2253 2254 2255 2256 2257

### isRequestGesture

isRequestGesture(): boolean

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

Z
zhou-liting125 已提交
2258
**返回值:** 
L
laosan_ted 已提交
2259

2260 2261 2262
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
2263 2264

## Header
L
liwenzhen 已提交
2265 2266 2267

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

2268 2269 2270 2271
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
2272

L
add web  
liujinwei 已提交
2273

Z
zhou-liting125 已提交
2274
## WebResourceResponse
L
add web  
liujinwei 已提交
2275

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

Z
zhou-liting125 已提交
2278
### getReasonMessage
T
Ted 已提交
2279

Z
zhou-liting125 已提交
2280
getReasonMessage(): string
T
Ted 已提交
2281

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

Z
zhou-liting125 已提交
2284
**返回值:** 
L
laosan_ted 已提交
2285

2286 2287 2288
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
2289

Z
zhou-liting125 已提交
2290
### getResponseCode
T
Ted 已提交
2291

Z
zhou-liting125 已提交
2292 2293 2294 2295
getResponseCode(): number

获取资源响应的状态码。

Z
zhou-liting125 已提交
2296
**返回值:** 
L
laosan_ted 已提交
2297

2298 2299 2300
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
2301 2302 2303 2304 2305 2306 2307

### getResponseData

getResponseData(): string

获取资源响应数据。

Z
zhou-liting125 已提交
2308
**返回值:** 
L
laosan_ted 已提交
2309

2310 2311 2312
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
2313 2314 2315 2316 2317 2318 2319

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

Z
zhou-liting125 已提交
2320
**返回值:** 
L
laosan_ted 已提交
2321

2322 2323 2324
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
2325 2326 2327 2328 2329 2330 2331

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

Z
zhou-liting125 已提交
2332
**返回值:** 
L
laosan_ted 已提交
2333

2334 2335 2336
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
2337 2338 2339 2340 2341 2342 2343

### getResponseMimeType

getResponseMimeType(): string

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

Z
zhou-liting125 已提交
2344
**返回值:** 
L
laosan_ted 已提交
2345

2346 2347 2348
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
2349 2350 2351 2352 2353 2354 2355

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

setResponseData(data: string)

设置资源响应数据。

Z
zhou-liting125 已提交
2356
**参数:**
L
laosan_ted 已提交
2357

2358 2359 2360
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述        |
| ---- | ------ | ---- | ---- | ----------- |
| data | string | 是    | -    | 要设置的资源响应数据。 |
Z
zhou-liting125 已提交
2361 2362 2363 2364 2365 2366 2367

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
2368
**参数:**
L
laosan_ted 已提交
2369

2370 2371 2372
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
2373 2374 2375 2376 2377 2378 2379

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
2380
**参数:**
L
laosan_ted 已提交
2381

2382 2383 2384
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
2385 2386 2387 2388 2389 2390 2391

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
2392
**参数:**
L
laosan_ted 已提交
2393

2394 2395 2396
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
2397 2398 2399 2400 2401 2402 2403

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
2404
**参数:**
L
laosan_ted 已提交
2405

2406 2407 2408
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
2409 2410 2411 2412 2413 2414 2415

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

setResponseCode(code: number)

设置资源响应的状态码。

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

2418 2419 2420
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
2421 2422

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

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

Z
zhou-liting125 已提交
2426
### handleFileList<sup>9+</sup>
2427

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

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

Z
zhou-liting125 已提交
2432
**参数:**
L
laosan_ted 已提交
2433

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

Z
zhou-liting125 已提交
2438 2439
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
2440
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
2441 2442 2443 2444 2445 2446 2447

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

getTitle(): string

获取文件选择器标题。

Z
zhou-liting125 已提交
2448
**返回值:** 
L
laosan_ted 已提交
2449

2450 2451 2452
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回文件选择器标题。 |
Z
zhou-liting125 已提交
2453 2454 2455 2456 2457 2458 2459

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

getMode(): FileSelectorMode

获取文件选择器的模式。

Z
zhou-liting125 已提交
2460
**返回值:** 
L
laosan_ted 已提交
2461

2462 2463 2464
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
2465 2466 2467 2468 2469 2470 2471

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

Z
zhou-liting125 已提交
2472
**返回值:** 
L
laosan_ted 已提交
2473

2474 2475 2476
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
2477 2478 2479 2480 2481 2482 2483

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

isCapture(): boolean

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

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

2486 2487 2488
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
2489 2490 2491

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

Z
zhou-liting125 已提交
2492
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
2493 2494 2495 2496 2497 2498 2499 2500

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

cancel(): void

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

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

2502 2503 2504 2505
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
2506
**参数:**
2507

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

Z
zhou-liting125 已提交
2513
**返回值:**
L
laosan_ted 已提交
2514

2515 2516 2517
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
2518 2519 2520 2521 2522 2523 2524

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

isHttpAuthInfoSaved(): boolean

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

Z
zhou-liting125 已提交
2525
**返回值:**
L
laosan_ted 已提交
2526

2527 2528 2529
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
2530

2531 2532
## SslErrorHandler<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
2533
Web组件返回的SSL错误通知事件用户处理功能对象。示例代码参考[onSslErrorEventReceive事件](#onsslerroreventreceive9)
2534 2535 2536 2537 2538

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

handleCancel(): void

I
i-am-a-little-bird 已提交
2539
通知Web组件取消此请求。
2540 2541 2542 2543 2544

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

handleConfirm(): void

I
i-am-a-little-bird 已提交
2545 2546 2547 2548
通知Web组件继续使用SSL证书。

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

I
bugfix  
i-am-a-little-bird 已提交
2549
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onclientauthenticationrequest9)
I
i-am-a-little-bird 已提交
2550 2551 2552 2553 2554 2555

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

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

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

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

I
bugfix  
i-am-a-little-bird 已提交
2559 2560 2561 2562
| 参数名         | 参数类型 | 必填   | 参数描述        |
| --------      | ------   | ----  | ----------     |
| priKeyFile    | string   | 是    | 存放私钥的文件,包含路径和文件名。|
| certChainFile | string   | 是    | 存放证书链的文件,包含路径和文件名。|
I
i-am-a-little-bird 已提交
2563 2564

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

I
i-am-a-little-bird 已提交
2566 2567
cancel(): void

I
bugfix  
i-am-a-little-bird 已提交
2568
通知Web组件取消相同host和port服务器发送的客户端证书请求事件。同时,相同host和port服务器的请求,不重复上报该事件。
I
i-am-a-little-bird 已提交
2569 2570 2571 2572 2573 2574

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

ignore(): void

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

2576 2577
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
2578
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

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

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
2602
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613

**返回值:**

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

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

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

X
xiongjun_gitee 已提交
2614
对网页访问的给定权限进行授权。
2615 2616 2617 2618 2619 2620 2621

**参数:**

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

2622 2623
## WebContextMenuParam<sup>9+</sup>

Y
yu-shihao4 已提交
2624
实现长按页面元素跳出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635

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

x(): number

弹出菜单的x坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2636
| number | 显示正常返回非负整数,否则返回-1。 |
2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647

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

y(): number

弹出菜单的y坐标。

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2648
| number | 显示正常返回非负整数,否则返回-1。 |
2649 2650 2651 2652 2653

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

getLinkUrl(): string

Y
yu-shihao4 已提交
2654
获取链接地址。
2655 2656 2657 2658 2659

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2660
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
2661 2662 2663 2664 2665

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

getUnfilterendLinkUrl(): string

Y
yu-shihao4 已提交
2666
获取链接地址。
2667 2668 2669 2670 2671

**返回值:**

| 类型            | 说明                     |
| --------------- | ----------------------- |
Y
yu-shihao4 已提交
2672
| string | 如果长按位置是链接,返回原始的url链接。 |
2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699

### 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 已提交
2700
实现长按页面元素跳出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713

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

closeContextMenu(): void

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

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

copyImage(): void

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

2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731
## JsGeolocation

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

### invoke

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

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

**参数:**

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

Z
zengyawen 已提交
2732 2733
## WebController

L
liwenzhen 已提交
2734
通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。
Z
zengyawen 已提交
2735 2736 2737 2738 2739 2740 2741

### 创建对象

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

L
laosan_ted 已提交
2742 2743 2744 2745 2746 2747 2748
### requestFocus

requestFocus()

使当前web页面获取焦点。

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

L
laosan_ted 已提交
2750 2751 2752 2753 2754
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
2755
    controller: WebController = new WebController()
L
laosan_ted 已提交
2756 2757 2758 2759 2760
  
    build() {
      Column() {
        Button('requestFocus')
          .onClick(() => {
Y
yamila 已提交
2761
            this.controller.requestFocus()
L
laosan_ted 已提交
2762 2763 2764 2765 2766 2767 2768
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
lixingchi1 已提交
2769 2770 2771 2772
### accessBackward

accessBackward(): boolean

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

Z
zhou-liting125 已提交
2775
**返回值:**
L
laosan_ted 已提交
2776

2777 2778 2779
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2780

Z
zhou-liting125 已提交
2781
**示例:**
L
laosan_ted 已提交
2782

Z
zhou-liting125 已提交
2783 2784
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2785
  @Entry
L
update  
laosan_ted 已提交
2786 2787
  @Component
  struct WebComponent {
Y
yamila 已提交
2788
    controller: WebController = new WebController()
L
laosan_ted 已提交
2789
  
L
update  
laosan_ted 已提交
2790 2791 2792
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
2793
          .onClick(() => {
Y
yamila 已提交
2794 2795
            let result = this.controller.accessBackward()
            console.log('result:' + result)
L
laosan_ted 已提交
2796
          })
Z
zhou-liting125 已提交
2797
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2798
      }
L
update  
laosan_ted 已提交
2799 2800 2801 2802
    }
  }
  ```

L
lixingchi1 已提交
2803 2804 2805 2806
### accessForward

accessForward(): boolean

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

Z
zhou-liting125 已提交
2809
**返回值:**
L
laosan_ted 已提交
2810

2811 2812 2813
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
2814

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

Z
zhou-liting125 已提交
2817 2818
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2819
  @Entry
L
update  
laosan_ted 已提交
2820 2821
  @Component
  struct WebComponent {
Y
yamila 已提交
2822
    controller: WebController = new WebController()
L
laosan_ted 已提交
2823
  
L
update  
laosan_ted 已提交
2824 2825 2826
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
2827
          .onClick(() => {
Y
yamila 已提交
2828 2829
            let result = this.controller.accessForward()
            console.log('result:' + result)
L
laosan_ted 已提交
2830
          })
Z
zhou-liting125 已提交
2831
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2832
      }
L
update  
laosan_ted 已提交
2833 2834 2835 2836
    }
  }
  ```

L
lixingchi1 已提交
2837
### accessStep
Z
zengyawen 已提交
2838

L
lixingchi1 已提交
2839
accessStep(step: number): boolean
Z
zengyawen 已提交
2840

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

Z
zhou-liting125 已提交
2843
**参数:**
Z
zengyawen 已提交
2844

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

Z
zhou-liting125 已提交
2849
**返回值:**
L
laosan_ted 已提交
2850

2851 2852 2853
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
2854

Z
zhou-liting125 已提交
2855
**示例:**
L
laosan_ted 已提交
2856

Z
zhou-liting125 已提交
2857 2858
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
2859
  @Entry
L
update  
laosan_ted 已提交
2860 2861
  @Component
  struct WebComponent {
Y
yamila 已提交
2862 2863
    controller: WebController = new WebController()
    @State steps: number = 2
L
laosan_ted 已提交
2864
  
L
update  
laosan_ted 已提交
2865 2866 2867
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
2868
          .onClick(() => {
Y
yamila 已提交
2869 2870
            let result = this.controller.accessStep(this.steps)
            console.log('result:' + result)
L
laosan_ted 已提交
2871
          })
Z
zhou-liting125 已提交
2872
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2873
      }
L
update  
laosan_ted 已提交
2874 2875 2876 2877
    }
  }
  ```

L
lixingchi1 已提交
2878 2879
### backward

L
update  
laosan_ted 已提交
2880
backward(): void
L
lixingchi1 已提交
2881

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

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

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

### forward

L
update  
laosan_ted 已提交
2907
forward(): void
L
lixingchi1 已提交
2908

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

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

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

2932 2933 2934 2935 2936 2937
### backOrForward<sup>9+</sup>

backOrForward(step: number): void

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

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

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

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

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

### deleteJavaScriptRegister

deleteJavaScriptRegister(name: string)

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

Z
zhou-liting125 已提交
2972
**参数:**
L
laosan_ted 已提交
2973

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

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

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

L
lixingchi1 已提交
3000 3001 3002 3003
### getHitTest

getHitTest(): HitTestType

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

Z
zhou-liting125 已提交
3006
**返回值:**
L
laosan_ted 已提交
3007

3008 3009 3010
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
3011

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

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

3034 3035 3036 3037 3038
### getHitTestValue<sup>9+</sup>
getHitTestValue(): HitTestValue

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

Z
zhou-liting125 已提交
3039
**返回值:**
L
laosan_ted 已提交
3040

3041 3042 3043
| 类型                             | 说明         |
| ------------------------------ | ---------- |
| [HitTestValue](#hittestvalue9) | 点击区域的元素信息。 |
3044

Z
zhou-liting125 已提交
3045
**示例:**
L
laosan_ted 已提交
3046

Z
zhou-liting125 已提交
3047 3048
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3049
  @Entry
L
update  
laosan_ted 已提交
3050 3051
  @Component
  struct WebComponent {
Y
yamila 已提交
3052
    controller: WebController = new WebController()
L
laosan_ted 已提交
3053
  
L
update  
laosan_ted 已提交
3054 3055 3056
    build() {
      Column() {
        Button('getHitTestValue')
L
laosan_ted 已提交
3057
          .onClick(() => {
Y
yamila 已提交
3058 3059 3060
            let hitValue = this.controller.getHitTestValue()
            console.log("hitType: " + hitValue.getType())
            console.log("extra: " + hitValue.getExtra())
L
laosan_ted 已提交
3061
          })
Z
zhou-liting125 已提交
3062
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3063
      }
L
update  
laosan_ted 已提交
3064 3065 3066 3067
    }
  }
  ```

3068 3069 3070 3071 3072
### getWebId<sup>9+</sup>
getWebId(): number

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

Z
zhou-liting125 已提交
3073
**返回值:**
L
laosan_ted 已提交
3074

3075 3076 3077
| 类型     | 说明           |
| ------ | ------------ |
| number | 当前Web组件的索引值。 |
3078

Z
zhou-liting125 已提交
3079
**示例:**
L
laosan_ted 已提交
3080

Z
zhou-liting125 已提交
3081 3082
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3083
  @Entry
L
update  
laosan_ted 已提交
3084 3085
  @Component
  struct WebComponent {
Y
yamila 已提交
3086
    controller: WebController = new WebController()
L
laosan_ted 已提交
3087
  
L
update  
laosan_ted 已提交
3088 3089 3090
    build() {
      Column() {
        Button('getWebId')
L
laosan_ted 已提交
3091
          .onClick(() => {
Y
yamila 已提交
3092 3093
            let id = this.controller.getWebId()
            console.log("id: " + id)
L
laosan_ted 已提交
3094
          })
Z
zhou-liting125 已提交
3095
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3096
      }
L
update  
laosan_ted 已提交
3097 3098 3099 3100
    }
  }
  ```

3101 3102 3103 3104
### getTitle<sup>9+</sup>
getTitle(): string

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

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

3108 3109 3110
| 类型     | 说明       |
| ------ | -------- |
| string | 当前网页的标题。 |
3111

Z
zhou-liting125 已提交
3112
**示例:**
L
laosan_ted 已提交
3113

Z
zhou-liting125 已提交
3114 3115
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3116
  @Entry
L
update  
laosan_ted 已提交
3117 3118
  @Component
  struct WebComponent {
Y
yamila 已提交
3119
    controller: WebController = new WebController()
L
laosan_ted 已提交
3120
  
L
update  
laosan_ted 已提交
3121 3122 3123
    build() {
      Column() {
        Button('getTitle')
L
laosan_ted 已提交
3124
          .onClick(() => {
Y
yamila 已提交
3125 3126
            let title = this.controller.getTitle()
            console.log("title: " + title)
L
laosan_ted 已提交
3127
          })
Z
zhou-liting125 已提交
3128
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3129
      }
L
update  
laosan_ted 已提交
3130 3131 3132 3133
    }
  }
  ```

3134 3135 3136 3137
### getPageHeight<sup>9+</sup>
getPageHeight(): number

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

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

3141 3142 3143
| 类型     | 说明         |
| ------ | ---------- |
| number | 当前网页的页面高度。 |
3144

Z
zhou-liting125 已提交
3145
**示例:**
L
laosan_ted 已提交
3146

Z
zhou-liting125 已提交
3147 3148
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3149
  @Entry
L
update  
laosan_ted 已提交
3150 3151
  @Component
  struct WebComponent {
Y
yamila 已提交
3152
    controller: WebController = new WebController()
L
laosan_ted 已提交
3153
  
L
update  
laosan_ted 已提交
3154 3155 3156
    build() {
      Column() {
        Button('getPageHeight')
L
laosan_ted 已提交
3157
          .onClick(() => {
Y
yamila 已提交
3158 3159
            let pageHeight = this.controller.getPageHeight()
            console.log("pageHeight: " + pageHeight)
L
laosan_ted 已提交
3160
          })
Z
zhou-liting125 已提交
3161
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3162
      }
L
update  
laosan_ted 已提交
3163 3164 3165
    }
  }
  ```
3166 3167 3168 3169 3170

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

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

Z
zhou-liting125 已提交
3172
**返回值:**
L
laosan_ted 已提交
3173

3174 3175 3176
| 类型     | 说明      |
| ------ | ------- |
| string | 默认用户代理。 |
L
lixingchi1 已提交
3177

Z
zhou-liting125 已提交
3178
**示例:**
L
laosan_ted 已提交
3179

Z
zhou-liting125 已提交
3180 3181
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3182
  @Entry
L
update  
laosan_ted 已提交
3183 3184
  @Component
  struct WebComponent {
Y
yamila 已提交
3185
    controller: WebController = new WebController()
L
laosan_ted 已提交
3186
  
L
update  
laosan_ted 已提交
3187 3188 3189
    build() {
      Column() {
        Button('getDefaultUserAgent')
L
laosan_ted 已提交
3190
          .onClick(() => {
Y
yamila 已提交
3191 3192
            let userAgent = this.controller.getDefaultUserAgent()
            console.log("userAgent: " + userAgent)
L
laosan_ted 已提交
3193
          })
Z
zhou-liting125 已提交
3194
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3195
      }
L
update  
laosan_ted 已提交
3196 3197 3198 3199
    }
  }
  ```

L
lixingchi1 已提交
3200 3201
### loadData

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

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

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

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

Z
zhou-liting125 已提交
3210
**参数:**
L
laosan_ted 已提交
3211

3212 3213 3214 3215 3216 3217 3218
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
3219

Z
zhou-liting125 已提交
3220
**示例:**
L
laosan_ted 已提交
3221

Z
zhou-liting125 已提交
3222 3223
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3224
  @Entry
L
update  
laosan_ted 已提交
3225 3226
  @Component
  struct WebComponent {
Y
yamila 已提交
3227
    controller: WebController = new WebController()
L
laosan_ted 已提交
3228
  
L
update  
laosan_ted 已提交
3229 3230 3231
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
3232 3233 3234 3235 3236
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
Y
yamila 已提交
3237
            })
L
laosan_ted 已提交
3238
          })
Z
zhou-liting125 已提交
3239
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3240
      }
L
update  
laosan_ted 已提交
3241 3242 3243 3244
    }
  }
  ```

Z
zengyawen 已提交
3245 3246
### loadUrl

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

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

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

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

Z
zhou-liting125 已提交
3255
**参数:**
L
laosan_ted 已提交
3256

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

Z
zhou-liting125 已提交
3262
**示例:**
L
laosan_ted 已提交
3263

Z
zhou-liting125 已提交
3264 3265
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3266
  @Entry
L
update  
laosan_ted 已提交
3267 3268
  @Component
  struct WebComponent {
Y
yamila 已提交
3269
    controller: WebController = new WebController()
L
laosan_ted 已提交
3270
  
L
update  
laosan_ted 已提交
3271 3272 3273
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
3274
          .onClick(() => {
Y
yamila 已提交
3275
            this.controller.loadUrl({ url: 'www.example.com' })
L
laosan_ted 已提交
3276
          })
Z
zhou-liting125 已提交
3277
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3278
      }
L
update  
laosan_ted 已提交
3279 3280 3281 3282
    }
  }
  ```

L
lixingchi1 已提交
3283 3284 3285 3286
### onActive

onActive(): void

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

Z
zhou-liting125 已提交
3289
**示例:**
L
laosan_ted 已提交
3290

Z
zhou-liting125 已提交
3291 3292
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3293
  @Entry
L
update  
laosan_ted 已提交
3294 3295
  @Component
  struct WebComponent {
Y
yamila 已提交
3296
    controller: WebController = new WebController()
L
laosan_ted 已提交
3297
  
L
update  
laosan_ted 已提交
3298 3299 3300
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
3301
          .onClick(() => {
Y
yamila 已提交
3302
            this.controller.onActive()
L
laosan_ted 已提交
3303
          })
Z
zhou-liting125 已提交
3304
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3305
      }
L
update  
laosan_ted 已提交
3306 3307 3308 3309
    }
  }
  ```

L
lixingchi1 已提交
3310 3311 3312 3313
### onInactive

onInactive(): void

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

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

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

3337 3338 3339 3340
### zoom
zoom(factor: number): void

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

Z
zhou-liting125 已提交
3342
**参数:**
L
laosan_ted 已提交
3343

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

Z
zhou-liting125 已提交
3348
**示例:**
L
laosan_ted 已提交
3349

Z
zhou-liting125 已提交
3350 3351
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3352
  @Entry
L
update  
laosan_ted 已提交
3353 3354
  @Component
  struct WebComponent {
Y
yamila 已提交
3355 3356
    controller: WebController = new WebController()
    @State factor: number = 1
L
laosan_ted 已提交
3357
  
L
update  
laosan_ted 已提交
3358 3359 3360
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
3361
          .onClick(() => {
Y
yamila 已提交
3362
            this.controller.zoom(this.factor)
L
laosan_ted 已提交
3363
          })
Z
zhou-liting125 已提交
3364
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3365
      }
L
update  
laosan_ted 已提交
3366 3367 3368 3369
    }
  }
  ```

3370 3371 3372 3373
### zoomIn<sup>9+</sup>
zoomIn(): boolean

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

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

3377 3378 3379
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 放大操作是否成功执行。 |
3380

Z
zhou-liting125 已提交
3381
**示例:**
L
laosan_ted 已提交
3382

Z
zhou-liting125 已提交
3383 3384
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3385
  @Entry
L
update  
laosan_ted 已提交
3386 3387
  @Component
  struct WebComponent {
Y
yamila 已提交
3388
    controller: WebController = new WebController()
L
laosan_ted 已提交
3389
  
L
update  
laosan_ted 已提交
3390 3391 3392
    build() {
      Column() {
        Button('zoomIn')
L
laosan_ted 已提交
3393
          .onClick(() => {
Y
yamila 已提交
3394 3395
            let result = this.controller.zoomIn()
            console.log("result: " + result)
L
laosan_ted 已提交
3396
          })
Z
zhou-liting125 已提交
3397
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3398
      }
L
update  
laosan_ted 已提交
3399 3400 3401 3402
    }
  }
  ```

3403 3404 3405 3406
### zoomOut<sup>9+</sup>
zoomOut(): boolean

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

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

3410 3411 3412
| 类型      | 说明          |
| ------- | ----------- |
| boolean | 缩小操作是否成功执行。 |
3413

Z
zhou-liting125 已提交
3414
**示例:**
L
laosan_ted 已提交
3415

Z
zhou-liting125 已提交
3416 3417
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3418
  @Entry
L
update  
laosan_ted 已提交
3419 3420
  @Component
  struct WebComponent {
Y
yamila 已提交
3421
    controller: WebController = new WebController()
L
laosan_ted 已提交
3422
  
L
update  
laosan_ted 已提交
3423 3424 3425
    build() {
      Column() {
        Button('zoomOut')
L
laosan_ted 已提交
3426
          .onClick(() => {
Y
yamila 已提交
3427 3428
            let result = this.controller.zoomOut()
            console.log("result: " + result)
L
laosan_ted 已提交
3429
          })
Z
zhou-liting125 已提交
3430
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3431
      }
L
update  
laosan_ted 已提交
3432 3433 3434 3435
    }
  }
  ```

L
lixingchi1 已提交
3436 3437
### refresh

Z
zhou-liting125 已提交
3438
refresh()
L
lixingchi1 已提交
3439

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

Z
zhou-liting125 已提交
3442
**示例:**
L
laosan_ted 已提交
3443

Z
zhou-liting125 已提交
3444 3445
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3446
  @Entry
L
update  
laosan_ted 已提交
3447 3448
  @Component
  struct WebComponent {
Y
yamila 已提交
3449
    controller: WebController = new WebController()
L
laosan_ted 已提交
3450
  
L
update  
laosan_ted 已提交
3451 3452 3453
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
3454
          .onClick(() => {
Y
yamila 已提交
3455
            this.controller.refresh()
L
laosan_ted 已提交
3456
          })
Z
zhou-liting125 已提交
3457
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3458
      }
L
update  
laosan_ted 已提交
3459 3460 3461 3462
    }
  }
  ```

L
lixingchi1 已提交
3463 3464
### registerJavaScriptProxy

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

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

Z
zhou-liting125 已提交
3469
**参数:**
L
laosan_ted 已提交
3470

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

Z
zhou-liting125 已提交
3477
**示例:**
L
laosan_ted 已提交
3478

Z
zhou-liting125 已提交
3479 3480
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3481
  @Entry
L
update  
laosan_ted 已提交
3482 3483 3484 3485 3486
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
Y
yamila 已提交
3487
        return "ArkUI Web Component"
L
update  
laosan_ted 已提交
3488 3489
      },
      toString: () => {
Y
yamila 已提交
3490
        console.log('Web Component toString')
L
update  
laosan_ted 已提交
3491 3492 3493 3494 3495 3496 3497 3498 3499 3500
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
Y
yamila 已提交
3501
            })
L
update  
laosan_ted 已提交
3502 3503 3504 3505 3506 3507 3508 3509
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
3510

L
update  
laosan_ted 已提交
3511
  ```html
L
laosan_ted 已提交
3512
  <!-- index.html -->
L
update  
laosan_ted 已提交
3513 3514 3515 3516 3517 3518 3519 3520
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
Y
yamila 已提交
3521 3522
          str = objName.test("test function")
          console.log('objName.test result:'+ str)
L
update  
laosan_ted 已提交
3523 3524 3525 3526 3527 3528
      }
  </script>
  </html>
  
  ```

L
lixingchi1 已提交
3529 3530
### runJavaScript

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

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

Z
zhou-liting125 已提交
3535
**参数:**
L
laosan_ted 已提交
3536

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

Z
zhou-liting125 已提交
3542
**示例:**
L
laosan_ted 已提交
3543

Z
zhou-liting125 已提交
3544 3545
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3546
  @Entry
L
update  
laosan_ted 已提交
3547 3548
  @Component
  struct WebComponent {
Y
yamila 已提交
3549
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561
    @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}`)
Y
yamila 已提交
3562 3563
            }})
          console.info('url: ', e.url)
L
update  
laosan_ted 已提交
3564 3565 3566 3567 3568 3569 3570
        })
      }
    }
  }
  ```

  ```html
L
laosan_ted 已提交
3571
  <!-- index.html -->
L
update  
laosan_ted 已提交
3572 3573 3574 3575 3576 3577 3578 3579
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
Y
yamila 已提交
3580
        console.log('Ark WebComponent')
L
update  
laosan_ted 已提交
3581 3582 3583 3584 3585 3586 3587
        return "This value is from index.html"
    }
    </script>
  </html>

  ```

L
lixingchi1 已提交
3588 3589
### stop

Z
zhou-liting125 已提交
3590
stop()
Z
zengyawen 已提交
3591

L
lixingchi1 已提交
3592
停止页面加载。
Z
zengyawen 已提交
3593

Z
zhou-liting125 已提交
3594
**示例:**
L
laosan_ted 已提交
3595

Z
zhou-liting125 已提交
3596 3597
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3598
  @Entry
L
update  
laosan_ted 已提交
3599 3600
  @Component
  struct WebComponent {
Y
yamila 已提交
3601
    controller: WebController = new WebController()
L
laosan_ted 已提交
3602
  
L
update  
laosan_ted 已提交
3603 3604 3605
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
3606
          .onClick(() => {
Y
yamila 已提交
3607
            this.controller.stop()
L
laosan_ted 已提交
3608
          })
Z
zhou-liting125 已提交
3609
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3610
      }
L
update  
laosan_ted 已提交
3611 3612 3613 3614
    }
  }
  ```

T
Ted 已提交
3615 3616 3617 3618 3619 3620
### clearHistory

clearHistory(): void

删除所有前进后退记录。

Z
zhou-liting125 已提交
3621
**示例:**
L
laosan_ted 已提交
3622

Z
zhou-liting125 已提交
3623 3624
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3625
  @Entry
L
update  
laosan_ted 已提交
3626 3627
  @Component
  struct WebComponent {
Y
yamila 已提交
3628
    controller: WebController = new WebController()
L
laosan_ted 已提交
3629
  
L
update  
laosan_ted 已提交
3630 3631 3632
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
3633
          .onClick(() => {
Y
yamila 已提交
3634
            this.controller.clearHistory()
L
laosan_ted 已提交
3635
          })
Z
zhou-liting125 已提交
3636
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3637
      }
L
update  
laosan_ted 已提交
3638 3639 3640 3641
    }
  }
  ```

I
i-am-a-little-bird 已提交
3642 3643 3644 3645
### clearSslCache

clearSslCache(): void

I
bugfix  
i-am-a-little-bird 已提交
3646
清除Web组件记录的SSL证书错误事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
3647 3648 3649 3650 3651 3652 3653 3654

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3655
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
3656 3657 3658 3659 3660

    build() {
      Column() {
        Button('clearSslCache')
          .onClick(() => {
Y
yamila 已提交
3661
            this.controller.clearSslCache()
I
i-am-a-little-bird 已提交
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

### clearClientAuthenticationCache

clearClientAuthenticationCache(): void

I
bugfix  
i-am-a-little-bird 已提交
3673
清除Web组件记录的客户端证书请求事件对应的用户操作行为。
I
i-am-a-little-bird 已提交
3674 3675 3676 3677 3678 3679 3680 3681

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3682
    controller: WebController = new WebController()
I
i-am-a-little-bird 已提交
3683 3684 3685 3686 3687

    build() {
      Column() {
        Button('clearClientAuthenticationCache')
          .onClick(() => {
Y
yamila 已提交
3688
            this.controller.clearClientAuthenticationCache()
I
i-am-a-little-bird 已提交
3689 3690 3691 3692 3693 3694 3695
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
3696
### getCookieManager<sup>9+</sup>
T
Ted 已提交
3697 3698 3699 3700

getCookieManager(): WebCookie

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

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

3704 3705 3706
| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookie)定义。 |
3707

Z
zhou-liting125 已提交
3708
**示例:**
L
laosan_ted 已提交
3709

Z
zhou-liting125 已提交
3710 3711
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
3712
  @Entry
L
update  
laosan_ted 已提交
3713 3714
  @Component
  struct WebComponent {
Y
yamila 已提交
3715
    controller: WebController = new WebController()
L
laosan_ted 已提交
3716
  
L
update  
laosan_ted 已提交
3717 3718 3719
    build() {
      Column() {
        Button('getCookieManager')
L
laosan_ted 已提交
3720
          .onClick(() => {
Y
yamila 已提交
3721
            let cookieManager = this.controller.getCookieManager()
L
laosan_ted 已提交
3722
          })
Z
zhou-liting125 已提交
3723
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3724
      }
L
update  
laosan_ted 已提交
3725 3726 3727 3728
    }
  }
  ```

3729 3730
### createWebMessagePorts<sup>9+</sup>

E
echoorchid 已提交
3731
createWebMessagePorts(): Array\<WebMessagePort\>
3732

E
echoorchid 已提交
3733
创建Web消息端口。
3734 3735

**返回值:**
3736

L
laosan_ted 已提交
3737

3738 3739
| 类型                              | 说明            |
| ------------------------------- | ------------- |
E
echoorchid 已提交
3740
| Array\<[WebMessagePort](#webmessageport9)\> | web消息端口列表。 |
3741 3742

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

3744 3745 3746 3747 3748
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3749 3750
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
3751 3752 3753 3754
    build() {
      Column() {
        Button('createWebMessagePorts')
          .onClick(() => {
Y
yamila 已提交
3755
            this.ports = this.controller.createWebMessagePorts()
3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767
            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 已提交
3768
发送Web消息端口到HTML5。
3769 3770

**参数:**
3771

3772 3773
| 参数名        | 参数类型            | 必填   | 默认值  | 参数描述                      |
| ---------- | --------------- | ---- | ---- | ------------------------- |
E
echoorchid 已提交
3774 3775
| message     | [WebMessageEvent](#webmessageevent9)          | 是    | -    |要发送的消息,包含数据和消息端口。 |
| uri       | string          | 是    | -    | 接收该消息的URI。 |
3776 3777

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

3779
  ```ts
E
echoorchid 已提交
3780
  // index.ets
3781 3782 3783
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3784 3785 3786 3787
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
    @State sendFromEts: string = 'Send this message from ets to HTML'
    @State receivedFromHtml: string = 'Display received message send from HTML'
E
echoorchid 已提交
3788

3789 3790
    build() {
      Column() {
E
echoorchid 已提交
3791 3792 3793 3794 3795
        // 展示接收到的来自HTML的内容
        Text(this.receivedFromHtml)
        // 输入框的内容发送到HTML
        TextInput({placeholder: 'Send this message from ets to HTML'})
        .onChange((value: string) => {
Y
yamila 已提交
3796
          this.sendFromEts = value
E
echoorchid 已提交
3797 3798 3799 3800 3801
        })

        // 1、创建两个消息端口
        Button('1.CreateWebMessagePorts')
          .onClick(() => {
Y
yamila 已提交
3802
            this.ports = this.controller.createWebMessagePorts()
E
echoorchid 已提交
3803 3804 3805 3806 3807
            console.log("createWebMessagePorts size:" + this.ports.length)
          })

        // 2、将其中一个消息端口发送到HTML侧,由HTML侧保存并使用。
        Button('2.PostMessagePort')
3808
          .onClick(() => {
Y
yamila 已提交
3809 3810 3811 3812 3813
            var sendPortArray = new Array(this.ports[1])
            var msgEvent = new WebMessageEvent()
            msgEvent.setData("__init_port__")
            msgEvent.setPorts(sendPortArray)
            this.controller.postMessage({message: msgEvent, uri: "*"})
3814
          })
E
echoorchid 已提交
3815 3816 3817 3818 3819

        // 3、另一个消息端口在应用侧注册回调事件。
        Button('3.RegisterCallback')
          .onClick(() => {
              this.ports[0].onMessageEvent((result: string) => {
Y
yamila 已提交
3820 3821
                var msg = 'Got msg from HTML: ' + result
                this.receivedFromHtml = msg
E
echoorchid 已提交
3822 3823 3824 3825 3826 3827
              })
          })

        // 4、使用应用侧的端口给另一个已经发送到HTML的消息端口发送消息。
        Button('4.SendDataToHtml5')
          .onClick(() => {
Y
yamila 已提交
3828 3829 3830
            var msg = new WebMessageEvent()
            msg.setData(this.sendFromEts)
            this.ports[0].postMessageEvent(msg)
E
echoorchid 已提交
3831 3832 3833 3834
          })
        Web({ src: $rawfile("index.html"), controller: this.controller })
          .javaScriptAccess(true)
          .fileAccess(true)
3835 3836 3837
      }
    }
  }
E
echoorchid 已提交
3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853

  // index.html
  <!DOCTYPE html>
  <html>
      <body>
          <h1>Web Message Port Demo</h1>
          <div style="font-size: 24pt;">
            <input type="button" value="5.SendToEts" onclick="PostMsgToEts(msgFromJS.value);" /><br/>
            <input id="msgFromJS" type="text" value="send this message from HTML to ets" style="font-size: 16pt;" /><br/>
          </div>
          <p class="output">display received message send from ets</p>
      </body>
      <script src="index.js"></script>
  </html>

  // index.js
3854
  var h5Port;
E
echoorchid 已提交
3855 3856 3857
  var output = document.querySelector('.output');
  window.addEventListener('message', function(event) {
    if (event.data == '__init_port__') {
3858
      if(event.ports[0] != null) {
E
echoorchid 已提交
3859
        h5Port = event.ports[0]; // 1. 保存从ets侧发送过来的端口
3860
        h5Port.onmessage = function(event) {
E
echoorchid 已提交
3861 3862 3863
          // 2. 接收ets侧发送过来的消息.
          var msg = 'Got message from ets:' + event.data;
          output.innerHTML = msg;
3864 3865 3866 3867
        }
      }
    }
  })
E
echoorchid 已提交
3868 3869 3870 3871 3872

  // 3. 使用h5Port往ets侧发送消息.
  function PostMsgToEts(data) {
    h5Port.postMessage(data)
  }
3873 3874
  ```

Y
yu-shihao4 已提交
3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893
### getUrl<sup>9+</sup>

getUrl(): string

获取当前页面的url地址。

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
3894
    controller: WebController = new WebController()
Y
yu-shihao4 已提交
3895 3896 3897 3898
    build() {
      Column() {
        Button('getUrl')
          .onClick(() => {
Y
yamila 已提交
3899
            console.log("url: " + this.controller.getUrl())
Y
yu-shihao4 已提交
3900 3901 3902 3903 3904 3905 3906
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
laosan_ted 已提交
3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013
### searchAllAsync<sup>9+</sup>

searchAllAsync(searchString: string): void

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

**参数:**

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

**示例:**

  ```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)匹配到的高亮字符查找结果。

**示例:**

  ```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 | 是    | -    | 从前向后或者逆向查找。 |


**示例:**

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

4014
## HitTestValue<sup>9+</sup>
Z
zhou-liting125 已提交
4015
提供点击区域的元素信息。示例代码参考[getHitTestValue](#gethittestvalue9)
4016 4017 4018 4019 4020

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

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

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

4024 4025 4026
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| [HitTestType](#hittesttype枚举说明) | 当前被点击区域的元素类型。 |
4027 4028 4029 4030 4031

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

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

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

4035 4036 4037
| 类型     | 说明           |
| ------ | ------------ |
| string | 点击区域的附加参数信息。 |
4038

L
laosan_ted 已提交
4039

T
Ted 已提交
4040
## WebCookie
Z
zhou-liting125 已提交
4041

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

### setCookie<sup>9+</sup>
T
Ted 已提交
4045 4046 4047 4048
setCookie(url: string, value: string): boolean

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

Z
zhou-liting125 已提交
4049
**参数:**
L
laosan_ted 已提交
4050

4051 4052 4053 4054
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value | string | 是    | -    | cookie的值。         |
Z
zhou-liting125 已提交
4055

Z
zhou-liting125 已提交
4056
**返回值:** 
L
laosan_ted 已提交
4057

4058 4059 4060
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
T
Ted 已提交
4061

Z
zhou-liting125 已提交
4062
**示例:**
L
laosan_ted 已提交
4063

Z
zhou-liting125 已提交
4064 4065
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4066
  @Entry
L
update  
laosan_ted 已提交
4067 4068
  @Component
  struct WebComponent {
Y
yamila 已提交
4069
    controller: WebController = new WebController()
L
laosan_ted 已提交
4070
  
L
update  
laosan_ted 已提交
4071 4072 4073
    build() {
      Column() {
        Button('setCookie')
L
laosan_ted 已提交
4074
          .onClick(() => {
Y
yamila 已提交
4075 4076
            let result = this.controller.getCookieManager().setCookie("www.example.com", "a=b")
            console.log("result: " + result)
L
laosan_ted 已提交
4077
          })
Z
zhou-liting125 已提交
4078
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4079
      }
L
update  
laosan_ted 已提交
4080 4081 4082 4083
    }
  }
  ```

Z
zhou-liting125 已提交
4084
### saveCookieSync<sup>9+</sup>
T
Ted 已提交
4085 4086 4087
saveCookieSync(): boolean

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

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

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

Z
zhou-liting125 已提交
4095
**示例:**
L
laosan_ted 已提交
4096

Z
zhou-liting125 已提交
4097 4098
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4099
  @Entry
L
update  
laosan_ted 已提交
4100 4101
  @Component
  struct WebComponent {
Y
yamila 已提交
4102
    controller: WebController = new WebController()
L
laosan_ted 已提交
4103
  
L
update  
laosan_ted 已提交
4104 4105 4106
    build() {
      Column() {
        Button('saveCookieSync')
L
laosan_ted 已提交
4107
          .onClick(() => {
Y
yamila 已提交
4108 4109
            let result = this.controller.getCookieManager().saveCookieSync()
            console.log("result: " + result)
L
laosan_ted 已提交
4110
          })
Z
zhou-liting125 已提交
4111
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4112
      }
L
update  
laosan_ted 已提交
4113 4114 4115 4116
    }
  }
  ```

L
laosan_ted 已提交
4117 4118
### getCookie<sup>9+</sup>
getCookie(url: string): string
4119

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

L
laosan_ted 已提交
4122
**参数:**
4123

L
laosan_ted 已提交
4124 4125 4126
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要获取的cookie所属的url。 |
4127

L
laosan_ted 已提交
4128 4129 4130 4131 4132
**返回值:**

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

Z
zhou-liting125 已提交
4134
**示例:**
L
laosan_ted 已提交
4135

Z
zhou-liting125 已提交
4136 4137
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4138
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4139 4140 4141
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4142
    controller: WebController = new WebController()
L
laosan_ted 已提交
4143 4144 4145
  
    build() {
      Column() {
L
laosan_ted 已提交
4146
        Button('getCookie')
L
laosan_ted 已提交
4147
          .onClick(() => {
Y
yamila 已提交
4148 4149
            let value = webview.WebCookieManager.getCookie('www.example.com')
            console.log("value: " + value)
L
laosan_ted 已提交
4150
          })
Z
zhou-liting125 已提交
4151
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4152 4153 4154
      }
    }
  }
L
update  
laosan_ted 已提交
4155 4156
  ```

L
laosan_ted 已提交
4157 4158
### setCookie<sup>9+</sup>
setCookie(url: string, value: string): boolean
4159

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

L
laosan_ted 已提交
4162
**参数:**
4163

L
laosan_ted 已提交
4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| url   | string | 是    | -    | 要设置的cookie所属的url。 |
| value   | string | 是    | -    | 要设置的cookie的值。 |

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4179
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4180 4181 4182
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4183
    controller: WebController = new WebController()
L
laosan_ted 已提交
4184 4185 4186 4187 4188
  
    build() {
      Column() {
        Button('setCookie')
          .onClick(() => {
Y
yamila 已提交
4189 4190
            let result = web_webview.WebCookieManager.setCookie('www.example.com', 'a=b')
            console.log("result: " + result)
L
laosan_ted 已提交
4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4213
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4214 4215 4216
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4217
    controller: WebController = new WebController()
L
laosan_ted 已提交
4218 4219 4220 4221 4222
  
    build() {
      Column() {
        Button('saveCookieSync')
          .onClick(() => {
Y
yamila 已提交
4223 4224
            let result = web_webview.WebCookieManager.saveCookieSync()
            console.log("result: " + result)
L
laosan_ted 已提交
4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246
          })
        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 已提交
4247
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4248 4249 4250
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4251
    controller: WebController = new WebController()
L
laosan_ted 已提交
4252 4253 4254 4255 4256
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
4257
            web_webview.WebCookieManager.saveCookieAsync()
L
laosan_ted 已提交
4258
              .then (function(result) {
Y
yamila 已提交
4259
                console.log("result: " + result)
L
laosan_ted 已提交
4260 4261
              })
              .catch(function(error) {
Y
yamila 已提交
4262 4263
                console.error("error: " + error)
              })
L
laosan_ted 已提交
4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
          })
        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 已提交
4286
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4287 4288 4289
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4290
    controller: WebController = new WebController()
L
laosan_ted 已提交
4291 4292 4293 4294 4295
  
    build() {
      Column() {
        Button('saveCookieAsync')
          .onClick(() => {
L
laosan_ted 已提交
4296
            web_webview.WebCookieManager.saveCookieAsync(function(result) {
Y
yamila 已提交
4297 4298
              console.log("result: " + result)
            })
L
laosan_ted 已提交
4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4321
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4322 4323 4324
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4325
    controller: WebController = new WebController()
L
laosan_ted 已提交
4326 4327 4328 4329 4330
  
    build() {
      Column() {
        Button('isCookieAllowed')
          .onClick(() => {
Y
yamila 已提交
4331 4332
            let result = web_webview.WebCookieManager.isCookieAllowed()
            console.log("result: " + result)
L
laosan_ted 已提交
4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354
          })
        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 已提交
4355
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4356 4357 4358
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4359
    controller: WebController = new WebController()
L
laosan_ted 已提交
4360 4361 4362 4363 4364
  
    build() {
      Column() {
        Button('putAcceptCookieEnabled')
          .onClick(() => {
Y
yamila 已提交
4365
            web_webview.WebCookieManager.putAcceptCookieEnabled(false)
L
laosan_ted 已提交
4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4388
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4389 4390 4391
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4392
    controller: WebController = new WebController()
L
laosan_ted 已提交
4393 4394 4395 4396 4397
  
    build() {
      Column() {
        Button('isThirdPartyCookieAllowed')
          .onClick(() => {
Y
yamila 已提交
4398 4399
            let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed()
            console.log("result: " + result)
L
laosan_ted 已提交
4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421
          })
        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 已提交
4422
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4423 4424 4425
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4426
    controller: WebController = new WebController()
L
laosan_ted 已提交
4427 4428 4429 4430 4431
  
    build() {
      Column() {
        Button('putAcceptThirdPartyCookieEnabled')
          .onClick(() => {
Y
yamila 已提交
4432
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false)
L
laosan_ted 已提交
4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

获取是否存在cookie。

**返回值:**

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4455
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4456 4457 4458
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4459
    controller: WebController = new WebController()
L
laosan_ted 已提交
4460 4461 4462 4463 4464
  
    build() {
      Column() {
        Button('existCookie')
          .onClick(() => {
Y
yamila 已提交
4465 4466
            let result = web_webview.WebCookieManager.existCookie()
            console.log("result: " + result)
L
laosan_ted 已提交
4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

清除所有cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4483
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4484 4485 4486
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4487
    controller: WebController = new WebController()
L
laosan_ted 已提交
4488 4489 4490 4491 4492
  
    build() {
      Column() {
        Button('deleteEntireCookie')
          .onClick(() => {
Y
yamila 已提交
4493
            web_webview.WebCookieManager.deleteEntireCookie()
L
laosan_ted 已提交
4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

清除所有会话cookie。

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4510
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4511 4512 4513
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4514
    controller: WebController = new WebController()
L
laosan_ted 已提交
4515 4516 4517 4518 4519
  
    build() {
      Column() {
        Button('deleteSessionCookie')
          .onClick(() => {
Y
yamila 已提交
4520
            webview.WebCookieManager.deleteSessionCookie()
L
laosan_ted 已提交
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 4546
          })
        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 已提交
4547
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4548 4549 4550
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4551
    controller: WebController = new WebController()
L
laosan_ted 已提交
4552 4553 4554 4555 4556
  
    build() {
      Column() {
        Button('existHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
4557 4558
            let result = web_webview.WebDataBase.existHttpAuthCredentials()
            console.log('result: ' + result)
L
laosan_ted 已提交
4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

static deleteHttpAuthCredentials(): void

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

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
4576
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4577
  @Entry
L
laosan_ted 已提交
4578 4579
  @Component
  struct WebComponent {
Y
yamila 已提交
4580
    controller: WebController = new WebController()
L
laosan_ted 已提交
4581 4582 4583 4584 4585
  
    build() {
      Column() {
        Button('deleteHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
4586
            web_webview.WebDataBase.deleteHttpAuthCredentials()
L
laosan_ted 已提交
4587
          })
Z
zhou-liting125 已提交
4588
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4589 4590 4591
      }
    }
  }
L
update  
laosan_ted 已提交
4592 4593
  ```

4594 4595 4596 4597
### getHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
4600
**参数:**
L
laosan_ted 已提交
4601

4602 4603 4604 4605
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述             |
| ----- | ------ | ---- | ---- | ---------------- |
| host  | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm | string | 是    | -    | HTTP身份验证凭据应用的域。  |
Z
zhou-liting125 已提交
4606

Z
zhou-liting125 已提交
4607
**返回值:** 
L
laosan_ted 已提交
4608

4609 4610 4611
| 类型              | 说明                     |
| --------------- | ---------------------- |
| Array\<string\> | 包含用户名和密码的组数,检索失败返回空数组。 |
4612

Z
zhou-liting125 已提交
4613
**示例:**
L
laosan_ted 已提交
4614

Z
zhou-liting125 已提交
4615 4616
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4617
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4618 4619 4620
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4621 4622 4623 4624
    controller: WebController = new WebController()
    host: string = "www.spincast.org"
    realm: string = "protected example"
    username_password: string[]
L
laosan_ted 已提交
4625 4626 4627 4628
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
4629 4630
            this.username_password = web_webview.WebDataBase.getHttpAuthCredentials(this.host, this.realm)
            console.log('num: ' + this.username_password.length)
L
laosan_ted 已提交
4631
            ForEach(this.username_password, (item) => {
Y
yamila 已提交
4632
              console.log('username_password: ' + item)
L
laosan_ted 已提交
4633 4634
            }, item => item)
          })
Z
zhou-liting125 已提交
4635
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4636 4637 4638
      }
    }
  }
L
update  
laosan_ted 已提交
4639 4640
  ```

4641 4642 4643 4644
### saveHttpAuthCredentials<sup>9+</sup>

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

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

Z
zhou-liting125 已提交
4647
**参数:**
L
laosan_ted 已提交
4648

4649 4650 4651 4652 4653 4654
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述             |
| -------- | ------ | ---- | ---- | ---------------- |
| host     | string | 是    | -    | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是    | -    | HTTP身份验证凭据应用的域。  |
| username | string | 是    | -    | 用户名。             |
| password | string | 是    | -    | 密码。              |
4655

Z
zhou-liting125 已提交
4656
**示例:**
L
laosan_ted 已提交
4657

Z
zhou-liting125 已提交
4658 4659
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4660
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4661 4662 4663
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4664 4665 4666
    controller: WebController = new WebController()
    host: string = "www.spincast.org"
    realm: string = "protected example"
L
laosan_ted 已提交
4667 4668 4669 4670
    build() {
      Column() {
        Button('saveHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
4671
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche")
L
laosan_ted 已提交
4672
          })
Z
zhou-liting125 已提交
4673
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4674 4675 4676
      }
    }
  }
L
update  
laosan_ted 已提交
4677 4678
  ```

4679 4680 4681 4682 4683 4684 4685 4686
## GeolocationPermissions<sup>9+</sup>

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

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

static allowGeolocation(origin: string): void

4687
允许指定来源使用地理位置接口。
4688 4689 4690 4691 4692 4693 4694 4695

**参数:**

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

**示例:**
4696

4697 4698
  ```ts
  // xxx.ets
Y
yamila 已提交
4699
  import web_webview from '@ohos.web.webview'
4700 4701 4702
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4703 4704
    controller: WebController = new WebController()
    origin: string = "file:///"
4705 4706 4707 4708
    build() {
      Column() {
        Button('allowGeolocation')
          .onClick(() => {
Y
yamila 已提交
4709
            web_webview.GeolocationPermissions.allowGeolocation(this.origin)
4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

static deleteGeolocation(origin: string): void

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

**参数:**

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

**示例:**
4730

4731 4732
  ```ts
  // xxx.ets
Y
yamila 已提交
4733
  import web_webview from '@ohos.web.webview'
4734 4735 4736
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4737 4738
    controller: WebController = new WebController()
    origin: string = "file:///"
4739 4740 4741 4742
    build() {
      Column() {
        Button('deleteGeolocation')
          .onClick(() => {
Y
yamila 已提交
4743
            web_webview.GeolocationPermissions.deleteGeolocation(this.origin)
4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

static deleteAllGeolocation(): void

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

**示例:**
4758

4759 4760
  ```ts
  // xxx.ets
Y
yamila 已提交
4761
  import web_webview from '@ohos.web.webview'
4762 4763 4764
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4765
    controller: WebController = new WebController()
4766 4767 4768 4769
    build() {
      Column() {
        Button('deleteAllGeolocation')
          .onClick(() => {
Y
yamila 已提交
4770
            web_webview.GeolocationPermissions.deleteAllGeolocation()
4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

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

**参数:**

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

**示例:**
4792

4793 4794
  ```ts
  // xxx.ets
Y
yamila 已提交
4795
  import web_webview from '@ohos.web.webview'
4796 4797 4798
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4799 4800
    controller: WebController = new WebController()
    origin: string = "file:///"
4801 4802 4803 4804
    build() {
      Column() {
        Button('getAccessibleGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4805
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
4806
              if (error) {
Y
yamila 已提交
4807 4808
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error))
                return
4809
              }
Y
yamila 已提交
4810 4811
              console.log('getAccessibleGeolocationAsync result: ' + result)
            })
4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

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

**参数:**

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

**返回值:**

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

**示例:**
4838

4839 4840
  ```ts
  // xxx.ets
Y
yamila 已提交
4841
  import web_webview from '@ohos.web.webview'
4842 4843 4844
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4845 4846
    controller: WebController = new WebController()
    origin: string = "file:///"
4847 4848 4849 4850
    build() {
      Column() {
        Button('getAccessibleGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4851
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin).then(result => {
Y
yamila 已提交
4852
              console.log('getAccessibleGeolocationPromise result: ' + result)
4853
            }).catch(error => {
Y
yamila 已提交
4854 4855
              console.log('getAccessibleGeolocationPromise error: ' + JSON.stringify(error))
            })
4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

4867
以回调方式异步获取已存储地理位置权限状态的所有源信息。
4868 4869 4870 4871 4872

**参数:**

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

**示例:**
4876

4877 4878
  ```ts
  // xxx.ets
Y
yamila 已提交
4879
  import web_webview from '@ohos.web.webview'
4880 4881 4882
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4883
    controller: WebController = new WebController()
4884 4885 4886 4887
    build() {
      Column() {
        Button('getStoredGeolocationAsync')
          .onClick(() => {
L
laosan_ted 已提交
4888
            web_webview.GeolocationPermissions.getStoredGeolocation((error, origins) => {
4889
              if (error) {
Y
yamila 已提交
4890 4891
                console.log('getStoredGeolocationAsync error: ' + JSON.stringify(error))
                return
4892
              }
Y
yamila 已提交
4893 4894 4895
              let origins_str: string = origins.join()
              console.log('getStoredGeolocationAsync origins: ' + origins_str)
            })
4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

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

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

4907
以Promise方式异步获取已存储地理位置权限状态的所有源信息。
4908 4909 4910 4911 4912

**参数:**

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

**返回值:**

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

**示例:**
4922

4923 4924
  ```ts
  // xxx.ets
Y
yamila 已提交
4925
  import web_webview from '@ohos.web.webview'
4926 4927 4928
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4929
    controller: WebController = new WebController()
4930 4931 4932 4933
    build() {
      Column() {
        Button('getStoredGeolocationPromise')
          .onClick(() => {
L
laosan_ted 已提交
4934
            web_webview.GeolocationPermissions.getStoredGeolocation().then(origins => {
Y
yamila 已提交
4935 4936
              let origins_str: string = origins.join()
              console.log('getStoredGeolocationPromise origins: ' + origins_str)
4937
            }).catch(error => {
Y
yamila 已提交
4938 4939
                console.log('getStoredGeolocationPromise error: ' + JSON.stringify(error))
            })
4940 4941 4942 4943 4944 4945 4946
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

4947 4948 4949 4950 4951 4952
## WebStorage<sup>9+</sup>
通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。
### deleteAllData<sup>9+</sup>
static deleteAllData(): void

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

Z
zhou-liting125 已提交
4954
**示例:**
L
laosan_ted 已提交
4955

Z
zhou-liting125 已提交
4956 4957
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4958
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4959 4960 4961
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4962
    controller: WebController = new WebController()
L
laosan_ted 已提交
4963 4964 4965 4966
    build() {
      Column() {
        Button('deleteAllData')
          .onClick(() => {
Y
yamila 已提交
4967
            web_webview.WebStorage.deleteAllData()
L
laosan_ted 已提交
4968
          })
Z
zhou-liting125 已提交
4969
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4970 4971 4972 4973
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
4974 4975
  ```

4976 4977 4978 4979
### deleteOrigin<sup>9+</sup>
static deleteOrigin(origin : string): void

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

Z
zhou-liting125 已提交
4981
**参数:**
L
laosan_ted 已提交
4982

4983 4984 4985
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
4986

Z
zhou-liting125 已提交
4987
**示例:**
L
laosan_ted 已提交
4988

Z
zhou-liting125 已提交
4989 4990
  ```ts
  // xxx.ets
L
laosan_ted 已提交
4991
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
4992 4993 4994
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4995 4996
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
4997 4998 4999 5000
    build() {
      Column() {
        Button('getHttpAuthCredentials')
          .onClick(() => {
Y
yamila 已提交
5001
            web_webview.WebStorage.deleteOrigin(this.origin)
L
laosan_ted 已提交
5002
          })
Z
zhou-liting125 已提交
5003
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5004 5005 5006 5007
        .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5008 5009
  ```

5010
### getOrigins<sup>9+</sup>
Z
zengyawen 已提交
5011
static getOrigins(callback: AsyncCallback\<Array\<WebStorageOrigin>>) : void
5012 5013

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

Z
zhou-liting125 已提交
5015
**参数:**
L
laosan_ted 已提交
5016

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

Z
zhou-liting125 已提交
5021
**示例:**
L
laosan_ted 已提交
5022

Z
zhou-liting125 已提交
5023 5024
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5025
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5026 5027 5028
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5029 5030
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5031 5032 5033 5034
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
5035
            web_webview.WebStorage.getOrigins((error, origins) => {
L
laosan_ted 已提交
5036
              if (error) {
Y
yamila 已提交
5037 5038
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
5039 5040
              }
              for (let i = 0; i < origins.length; i++) {
Y
yamila 已提交
5041 5042 5043
                console.log('origin: ' + origins[i].origin)
                console.log('usage: ' + origins[i].usage)
                console.log('quota: ' + origins[i].quota)
L
laosan_ted 已提交
5044 5045 5046
              }
            })
          })
Z
zhou-liting125 已提交
5047
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5048 5049
        .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5050
    }
L
laosan_ted 已提交
5051 5052
  }
  ```
L
update  
laosan_ted 已提交
5053

5054
### getOrigins<sup>9+</sup>
Z
zengyawen 已提交
5055
static getOrigins() : Promise\<Array\<WebStorageOrigin>>
5056 5057

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

Z
zhou-liting125 已提交
5059
**返回值:**
L
laosan_ted 已提交
5060

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

Z
zhou-liting125 已提交
5065
**示例:**
L
laosan_ted 已提交
5066

Z
zhou-liting125 已提交
5067 5068
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5069
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5070 5071 5072
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5073 5074
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5075 5076 5077 5078
    build() {
      Column() {
        Button('getOrigins')
          .onClick(() => {
L
laosan_ted 已提交
5079
            web_webview.WebStorage.getOrigins()
L
laosan_ted 已提交
5080 5081
              .then(origins => {
                for (let i = 0; i < origins.length; i++) {
Y
yamila 已提交
5082 5083 5084
                  console.log('origin: ' + origins[i].origin)
                  console.log('usage: ' + origins[i].usage)
                  console.log('quota: ' + origins[i].quota)
L
laosan_ted 已提交
5085 5086 5087
                }
              })
              .catch(error => {
Y
yamila 已提交
5088
                console.log('error: ' + error)
L
laosan_ted 已提交
5089 5090
              })
          })
Z
zhou-liting125 已提交
5091
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5092 5093
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5094
    }
L
laosan_ted 已提交
5095
  }
L
update  
laosan_ted 已提交
5096 5097
  ```

5098
### getOriginQuota<sup>9+</sup>
5099
static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void
5100 5101

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

Z
zhou-liting125 已提交
5103
**参数:**
L
laosan_ted 已提交
5104

5105 5106 5107
| 参数名      | 参数类型                   | 必填   | 说明        |
| -------- | ---------------------- | ---- | --------- |
| origin   | string                 | 是    | 指定源的字符串索引 |
5108
| callback | AsyncCallback\<number> | 是    | 指定源的存储配额。 |
5109

Z
zhou-liting125 已提交
5110
**示例:**
L
laosan_ted 已提交
5111

Z
zhou-liting125 已提交
5112 5113
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5114
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5115 5116 5117
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5118 5119
    controller: WebController = new WebController()
    origin: string = "origin"
L
laosan_ted 已提交
5120 5121 5122 5123
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
5124
            web_webview.WebStorage.getOriginQuota(this.origin, (error, quota) => {
L
laosan_ted 已提交
5125
              if (error) {
Y
yamila 已提交
5126 5127
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
5128
              }
Y
yamila 已提交
5129
              console.log('quota: ' + quota)
L
laosan_ted 已提交
5130 5131
            })
          })
Z
zhou-liting125 已提交
5132
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5133 5134
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5135
    }
L
laosan_ted 已提交
5136
  }
L
update  
laosan_ted 已提交
5137 5138
  ```

5139
### getOriginQuota<sup>9+</sup>
5140
static getOriginQuota(origin : string) : Promise\<number>
5141 5142

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

Z
zhou-liting125 已提交
5144
**参数:**
L
laosan_ted 已提交
5145

5146 5147 5148
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
5149

Z
zhou-liting125 已提交
5150
**返回值:**
L
laosan_ted 已提交
5151

5152 5153
| 类型               | 说明                      |
| ---------------- | ----------------------- |
5154
| Promise\<number> | Promise实例,用于获取指定源的存储配额。 |
5155

Z
zhou-liting125 已提交
5156
**示例:**
L
laosan_ted 已提交
5157

Z
zhou-liting125 已提交
5158 5159
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5160
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5161 5162 5163 5164
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
5165
    origin: string = "origin"
L
laosan_ted 已提交
5166 5167 5168 5169
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
5170
            web_webview.WebStorage.getOriginQuota(this.origin)
L
laosan_ted 已提交
5171
              .then(quota => {
Y
yamila 已提交
5172
                console.log('quota: ' + quota)
L
laosan_ted 已提交
5173 5174
              })
              .catch(error => {
Y
yamila 已提交
5175
                console.log('error: ' + error)
L
laosan_ted 已提交
5176 5177
              })
          })
Z
zhou-liting125 已提交
5178
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5179 5180 5181 5182
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5183 5184
  ```

5185
### getOriginUsage<sup>9+</sup>
5186
static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void
5187 5188

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

Z
zhou-liting125 已提交
5190
**参数:**
L
laosan_ted 已提交
5191

5192 5193 5194
| 参数名      | 参数类型                   | 必填   | 说明         |
| -------- | ---------------------- | ---- | ---------- |
| origin   | string                 | 是    | 指定源的字符串索引。 |
5195
| callback | AsyncCallback\<number> | 是    | 指定源的存储量。   |
5196

Z
zhou-liting125 已提交
5197
**示例:**
L
laosan_ted 已提交
5198

Z
zhou-liting125 已提交
5199 5200
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5201
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5202 5203 5204 5205
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
5206
    origin: string = "origin"
L
laosan_ted 已提交
5207 5208 5209 5210
    build() {
      Column() {
        Button('getOriginUsage')
          .onClick(() => {
L
laosan_ted 已提交
5211
            web_webview.WebStorage.getOriginUsage(this.origin, (error, usage) => {
L
laosan_ted 已提交
5212
              if (error) {
Y
yamila 已提交
5213 5214
                console.log('error: ' + error)
                return
L
laosan_ted 已提交
5215
              }
Y
yamila 已提交
5216
              console.log('usage: ' + usage)
L
laosan_ted 已提交
5217 5218
            })
          })
Z
zhou-liting125 已提交
5219
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5220 5221
          .databaseAccess(true)
      }
L
update  
laosan_ted 已提交
5222
    }
L
laosan_ted 已提交
5223
  }
L
update  
laosan_ted 已提交
5224 5225
  ```

5226
### getOriginUsage<sup>9+</sup>
5227
static getOriginUsage(origin : string) : Promise\<number>
5228 5229

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

Z
zhou-liting125 已提交
5231
**参数:**
L
laosan_ted 已提交
5232

5233 5234 5235
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
5236

Z
zhou-liting125 已提交
5237
**返回值:**
L
laosan_ted 已提交
5238

5239 5240
| 类型               | 说明                     |
| ---------------- | ---------------------- |
5241
| Promise\<number> | Promise实例,用于获取指定源的存储量。 |
5242

Z
zhou-liting125 已提交
5243
**示例:**
L
laosan_ted 已提交
5244

Z
zhou-liting125 已提交
5245 5246
  ```ts
  // xxx.ets
L
laosan_ted 已提交
5247
  import web_webview from '@ohos.web.webview'
L
laosan_ted 已提交
5248 5249 5250 5251
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
Y
yamila 已提交
5252
    origin: string = "origin"
L
laosan_ted 已提交
5253 5254 5255 5256
    build() {
      Column() {
        Button('getOriginQuota')
          .onClick(() => {
L
laosan_ted 已提交
5257
            web_webview.WebStorage.getOriginUsage(this.origin)
L
laosan_ted 已提交
5258
              .then(usage => {
Y
yamila 已提交
5259
                console.log('usage: ' + usage)
L
laosan_ted 已提交
5260 5261
              })
              .catch(error => {
Y
yamila 已提交
5262
                console.log('error: ' + error)
L
laosan_ted 已提交
5263 5264
              })
          })
Z
zhou-liting125 已提交
5265
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5266 5267 5268 5269
          .databaseAccess(true)
      }
    }
  }
L
update  
laosan_ted 已提交
5270 5271
  ```

5272
## WebStorageOrigin<sup>9+</sup>
Z
zhou-liting125 已提交
5273

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

Z
zhou-liting125 已提交
5276
**参数:**
L
laosan_ted 已提交
5277

5278 5279 5280 5281 5282
| 参数名    | 参数类型   | 必填   | 说明         |
| ------ | ------ | ---- | ---------- |
| origin | string | 是    | 指定源的字符串索引。 |
| usage  | number | 是    | 指定源的存储量。   |
| quota  | number | 是    | 指定源的存储配额。  |
Z
zhou-liting125 已提交
5283 5284 5285

## MessageLevel枚举说明

5286 5287
| 名称    | 描述    |
| ----- | :---- |
Z
zhou-liting125 已提交
5288 5289 5290 5291 5292 5293 5294 5295 5296 5297
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |

## RenderExitReason枚举说明

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

5298 5299 5300 5301 5302 5303 5304
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
Z
zhou-liting125 已提交
5305 5306 5307

## MixedMode枚举说明

5308 5309
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
Z
zhou-liting125 已提交
5310
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
5311 5312
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |
Z
zhou-liting125 已提交
5313 5314

## CacheMode枚举说明
5315 5316
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
Z
zhou-liting125 已提交
5317
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
5318 5319 5320
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |
Z
zhou-liting125 已提交
5321 5322

## FileSelectorMode枚举说明
5323 5324 5325 5326
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
Z
zhou-liting125 已提交
5327
| FileOpenFolderMode   | 打开上传文件夹模式。 |
5328
| FileSaveMode         | 文件保存模式。    |
Z
zhou-liting125 已提交
5329 5330 5331

 ## HitTestType枚举说明

5332 5333 5334 5335 5336 5337 5338 5339
| 名称            | 描述                       |
| ------------- | ------------------------ |
| EditText      | 可编辑的区域。                  |
| Email         | 电子邮件地址。                  |
| HttpAnchor    | 超链接,其src为http。           |
| HttpAnchorImg | 带有超链接的图片,其中超链接的src为http。 |
| Img           | HTML::img标签。             |
| Map           | 地理地址。                    |
L
laosan_ted 已提交
5340
| Phone         | 手机电话号码。                |
5341 5342
| Unknown       | 未知内容。                    |

I
bugfix  
i-am-a-little-bird 已提交
5343
## SslError<sup>9+</sup>枚举说明
5344 5345 5346

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

I
bugfix  
i-am-a-little-bird 已提交
5347 5348 5349
| 名称           | 描述                  |
| -------------- | -----------------    |
| Invalid        | 一般错误。            |
I
bugfix  
i-am-a-little-bird 已提交
5350 5351 5352
| HostMismatch   | 主机名不匹配。        |
| DateInvalid    | 证书日期无效。        |
| Untrusted      | 证书颁发机构不受信任。 |
5353

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

X
xiongjun_gitee 已提交
5356 5357
| 名称      | 描述            | 备注           |
| --------- | -------------- | -------------- |
F
Fred Ranking 已提交
5358
| MidiSysex | MIDI SYSEX资源。| 目前仅支持权限事件上报,MIDI设备的使用还未支持。|
5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388

## 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 已提交
5389
  import web_webview from '@ohos.web.webview'
5390 5391 5392
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5393
    controller: WebController = new WebController()
5394 5395 5396 5397
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
Y
yamila 已提交
5398
            let webAsyncController = new web_webview.WebAsyncController(this.controller)
5399 5400 5401 5402
            webAsyncController.storeWebArchive("/data/storage/el2/base/", true, (filename) => {
              if (filename != null) {
                console.info(`save web archive success: ${filename}`)
              }
Y
yamila 已提交
5403
            })
5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433
          })
        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 已提交
5434
  import web_webview from '@ohos.web.webview'
5435 5436 5437 5438 5439 5440 5441 5442
  @Entry
  @Component
  struct WebComponent {
    controller: WebController = new WebController();
    build() {
      Column() {
        Button('saveWebArchive')
          .onClick(() => {
L
laosan_ted 已提交
5443
            let webAsyncController = new web_webview.WebAsyncController(this.controller);
5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455
            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 })
      }
    }
  }
  ```
5456 5457 5458 5459

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

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

E
echoorchid 已提交
5461
### close<sup>9+</sup>
5462 5463
close(): void

E
echoorchid 已提交
5464
关闭该消息端口。
5465

E
echoorchid 已提交
5466
### postMessageEvent<sup>9+</sup>
5467 5468
postMessageEvent(message: WebMessageEvent): void

E
echoorchid 已提交
5469
发送消息。完整示例代码参考[postMessage](#postmessage9)
5470 5471

**参数:**
5472

5473 5474
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
E
echoorchid 已提交
5475
| message   | [WebMessageEvent](#webmessageevent9) | 是    | -    | 要发送的消息。 |
5476 5477

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

5479 5480 5481 5482 5483
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5484 5485
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
5486 5487 5488 5489 5490

    build() {
      Column() {
        Button('postMessageEvent')
          .onClick(() => {
Y
yamila 已提交
5491 5492 5493
            var msg = new WebMessageEvent()
            msg.setData("post message from ets to html5")
            this.ports[0].postMessageEvent(msg)
5494 5495 5496 5497 5498 5499 5500
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

E
echoorchid 已提交
5501
### onMessageEvent<sup>9+</sup>
5502 5503
onMessageEvent(callback: (result: string) => void): void

E
echoorchid 已提交
5504
注册回调函数,接收HTML5侧发送过来的消息。完整示例代码参考[postMessage](#postmessage9)
5505 5506

**参数:**
5507

5508 5509 5510 5511 5512
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| callback   | function | 是    | -    | 接收消息的回调函数。 |

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

5514 5515 5516 5517 5518
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5519 5520
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
5521 5522 5523 5524 5525

    build() {
      Column() {
        Button('onMessageEvent')
          .onClick(() => {
L
laosan_ted 已提交
5526
            this.ports[0].onMessageEvent((result: string) => {
E
echoorchid 已提交
5527
              console.log("received message from html5, on message:" + result);
5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540
            })
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```


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

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

E
echoorchid 已提交
5541
### getData<sup>9+</sup>
5542 5543 5544 5545 5546
getData(): string

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

**返回值:**
5547

5548 5549 5550 5551
| 类型                              | 说明            |
| ------------------------------- | ------------- |
| string | 当前该类型对象中存放的消息。 |

E
echoorchid 已提交
5552
**示例:**
L
laosan_ted 已提交
5553

E
echoorchid 已提交
5554 5555 5556 5557 5558 5559 5560 5561 5562 5563
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
            var msgEvent = new WebMessageEvent();
Y
yamila 已提交
5564 5565 5566
            msgEvent.setData("message event data")
            var messageData = msgEvent.getData()
            console.log("message is:" + messageData)
E
echoorchid 已提交
5567 5568 5569 5570 5571
          })
      }
    }
  }
  ```
5572

E
echoorchid 已提交
5573
### setData<sup>9+</sup>
5574 5575
setData(data: string): void

E
echoorchid 已提交
5576
设置当前对象中的消息。完整示例代码参考[postMessage](#postmessage9)
5577 5578

**参数:**
5579

5580 5581 5582 5583 5584
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
| data   | string | 是    | -    | 要发送的消息。 |

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

5586 5587 5588 5589 5590
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5591 5592
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
5593 5594 5595 5596 5597

    build() {
      Column() {
        Button('setData')
          .onClick(() => {
Y
yamila 已提交
5598 5599 5600
            var msg = new WebMessageEvent()
            msg.setData("post message from ets to HTML5")
            this.ports[0].postMessageEvent(msg)
5601 5602 5603 5604 5605 5606
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
E
echoorchid 已提交
5607
### getPorts<sup>9+</sup>
E
echoorchid 已提交
5608
getPorts(): Array\<WebMessagePort\>
5609 5610 5611 5612

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

**返回值:**
5613

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

E
echoorchid 已提交
5618
**示例:**
L
laosan_ted 已提交
5619

E
echoorchid 已提交
5620 5621 5622 5623 5624
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5625
    ports: WebMessagePort[] = null
E
echoorchid 已提交
5626 5627 5628 5629
    build() {
      Column() {
        Button('getPorts')
          .onClick(() => {
Y
yamila 已提交
5630 5631 5632 5633 5634
            var sendPortArray = new Array(this.ports[0])
            var msgEvent = new WebMessageEvent()
            msgEvent.setPorts(sendPortArray)
            var getPorts = msgEvent.getPorts()
            console.log("Ports is:" + getPorts)
E
echoorchid 已提交
5635 5636 5637 5638 5639
          })
      }
    }
  }
  ```
5640

E
echoorchid 已提交
5641
### setPorts<sup>9+</sup>
E
echoorchid 已提交
5642
setPorts(ports: Array\<WebMessagePort\>): void
5643

E
echoorchid 已提交
5644
设置当前对象中的消息端口。完整示例代码参考[postMessage](#postmessage9)
5645 5646

**参数:**
5647

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

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

5654 5655 5656 5657 5658
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
5659 5660
    controller: WebController = new WebController()
    ports: WebMessagePort[] = null
L
laosan_ted 已提交
5661
  
5662 5663 5664 5665
    build() {
      Column() {
        Button('setPorts')
          .onClick(() => {
Y
yamila 已提交
5666 5667 5668 5669 5670
            var sendPortArray = new Array(this.ports[1])
            var msgEvent = new WebMessageEvent()
            msgEvent.setData("__init_ports__")
            msgEvent.setPorts(sendPortArray)
            this.controller.postMessage({message: msgEvent, uri: "*"})
5671 5672 5673 5674 5675 5676
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```