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

3
提供具有网页显示能力的Web组件,[@ohos.web.webview](../apis/js-apis-webview.md)提供web控制能力。
H
HelloCrease 已提交
4

5
> **说明:**
6 7 8
>
> - 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
> - 示例效果请以真机运行为准,当前IDE预览器不支持。
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
## 子组件



## 接口

L
lixiang 已提交
19
Web(options: { src: ResourceStr, controller: WebviewController | WebController})
Z
zhou-liting125 已提交
20

L
laosan_ted 已提交
21 22 23
> **说明:**
>
> 不支持转场动画。
L
lixiang 已提交
24
> 同一页面的多个web组件,必须绑定不同的WebviewController。
L
laosan_ted 已提交
25

Z
zhou-liting125 已提交
26
**参数:**
L
laosan_ted 已提交
27

H
HelloCrease 已提交
28 29
| 参数名        | 参数类型                                     | 必填   | 参数描述    |
| ---------- | ---------------------------------------- | ---- | ------- |
30
| src        | [ResourceStr](ts-types.md)               | 是    | 网页资源地址。如果加载应用包外沙箱路径的本地资源文件,请使用file://沙箱文件路径。 |
H
HelloCrease 已提交
31
| controller | [WebviewController<sup>9+</sup>](../apis/js-apis-webview.md#webviewcontroller) \| [WebController](#webcontroller) | 是    | 控制器。从API Version 9开始,WebController不再维护,建议使用WebviewController替代。 |
L
lixiang 已提交
32
 
Z
zhou-liting125 已提交
33
**示例:**
L
update  
laosan_ted 已提交
34

L
laosan_ted 已提交
35
  加载在线网页
Z
zhou-liting125 已提交
36 37
  ```ts
  // xxx.ets
Y
yuhaoge 已提交
38 39 40 41 42
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
43
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
44 45 46 47 48 49 50
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
Z
zengyawen 已提交
51

L
laosan_ted 已提交
52 53 54
  加载本地网页
  ```ts
  // xxx.ets
L
lixiang 已提交
55 56
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
57 58 59
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
60
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
61 62 63 64 65 66 67 68
    build() {
      Column() {
        Web({ src: $rawfile("index.html"), controller: this.controller })
      }
    }
  }
  ```

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  加载沙箱路径下的本地资源文件

  1.通过[globalthis](../../application-models/uiability-data-sync-with-ui.md#uiability和page之间使用globalthis)获取沙箱路径。
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  let url = 'file://' + globalThis.filesDir + '/xxx.html'

  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        // 加载沙箱路径文件。
        Web({ src: url, controller: this.controller })
      }
    }
  }
  ```

  2.修改MainAbility.ts。
  以filesDir为例,获取沙箱路径。若想获取其他路径,请参考[应用开发路径](../../application-models/application-context-stage.md#获取应用开发路径)
  ```ts
  // xxx.ts
  import UIAbility from '@ohos.app.ability.UIAbility';
  import web_webview from '@ohos.web.webview';

  export default class EntryAbility extends UIAbility {
      onCreate(want, launchParam) {
          // 通过在globalThis对象上绑定filesDir,可以实现UIAbility组件与UI之间的数据同步。
          globalThis.filesDir = this.context.filesDir
          console.log("Sandbox path is " + globalThis.filesDir)
      }
  }
  ```

L
laosan_ted 已提交
106 107 108 109 110 111 112 113 114
  ```html
  <!-- index.html -->
  <!DOCTYPE html>
  <html>
      <body>
          <p>Hello World</p>
      </body>
  </html>
  ```
Z
zengyawen 已提交
115

L
update  
laosan_ted 已提交
116
## 属性
Z
zhou-liting125 已提交
117

H
HelloCrease 已提交
118
通用属性仅支持[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
zhou-liting125 已提交
119 120 121 122 123 124 125

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

Z
zhou-liting125 已提交
126
**参数:**
L
laosan_ted 已提交
127

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

Z
zhou-liting125 已提交
132
**示例:**
L
laosan_ted 已提交
133

Z
zhou-liting125 已提交
134 135
  ```ts
  // xxx.ets
L
lixiang 已提交
136 137
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
138
  @Entry
L
update  
laosan_ted 已提交
139 140
  @Component
  struct WebComponent {
L
lixiang 已提交
141
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
142 143
    build() {
      Column() {
144 145
        Web({ src: 'www.example.com', controller: this.controller })
          .domStorageAccess(true)
L
update  
laosan_ted 已提交
146 147 148 149 150
      }
    }
  }
  ```

Z
zhou-liting125 已提交
151 152 153 154
### fileAccess

fileAccess(fileAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
163
**示例:**
L
laosan_ted 已提交
164

Z
zhou-liting125 已提交
165 166
  ```ts
  // xxx.ets
L
lixiang 已提交
167 168
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
169
  @Entry
L
update  
laosan_ted 已提交
170 171
  @Component
  struct WebComponent {
L
lixiang 已提交
172
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
173 174
    build() {
      Column() {
175
        Web({ src: 'www.example.com', controller: this.controller })
176
          .fileAccess(true)
L
update  
laosan_ted 已提交
177 178 179 180 181
      }
    }
  }
  ```

Z
zhou-liting125 已提交
182 183 184 185 186 187
### imageAccess

imageAccess(imageAccess: boolean)

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

Z
zhou-liting125 已提交
188
**参数:**
L
laosan_ted 已提交
189

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

Z
zhou-liting125 已提交
194
**示例:**
Z
zhou-liting125 已提交
195 196
  ```ts
  // xxx.ets
L
lixiang 已提交
197 198
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
199
  @Entry
L
update  
laosan_ted 已提交
200 201
  @Component
  struct WebComponent {
L
lixiang 已提交
202
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
203 204
    build() {
      Column() {
205 206
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
207 208 209 210 211
      }
    }
  }
  ```

Z
zhou-liting125 已提交
212 213 214
### javaScriptProxy

javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\<string\>,
L
lixiang 已提交
215
    controller: WebviewController | WebController})
Z
zhou-liting125 已提交
216 217 218

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

Z
zhou-liting125 已提交
219
**参数:**
L
laosan_ted 已提交
220

H
HelloCrease 已提交
221 222 223 224 225
| 参数名        | 参数类型                                     | 必填   | 默认值  | 参数描述                      |
| ---------- | ---------------------------------------- | ---- | ---- | ------------------------- |
| object     | object                                   | 是    | -    | 参与注册的对象。只能声明方法,不能声明属性。    |
| name       | string                                   | 是    | -    | 注册对象的名称,与window中调用的对象名一致。 |
| methodList | Array\<string\>                          | 是    | -    | 参与注册的应用侧JavaScript对象的方法。  |
H
HelloCrease 已提交
226
| controller | [WebviewController<sup>9+</sup>](../apis/js-apis-webview.md#webviewcontroller) \| [WebController](#webcontroller) | 是    | -    | 控制器。从API Version 9开始,WebController不再维护,建议使用WebviewController替代。 |
227

Z
zhou-liting125 已提交
228
**示例:**
L
laosan_ted 已提交
229

Y
yuhaoge 已提交
230 231 232 233 234 235 236
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

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

Z
zhou-liting125 已提交
264 265 266 267 268 269
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

Z
zhou-liting125 已提交
270
**参数:**
L
laosan_ted 已提交
271

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

Z
zhou-liting125 已提交
276
**示例:**
L
laosan_ted 已提交
277

Z
zhou-liting125 已提交
278 279
  ```ts
  // xxx.ets
L
lixiang 已提交
280 281
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
282
  @Entry
L
update  
laosan_ted 已提交
283 284
  @Component
  struct WebComponent {
L
lixiang 已提交
285
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
286 287
    build() {
      Column() {
288 289
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
L
update  
laosan_ted 已提交
290 291 292 293 294
      }
    }
  }
  ```

Z
zhou-liting125 已提交
295 296 297 298 299 300
### mixedMode

mixedMode(mixedMode: MixedMode)

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

Z
zhou-liting125 已提交
301
**参数:**
L
laosan_ted 已提交
302

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

Z
zhou-liting125 已提交
307
**示例:**
L
laosan_ted 已提交
308

Z
zhou-liting125 已提交
309 310
  ```ts
  // xxx.ets
L
lixiang 已提交
311 312
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
313
  @Entry
L
update  
laosan_ted 已提交
314 315
  @Component
  struct WebComponent {
L
lixiang 已提交
316
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
317
    @State mode: MixedMode = MixedMode.All
L
update  
laosan_ted 已提交
318 319
    build() {
      Column() {
320 321
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
322 323 324 325 326
      }
    }
  }
  ```

Z
zhou-liting125 已提交
327 328 329 330 331 332
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

Z
zhou-liting125 已提交
333
**参数:**
L
laosan_ted 已提交
334

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

Z
zhou-liting125 已提交
339
**示例:**
L
laosan_ted 已提交
340

Z
zhou-liting125 已提交
341 342
  ```ts
  // xxx.ets
L
lixiang 已提交
343 344
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
345
  @Entry
L
update  
laosan_ted 已提交
346 347
  @Component
  struct WebComponent {
L
lixiang 已提交
348
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
349 350
    build() {
      Column() {
351 352
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
353 354 355 356 357
      }
    }
  }
  ```

Z
zhou-liting125 已提交
358 359 360 361 362 363
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

Z
zhou-liting125 已提交
364
**参数:**
L
laosan_ted 已提交
365

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

Z
zhou-liting125 已提交
370
**示例:**
L
laosan_ted 已提交
371

Z
zhou-liting125 已提交
372 373
  ```ts
  // xxx.ets
L
lixiang 已提交
374 375
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
376
  @Entry
L
update  
laosan_ted 已提交
377 378
  @Component
  struct WebComponent {
L
lixiang 已提交
379
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
380 381
    build() {
      Column() {
382 383
        Web({ src: 'www.example.com', controller: this.controller })
          .zoomAccess(true)
L
update  
laosan_ted 已提交
384 385 386 387 388
      }
    }
  }
  ```

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

overviewModeAccess(overviewModeAccess: boolean)

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

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

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

Z
zhou-liting125 已提交
401
**示例:**
L
laosan_ted 已提交
402

Z
zhou-liting125 已提交
403 404
  ```ts
  // xxx.ets
L
lixiang 已提交
405 406
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
407
  @Entry
L
update  
laosan_ted 已提交
408 409
  @Component
  struct WebComponent {
L
lixiang 已提交
410
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
411 412
    build() {
      Column() {
413 414
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
415 416 417 418 419
      }
    }
  }
  ```

Z
zhou-liting125 已提交
420 421 422 423 424 425
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

Z
zhou-liting125 已提交
426
**参数:**
L
laosan_ted 已提交
427

H
HelloCrease 已提交
428 429
| 参数名            | 参数类型    | 必填   | 默认值   | 参数描述              |
| -------------- | ------- | ---- | ----- | ----------------- |
430
| databaseAccess | boolean | 是    | false | 设置是否开启数据库存储API权限。 |
Z
zhou-liting125 已提交
431

L
laosan_ted 已提交
432
**示例:**
L
laosan_ted 已提交
433

Z
zhou-liting125 已提交
434 435
  ```ts
  // xxx.ets
L
lixiang 已提交
436 437
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
438
  @Entry
L
update  
laosan_ted 已提交
439 440
  @Component
  struct WebComponent {
L
lixiang 已提交
441
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
442 443
    build() {
      Column() {
444 445
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
446 447 448 449 450
      }
    }
  }
  ```

L
laosan_ted 已提交
451 452 453 454 455 456 457
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

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

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

H
HelloCrease 已提交
459 460 461
| 参数名               | 参数类型    | 必填   | 默认值  | 参数描述            |
| ----------------- | ------- | ---- | ---- | --------------- |
| geolocationAccess | boolean | 是    | true | 设置是否开启获取地理位置权限。 |
L
laosan_ted 已提交
462 463

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

L
laosan_ted 已提交
465 466
  ```ts
  // xxx.ets
L
lixiang 已提交
467 468
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
469 470 471
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
472
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
473 474
    build() {
      Column() {
475 476
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
477 478 479 480 481
      }
    }
  }
  ```

L
laosan_ted 已提交
482 483 484 485
### mediaPlayGestureAccess

mediaPlayGestureAccess(access: boolean)

L
lixiang 已提交
486
设置有声视频播放是否需要用户手动点击,静音视频播放不受该接口管控,默认需要。
L
laosan_ted 已提交
487 488 489

**参数:**

H
HelloCrease 已提交
490 491
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述              |
| ------ | ------- | ---- | ---- | ----------------- |
L
laosan_ted 已提交
492
| access | boolean | 是    | true | 设置有声视频播放是否需要用户手动点击。 |
L
laosan_ted 已提交
493 494 495 496 497

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
498 499
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
500 501 502
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
503
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
504
    @State access: boolean = true
L
laosan_ted 已提交
505 506 507 508 509 510 511 512 513
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .mediaPlayGestureAccess(this.access)
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
514 515 516 517 518
### multiWindowAccess<sup>9+</sup>

multiWindowAccess(multiWindow: boolean)

设置是否开启多窗口权限,默认不开启。
519
使能多窗口权限时,需要实现onWindowNew事件,示例代码参考[onWindowNew事件](#onwindownew9)
X
xiongjun_gitee 已提交
520 521 522

**参数:**

H
HelloCrease 已提交
523 524
| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
X
xiongjun_gitee 已提交
525 526 527 528 529 530
| multiWindow | boolean | 是    | false | 设置是否开启多窗口权限。 |

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
531 532
  import web_webview from '@ohos.web.webview'

X
xiongjun_gitee 已提交
533 534 535
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
536
    controller: web_webview.WebviewController = new web_webview.WebviewController()
X
xiongjun_gitee 已提交
537 538 539
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
540
        .multiWindowAccess(false)
X
xiongjun_gitee 已提交
541 542 543 544 545
      }
    }
  }
  ```

L
laosan_ted 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
### horizontalScrollBarAccess<sup>9+</sup>

horizontalScrollBarAccess(horizontalScrollBar: boolean)

设置是否显示横向滚动条,包括系统默认滚动条和用户自定义滚动条。默认显示。

**参数:**

| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
| horizontalScrollBar | boolean | 是    | true | 设置是否显示横向滚动条。 |

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
562 563
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
564 565 566
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
567
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 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
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .horizontalScrollBarAccess(true)
      }
    }
  }
  ```

  ```html
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
      <title>Demo</title>
      <style>
        body {
          width:3000px;
          height:3000px;
          padding-right:170px;
          padding-left:170px;
          border:5px solid blueviolet
        }
      </style>
  </head>
  <body>
  Scroll Test
  </body>
  </html>
  ```

### verticalScrollBarAccess<sup>9+</sup>

verticalScrollBarAccess(verticalScrollBar: boolean)

设置是否显示纵向滚动条,包括系统默认滚动条和用户自定义滚动条。默认显示。

**参数:**

| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
| verticalScrollBarAccess | boolean | 是    | true | 设置是否显示纵向滚动条。 |

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
615 616
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
617 618 619
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
620
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .verticalScrollBarAccess(true)
      }
    }
  }
  ```

  ```html
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
      <title>Demo</title>
      <style>
        body {
          width:3000px;
          height:3000px;
          padding-right:170px;
          padding-left:170px;
          border:5px solid blueviolet
        }
      </style>
  </head>
  <body>
  Scroll Test
  </body>
  </html>
  ```

Z
zhou-liting125 已提交
652 653 654 655 656 657
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

Z
zhou-liting125 已提交
658
**参数:**
L
laosan_ted 已提交
659

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

Z
zhou-liting125 已提交
664
**示例:**
L
laosan_ted 已提交
665

Z
zhou-liting125 已提交
666 667
  ```ts
  // xxx.ets
L
lixiang 已提交
668 669
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
670
  @Entry
L
update  
laosan_ted 已提交
671 672
  @Component
  struct WebComponent {
L
lixiang 已提交
673
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
674
    @State mode: CacheMode = CacheMode.None
L
update  
laosan_ted 已提交
675 676
    build() {
      Column() {
677 678
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
679 680 681 682 683
      }
    }
  }
  ```

L
laosan_ted 已提交
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
### textZoomAtio<sup>(deprecated)</sup>

textZoomAtio(textZoomAtio: number)

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

从API version 9开始不再维护,建议使用[textZoomRatio<sup>9+</sup>](#textzoomratio9)代替。

**参数:**

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

**示例:**

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

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

L
laosan_ted 已提交
718
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
719 720 721

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

Z
zhou-liting125 已提交
722
**参数:**
L
laosan_ted 已提交
723

H
HelloCrease 已提交
724 725 726
| 参数名           | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------------- | ------ | ---- | ---- | --------------- |
| textZoomRatio | number | 是    | 100  | 要设置的页面的文本缩放百分比。 |
Z
zhou-liting125 已提交
727

Z
zhou-liting125 已提交
728
**示例:**
L
laosan_ted 已提交
729

Z
zhou-liting125 已提交
730 731
  ```ts
  // xxx.ets
L
lixiang 已提交
732 733
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
734
  @Entry
L
update  
laosan_ted 已提交
735 736
  @Component
  struct WebComponent {
L
lixiang 已提交
737
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
738
    @State atio: number = 150
L
update  
laosan_ted 已提交
739 740
    build() {
      Column() {
741 742
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
743 744 745 746 747
      }
    }
  }
  ```

L
laosan_ted 已提交
748 749 750 751 752 753 754 755
### initialScale<sup>9+</sup>

initialScale(percent: number)

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

**参数:**

H
HelloCrease 已提交
756 757 758
| 参数名     | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------- | ------ | ---- | ---- | --------------- |
| percent | number | 是    | 100  | 要设置的整体页面的缩放百分比。 |
L
laosan_ted 已提交
759 760 761 762 763

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
764 765
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
766 767 768
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
769
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
770 771 772 773 774 775 776 777 778 779
    @State percent: number = 100
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .initialScale(this.percent)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
780 781 782 783 784 785
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
786
**参数:**
L
laosan_ted 已提交
787

788 789 790
| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| userAgent | string | 是    | -    | 要设置的用户代理。 |
Z
zengyawen 已提交
791

Z
zhou-liting125 已提交
792
**示例:**
L
laosan_ted 已提交
793

Z
zhou-liting125 已提交
794 795
  ```ts
  // xxx.ets
L
lixiang 已提交
796 797
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
798
  @Entry
L
update  
laosan_ted 已提交
799 800
  @Component
  struct WebComponent {
L
lixiang 已提交
801
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
802
    @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 已提交
803 804
    build() {
      Column() {
805 806
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
807 808 809 810 811
      }
    }
  }
  ```

812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
### blockNetwork<sup>9+</sup>

blockNetwork(block: boolean)

设置Web组件是否阻止从网络加载资源。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                            |
| ------ | -------- | ---- | ------ | ----------------------------------- |
| block  | boolean  | 是   | false  | 设置Web组件是否阻止从网络加载资源。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State block: boolean = true
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .blockNetwork(this.block)
      }
    }
  }
  ```
842

843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
### defaultFixedFontSize<sup>9+</sup>

defaultFixedFontSize(size: number)

设置网页的默认等宽字体大小。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                     |
| ------ | -------- | ---- | ------ | ---------------------------- |
| size   | number   | 是   | 13     | 设置网页的默认等宽字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
864
    @State fontSize: number = 16
865 866 867
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
868
          .defaultFixedFontSize(this.fontSize)
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
      }
    }
  }
  ```

### defaultFontSize<sup>9+</sup>

defaultFontSize(size: number)

设置网页的默认字体大小。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
| size   | number   | 是   | 16     | 设置网页的默认字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
895
    @State fontSize: number = 13
896 897 898
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
899
          .defaultFontSize(this.fontSize)
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
      }
    }
  }
  ```

### minFontSize<sup>9+</sup>

minFontSize(size: number)

设置网页字体大小最小值。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
| size   | number   | 是   | 8      | 设置网页字体大小最小值,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
926
    @State fontSize: number = 13
927 928 929
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
930
          .minFontSize(this.fontSize)
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
      }
    }
  }
  ```

### minLogicalFontSize<sup>9+</sup>

minLogicalFontSize(size: number)

设置网页逻辑字体大小最小值。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
| size   | number   | 是   | 8      | 设置网页逻辑字体大小最小值,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
957
    @State fontSize: number = 13
958 959 960
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
961
          .minLogicalFontSize(this.fontSize)
962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
      }
    }
  }
  ```


### webFixedFont<sup>9+</sup>

webFixedFont(family: string)

设置网页的fixed font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值    | 参数描述                     |
| ------ | -------- | ---- | --------- | ---------------------------- |
| family | string   | 是   | monospace | 设置网页的fixed font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "monospace"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webFixedFont(this.family)
      }
    }
  }
  ```

### webSansSerifFont<sup>9+</sup>

webSansSerifFont(family: string)

设置网页的sans serif font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值     | 参数描述                          |
| ------ | -------- | ---- | ---------- | --------------------------------- |
| family | string   | 是   | sans-serif | 设置网页的sans serif font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "sans-serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webSansSerifFont(this.family)
      }
    }
  }
  ```

### webSerifFont<sup>9+</sup>

webSerifFont(family: string)

设置网页的serif font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                     |
| ------ | -------- | ---- | ------ | ---------------------------- |
| family | string   | 是   | serif  | 设置网页的serif font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webSerifFont(this.family)
      }
    }
  }
  ```

### webStandardFont<sup>9+</sup>

webStandardFont(family: string)

设置网页的standard font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值     | 参数描述                        |
| ------ | -------- | ---- | ---------- | ------------------------------- |
| family | string   | 是   | sans serif | 设置网页的standard font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "sans-serif"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webStandardFont(this.family)
      }
    }
  }
  ```

### webFantasyFont<sup>9+</sup>

webFantasyFont(family: string)

设置网页的fantasy font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | -------- | ---- | ------- | ------------------------------ |
| family | string   | 是   | fantasy | 设置网页的fantasy font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "fantasy"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webFantasyFont(this.family)
      }
    }
  }
  ```

### webCursiveFont<sup>9+</sup>

webCursiveFont(family: string)

设置网页的cursive font字体库。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | -------- | ---- | ------- | ------------------------------ |
| family | string   | 是   | cursive | 设置网页的cursive font字体库。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State family: string = "cursive"
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .webCursiveFont(this.family)
      }
    }
  }
  ```

Y
yuhaoge 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
### darkMode<sup>9+</sup>

darkMode(mode: WebDarkMode)

设置Web深色模式,默认关闭。当深色模式开启时,Web将启用媒体查询prefer-color-scheme中网页所定义的深色样式,若网页未定义深色样式,则保持原状。如需开启强制深色模式,建议配合[forceDarkAccess](#forcedarkaccess9)使用。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ----------- | ---- | --------------- | ------------------ |
|  mode  | [WebDarkMode](#webdarkmode9枚举说明) | 是   | WebDarkMode.Off | 设置Web的深色模式为关闭、开启或跟随系统。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State mode: WebDarkMode = WebDarkMode.On
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .darkMode(this.mode)
      }
    }
  }
  ```

### forceDarkAccess<sup>9+</sup>

forceDarkAccess(access: boolean)

设置网页是否开启强制深色模式。默认关闭。该属性仅在[darkMode](#darkmode9)开启深色模式时生效。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ------- | ---- | ----- | ------------------ |
| access | boolean | 是   | false | 设置网页是否开启强制深色模式。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State mode: WebDarkMode = WebDarkMode.On
    @State access: boolean = true
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .darkMode(this.mode)
          .forceDarkAccess(this.access)
      }
    }
  }
  ```

1218 1219 1220 1221
### pinchSmooth<sup>9+</sup>

pinchSmooth(isEnabled: boolean)

L
lixiang 已提交
1222
设置网页是否开启捏合流畅模式,默认不开启。
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述                   |
| --------- | -------- | ---- | ------ | -------------------------- |
| isEnabled | boolean  | 是   | false  | 网页是否开启捏合流畅模式。 |

**示例:**

  ```ts
// xxx.ets
import web_webview from '@ohos.web.webview'
@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController()
  build() {
    Column() {
      Web({ src: 'www.example.com', controller: this.controller })
        .pinchSmooth(true)
    }
  }
}
  ```

Z
zengyawen 已提交
1248 1249
## 事件

L
liwenzhen 已提交
1250
不支持通用事件。
Z
zengyawen 已提交
1251

L
update  
laosan_ted 已提交
1252 1253 1254 1255 1256 1257
### onAlert

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

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

Z
zhou-liting125 已提交
1258
**参数:**
L
laosan_ted 已提交
1259

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

Z
zhou-liting125 已提交
1266
**返回值:**
L
laosan_ted 已提交
1267

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

Z
zhou-liting125 已提交
1272
**示例:**
L
laosan_ted 已提交
1273

Z
zhou-liting125 已提交
1274 1275
  ```ts
  // xxx.ets
L
lixiang 已提交
1276 1277
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1278
  @Entry
L
update  
laosan_ted 已提交
1279 1280
  @Component
  struct WebComponent {
L
lixiang 已提交
1281
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
1282 1283
    build() {
      Column() {
1284
        Web({ src: $rawfile("xxx.html"), controller: this.controller })
L
laosan_ted 已提交
1285
          .onAlert((event) => {
1286 1287
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1288
            AlertDialog.show({
L
laosan_ted 已提交
1289
              title: 'onAlert',
L
laosan_ted 已提交
1290
              message: 'text',
L
laosan_ted 已提交
1291 1292 1293 1294 1295 1296 1297 1298
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1299 1300 1301 1302 1303 1304 1305 1306
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1307
            return true
L
update  
laosan_ted 已提交
1308 1309 1310 1311 1312 1313
          })
      }
    }
  }
  ```

1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
  ```
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  </head>
  <body>
    <h1>WebView onAlert Demo</h1>
    <button onclick="myFunction()">Click here</button>
    <script>
      function myFunction() {
        alert("Hello World");
      }
    </script>
  </body>
  </html>
  ```

L
update  
laosan_ted 已提交
1333 1334 1335 1336
### onBeforeUnload

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

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

Z
zhou-liting125 已提交
1339
**参数:**
L
laosan_ted 已提交
1340

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

Z
zhou-liting125 已提交
1347
**返回值:**
L
laosan_ted 已提交
1348

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

Z
zhou-liting125 已提交
1353
**示例:**
L
laosan_ted 已提交
1354

Z
zhou-liting125 已提交
1355 1356
  ```ts
  // xxx.ets
L
lixiang 已提交
1357 1358
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1359
  @Entry
L
update  
laosan_ted 已提交
1360 1361
  @Component
  struct WebComponent {
L
lixiang 已提交
1362
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1363

L
update  
laosan_ted 已提交
1364 1365
    build() {
      Column() {
1366
        Web({ src: $rawfile("xxx.html"), controller: this.controller })
L
laosan_ted 已提交
1367
          .onBeforeUnload((event) => {
Y
yamila 已提交
1368 1369
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
            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 已提交
1389
            return true
L
laosan_ted 已提交
1390 1391
          })
      }
L
update  
laosan_ted 已提交
1392 1393 1394 1395
    }
  }
  ```

1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
  ```
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  </head>
  <body onbeforeunload="return myFunction()">
    <h1>WebView onBeforeUnload Demo</h1>
    <a href="https://www.example.com">Click here</a>
    <script>
      function myFunction() {
        return "onBeforeUnload Event";
      }
    </script>
  </body>
  </html>
  ```

L
update  
laosan_ted 已提交
1415 1416 1417 1418 1419 1420
### onConfirm

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

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

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

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

Z
zhou-liting125 已提交
1429
**返回值:**
L
laosan_ted 已提交
1430

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

Z
zhou-liting125 已提交
1435
**示例:**
L
laosan_ted 已提交
1436

Z
zhou-liting125 已提交
1437 1438
  ```ts
  // xxx.ets
L
lixiang 已提交
1439 1440
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1441
  @Entry
L
update  
laosan_ted 已提交
1442 1443
  @Component
  struct WebComponent {
L
lixiang 已提交
1444
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1445

L
update  
laosan_ted 已提交
1446 1447
    build() {
      Column() {
1448
        Web({ src: $rawfile("xxx.html"), controller: this.controller })
L
laosan_ted 已提交
1449
          .onConfirm((event) => {
Y
yamila 已提交
1450 1451
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1452
            AlertDialog.show({
L
laosan_ted 已提交
1453
              title: 'onConfirm',
L
laosan_ted 已提交
1454
              message: 'text',
L
laosan_ted 已提交
1455 1456 1457 1458 1459 1460 1461 1462
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1463 1464 1465 1466 1467 1468 1469 1470
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1471
            return true
L
update  
laosan_ted 已提交
1472
          })
L
laosan_ted 已提交
1473
      }
L
update  
laosan_ted 已提交
1474 1475 1476 1477
    }
  }
  ```

1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
  ```
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  </head>

  <body>
    <h1>WebView onConfirm Demo</h1>
    <button onclick="myFunction()">Click here</button>
    <p id="demo"></p>
    <script>
      function myFunction() {
        let x;
        let r = confirm("click button!");
        if (r == true) {
          x = "ok";
        } else {
          x = "cancel";
        }
        document.getElementById("demo").innerHTML = x;
      }
    </script>
  </body>
  </html>
  ```

L
update  
laosan_ted 已提交
1506 1507 1508 1509
### onPrompt<sup>9+</sup>

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

Z
zhou-liting125 已提交
1510
**参数:**
L
laosan_ted 已提交
1511

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

Z
zhou-liting125 已提交
1518
**返回值:**
L
laosan_ted 已提交
1519

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

Z
zhou-liting125 已提交
1524
**示例:**
L
laosan_ted 已提交
1525

Z
zhou-liting125 已提交
1526 1527
  ```ts
  // xxx.ets
L
lixiang 已提交
1528 1529
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1530
  @Entry
L
update  
laosan_ted 已提交
1531 1532
  @Component
  struct WebComponent {
L
lixiang 已提交
1533
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1534

L
update  
laosan_ted 已提交
1535 1536
    build() {
      Column() {
1537
        Web({ src: $rawfile("xxx.html"), controller: this.controller })
L
laosan_ted 已提交
1538
          .onPrompt((event) => {
Y
yamila 已提交
1539 1540 1541
            console.log("url:" + event.url)
            console.log("message:" + event.message)
            console.log("value:" + event.value)
L
laosan_ted 已提交
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
            AlertDialog.show({
              title: 'onPrompt',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
1554
                  event.result.handlePromptConfirm(event.value)
L
laosan_ted 已提交
1555 1556 1557 1558 1559 1560
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1561
            return true
L
laosan_ted 已提交
1562 1563
          })
      }
L
update  
laosan_ted 已提交
1564 1565 1566 1567
    }
  }
  ```

1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
  ```
  <!--xxx.html-->
  <!DOCTYPE html>
  <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  </head>

  <body>
    <h1>WebView onPrompt Demo</h1>
    <button onclick="myFunction()">Click here</button>
    <p id="demo"></p>
    <script>
      function myFunction() {
        let message = prompt("Message info", "Hello World");
        if (message != null && message != "") {
          document.getElementById("demo").innerHTML = message;
        }
      }
    </script>
  </body>
  </html>
  ```

L
update  
laosan_ted 已提交
1592 1593 1594 1595 1596 1597
### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
1598
**参数:**
L
laosan_ted 已提交
1599

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

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

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

Z
zhou-liting125 已提交
1610
**示例:**
L
laosan_ted 已提交
1611

Z
zhou-liting125 已提交
1612 1613
  ```ts
  // xxx.ets
L
lixiang 已提交
1614 1615
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1616
  @Entry
L
update  
laosan_ted 已提交
1617 1618
  @Component
  struct WebComponent {
L
lixiang 已提交
1619
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1620

L
update  
laosan_ted 已提交
1621 1622
    build() {
      Column() {
Z
zhou-liting125 已提交
1623
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1624
          .onConsole((event) => {
Y
yamila 已提交
1625 1626 1627 1628 1629
            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 已提交
1630 1631
          })
      }
L
update  
laosan_ted 已提交
1632 1633 1634 1635 1636 1637 1638 1639
    }
  }
  ```

### onDownloadStart

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

Z
zhou-liting125 已提交
1640
**参数:**
L
laosan_ted 已提交
1641

1642 1643 1644
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
1645
| userAgent          | string        | 用于下载的用户代理。                           |
1646 1647 1648
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
L
update  
laosan_ted 已提交
1649

Z
zhou-liting125 已提交
1650
**示例:**
L
laosan_ted 已提交
1651

Z
zhou-liting125 已提交
1652 1653
  ```ts
  // xxx.ets
L
lixiang 已提交
1654 1655
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1656
  @Entry
L
update  
laosan_ted 已提交
1657 1658
  @Component
  struct WebComponent {
L
lixiang 已提交
1659
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1660

L
update  
laosan_ted 已提交
1661 1662
    build() {
      Column() {
Z
zhou-liting125 已提交
1663
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1664
          .onDownloadStart((event) => {
Y
yamila 已提交
1665 1666 1667 1668 1669
            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 已提交
1670 1671
          })
      }
L
update  
laosan_ted 已提交
1672 1673 1674 1675 1676 1677 1678 1679
    }
  }
  ```

### onErrorReceive

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

L
monthly  
lixiang 已提交
1680
网页加载遇到错误时触发该回调。出于性能考虑,建议此回调中尽量执行简单逻辑。在无网络的情况下,触发此回调。
L
update  
laosan_ted 已提交
1681

Z
zhou-liting125 已提交
1682
**参数:**
L
laosan_ted 已提交
1683

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

Z
zhou-liting125 已提交
1689
**示例:**
L
laosan_ted 已提交
1690

Z
zhou-liting125 已提交
1691 1692
  ```ts
  // xxx.ets
L
lixiang 已提交
1693 1694
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1695
  @Entry
L
update  
laosan_ted 已提交
1696 1697
  @Component
  struct WebComponent {
L
lixiang 已提交
1698
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1699

L
update  
laosan_ted 已提交
1700 1701
    build() {
      Column() {
Z
zhou-liting125 已提交
1702
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1703
          .onErrorReceive((event) => {
Y
yamila 已提交
1704 1705 1706 1707 1708 1709 1710 1711 1712
            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 已提交
1713
            for (let i of result) {
Y
yamila 已提交
1714
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue)
L
laosan_ted 已提交
1715 1716 1717
            }
          })
      }
L
update  
laosan_ted 已提交
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
1728
**参数:**
L
laosan_ted 已提交
1729

1730 1731 1732
| 参数名     | 参数类型                                     | 参数描述            |
| ------- | ---------------------------------------- | --------------- |
| request | [WebResourceRequest](#webresourcerequest) | 网页请求的封装信息。      |
L
laosan_ted 已提交
1733
| response | [WebResourceResponse](#webresourceresponse)    | 资源响应的封装信息。 |
L
update  
laosan_ted 已提交
1734

Z
zhou-liting125 已提交
1735
**示例:**
L
laosan_ted 已提交
1736

Z
zhou-liting125 已提交
1737 1738
  ```ts
  // xxx.ets
L
lixiang 已提交
1739 1740
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1741
  @Entry
L
update  
laosan_ted 已提交
1742 1743
  @Component
  struct WebComponent {
L
lixiang 已提交
1744
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1745

L
update  
laosan_ted 已提交
1746 1747
    build() {
      Column() {
Z
zhou-liting125 已提交
1748
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1749
          .onHttpErrorReceive((event) => {
Y
yamila 已提交
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
            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 已提交
1761
            for (let i of result) {
Y
yamila 已提交
1762
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1763
            }
Y
yamila 已提交
1764 1765
            let resph = event.response.getResponseHeader()
            console.log('The response header result size is ' + resph.length)
L
laosan_ted 已提交
1766
            for (let i of resph) {
Y
yamila 已提交
1767
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1768 1769 1770
            }
          })
      }
L
update  
laosan_ted 已提交
1771 1772 1773 1774 1775 1776 1777 1778
    }
  }
  ```

### onPageBegin

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

1779

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

Z
zhou-liting125 已提交
1782
**参数:**
L
laosan_ted 已提交
1783

1784 1785 1786
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1787

Z
zhou-liting125 已提交
1788
**示例:**
L
laosan_ted 已提交
1789

Z
zhou-liting125 已提交
1790 1791
  ```ts
  // xxx.ets
L
lixiang 已提交
1792 1793
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1794
  @Entry
L
update  
laosan_ted 已提交
1795 1796
  @Component
  struct WebComponent {
L
lixiang 已提交
1797
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1798

L
update  
laosan_ted 已提交
1799 1800
    build() {
      Column() {
Z
zhou-liting125 已提交
1801
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1802
          .onPageBegin((event) => {
Y
yamila 已提交
1803
            console.log('url:' + event.url)
L
laosan_ted 已提交
1804 1805
          })
      }
L
update  
laosan_ted 已提交
1806 1807 1808 1809 1810 1811 1812 1813
    }
  }
  ```

### onPageEnd

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

1814

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

Z
zhou-liting125 已提交
1817
**参数:**
L
laosan_ted 已提交
1818

1819 1820 1821
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1822

Z
zhou-liting125 已提交
1823
**示例:**
L
laosan_ted 已提交
1824

Z
zhou-liting125 已提交
1825 1826
  ```ts
  // xxx.ets
L
lixiang 已提交
1827 1828
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1829
  @Entry
L
update  
laosan_ted 已提交
1830 1831
  @Component
  struct WebComponent {
L
lixiang 已提交
1832
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1833

L
update  
laosan_ted 已提交
1834 1835
    build() {
      Column() {
Z
zhou-liting125 已提交
1836
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1837
          .onPageEnd((event) => {
Y
yamila 已提交
1838
            console.log('url:' + event.url)
L
laosan_ted 已提交
1839 1840
          })
      }
L
update  
laosan_ted 已提交
1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
    }
  }
  ```

### onProgressChange

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

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

Z
zhou-liting125 已提交
1851
**参数:**
L
laosan_ted 已提交
1852

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

L
laosan_ted 已提交
1857 1858
**示例:**

Z
zhou-liting125 已提交
1859 1860
  ```ts
  // xxx.ets
L
lixiang 已提交
1861 1862
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1863
  @Entry
L
update  
laosan_ted 已提交
1864 1865
  @Component
  struct WebComponent {
L
lixiang 已提交
1866
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1867

L
update  
laosan_ted 已提交
1868 1869
    build() {
      Column() {
Z
zhou-liting125 已提交
1870
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1871 1872 1873 1874
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
    }
  }
  ```

### onTitleReceive

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

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

Z
zhou-liting125 已提交
1885
**参数:**
L
laosan_ted 已提交
1886

1887 1888 1889
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
1890

L
laosan_ted 已提交
1891 1892
**示例:**

Z
zhou-liting125 已提交
1893 1894
  ```ts
  // xxx.ets
L
lixiang 已提交
1895 1896
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1897
  @Entry
L
update  
laosan_ted 已提交
1898 1899
  @Component
  struct WebComponent {
L
lixiang 已提交
1900
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1901

L
update  
laosan_ted 已提交
1902 1903
    build() {
      Column() {
Z
zhou-liting125 已提交
1904
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1905 1906 1907 1908
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
    }
  }
  ```

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
1919
**参数:**
L
laosan_ted 已提交
1920

H
HelloCrease 已提交
1921 1922 1923
| 参数名         | 参数类型    | 参数描述                                     |
| ----------- | ------- | ---------------------------------------- |
| url         | string  | 访问的url。                                  |
1924
| isRefreshed | boolean | true表示该页面是被重新加载的(调用[refresh<sup>9+</sup>](../apis/js-apis-webview.md#refresh)接口),false表示该页面是新加载的。 |
L
update  
laosan_ted 已提交
1925

L
laosan_ted 已提交
1926 1927
**示例:**

Z
zhou-liting125 已提交
1928 1929
  ```ts
  // xxx.ets
L
lixiang 已提交
1930 1931
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1932
  @Entry
L
update  
laosan_ted 已提交
1933 1934
  @Component
  struct WebComponent {
L
lixiang 已提交
1935
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1936

L
update  
laosan_ted 已提交
1937 1938
    build() {
      Column() {
Z
zhou-liting125 已提交
1939
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1940
          .onRefreshAccessedHistory((event) => {
Y
yamila 已提交
1941
            console.log('url:' + event.url + ' isReload:' + event.isRefreshed)
L
laosan_ted 已提交
1942 1943
          })
      }
L
update  
laosan_ted 已提交
1944 1945 1946 1947
    }
  }
  ```

L
laosan_ted 已提交
1948
### onRenderExited<sup>9+</sup>
L
update  
laosan_ted 已提交
1949 1950 1951 1952 1953

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

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

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

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

L
laosan_ted 已提交
1960 1961
**示例:**

Z
zhou-liting125 已提交
1962 1963
  ```ts
  // xxx.ets
L
lixiang 已提交
1964 1965
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1966
  @Entry
L
update  
laosan_ted 已提交
1967 1968
  @Component
  struct WebComponent {
L
lixiang 已提交
1969
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1970

L
update  
laosan_ted 已提交
1971 1972
    build() {
      Column() {
L
laosan_ted 已提交
1973 1974
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
Y
yamila 已提交
1975
            console.log('reason:' + event.renderExitReason)
L
laosan_ted 已提交
1976 1977
          })
      }
L
update  
laosan_ted 已提交
1978 1979 1980 1981 1982 1983
    }
  }
  ```

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

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

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

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

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

L
laosan_ted 已提交
1995 1996
**返回值:**

H
HelloCrease 已提交
1997 1998
| 类型      | 说明                                       |
| ------- | ---------------------------------------- |
L
aaaa  
lixiang 已提交
1999
| boolean | 当返回值为true时,用户可以调用系统提供的弹窗能力。当回调返回false时,web组件暂不支持触发默认弹窗。 |
L
laosan_ted 已提交
2000

L
laosan_ted 已提交
2001 2002
**示例:**

Z
zhou-liting125 已提交
2003 2004
  ```ts
  // xxx.ets
L
lixiang 已提交
2005 2006
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2007
  @Entry
L
update  
laosan_ted 已提交
2008 2009
  @Component
  struct WebComponent {
L
lixiang 已提交
2010
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2011

L
update  
laosan_ted 已提交
2012 2013
    build() {
      Column() {
Z
zhou-liting125 已提交
2014
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
          .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 已提交
2031
              }
L
laosan_ted 已提交
2032
            })
Y
yamila 已提交
2033
            return true
L
update  
laosan_ted 已提交
2034
          })
L
laosan_ted 已提交
2035
      }
L
update  
laosan_ted 已提交
2036 2037 2038 2039
    }
  }
  ```

L
laosan_ted 已提交
2040 2041 2042 2043 2044 2045 2046 2047
### onResourceLoad<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2048 2049 2050
| 参数名  | 参数类型   | 参数描述           |
| ---- | ------ | -------------- |
| url  | string | 所加载的资源文件url信息。 |
L
laosan_ted 已提交
2051 2052 2053 2054 2055

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2056 2057
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
2058 2059 2060
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2061
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2062

L
laosan_ted 已提交
2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081
    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)

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

**参数:**

H
HelloCrease 已提交
2082 2083
| 参数名      | 参数类型   | 参数描述         |
| -------- | ------ | ------------ |
L
laosan_ted 已提交
2084 2085 2086 2087 2088 2089 2090
| oldScale | number | 变化前的显示比例百分比。 |
| newScale | number | 变化后的显示比例百分比。 |

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2091 2092
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
2093 2094 2095
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2096
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2097

L
laosan_ted 已提交
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
    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 已提交
2109 2110 2111 2112
### onUrlLoadIntercept

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

L
monthly  
lixiang 已提交
2113
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
L
update  
laosan_ted 已提交
2114

Z
zhou-liting125 已提交
2115
**参数:**
L
laosan_ted 已提交
2116

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

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

2123 2124 2125
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
2126

L
laosan_ted 已提交
2127 2128
**示例:**

Z
zhou-liting125 已提交
2129 2130
  ```ts
  // xxx.ets
L
lixiang 已提交
2131 2132
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2133
  @Entry
L
update  
laosan_ted 已提交
2134 2135
  @Component
  struct WebComponent {
L
lixiang 已提交
2136
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2137

L
update  
laosan_ted 已提交
2138 2139
    build() {
      Column() {
Z
zhou-liting125 已提交
2140
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2141 2142
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
Y
yamila 已提交
2143
            return true
L
laosan_ted 已提交
2144 2145
          })
      }
L
update  
laosan_ted 已提交
2146 2147 2148 2149 2150 2151
    }
  }
  ```

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

L
laosan_ted 已提交
2152
onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)
L
update  
laosan_ted 已提交
2153 2154 2155

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

Z
zhou-liting125 已提交
2156
**参数:**
L
laosan_ted 已提交
2157

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

Z
zhou-liting125 已提交
2162
**返回值:**
L
laosan_ted 已提交
2163

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

L
laosan_ted 已提交
2168 2169
**示例:**

Z
zhou-liting125 已提交
2170 2171
  ```ts
  // xxx.ets
L
lixiang 已提交
2172 2173
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2174
  @Entry
L
update  
laosan_ted 已提交
2175 2176
  @Component
  struct WebComponent {
L
lixiang 已提交
2177
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2178 2179
    responseweb: WebResourceResponse = new WebResourceResponse()
    heads:Header[] = new Array()
L
laosan_ted 已提交
2180 2181 2182 2183 2184 2185 2186 2187 2188
    @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 已提交
2189 2190
    build() {
      Column() {
2191
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2192
          .onInterceptRequest((event) => {
Y
yamila 已提交
2193
            console.log('url:' + event.request.getRequestUrl())
L
laosan_ted 已提交
2194 2195 2196 2197 2198 2199 2200 2201
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
Y
yamila 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210
            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 已提交
2211
          })
L
update  
laosan_ted 已提交
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
2223
**参数:**
L
laosan_ted 已提交
2224

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

Z
zhou-liting125 已提交
2231
**返回值:**
L
laosan_ted 已提交
2232

2233 2234 2235
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
2236

L
laosan_ted 已提交
2237 2238
**示例:**

Z
zhou-liting125 已提交
2239 2240
  ```ts
  // xxx.ets
L
laosan_ted 已提交
2241
  import web_webview from '@ohos.web.webview'
Z
zhou-liting125 已提交
2242
  @Entry
L
update  
laosan_ted 已提交
2243 2244
  @Component
  struct WebComponent {
L
lixiang 已提交
2245
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2246
    httpAuth: boolean = false
2247

L
update  
laosan_ted 已提交
2248 2249
    build() {
      Column() {
2250 2251 2252
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
2253
              title: 'onHttpAuthRequest',
2254
              message: 'text',
L
laosan_ted 已提交
2255 2256 2257
              primaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2258
                  event.handler.cancel()
L
laosan_ted 已提交
2259 2260 2261 2262
                }
              },
              secondaryButton: {
                value: 'ok',
2263
                action: () => {
Y
yamila 已提交
2264
                  this.httpAuth = event.handler.isHttpAuthInfoSaved()
2265
                  if (this.httpAuth == false) {
L
laosan_ted 已提交
2266
                    web_webview.WebDataBase.saveHttpAuthCredentials(
2267 2268 2269 2270 2271
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
Y
yamila 已提交
2272
                    event.handler.cancel()
2273
                  }
L
update  
laosan_ted 已提交
2274
                }
2275 2276
              },
              cancel: () => {
Y
yamila 已提交
2277
                event.handler.cancel()
L
update  
laosan_ted 已提交
2278
              }
2279
            })
Y
yamila 已提交
2280
            return true
L
update  
laosan_ted 已提交
2281
          })
Y
yu-shihao4 已提交
2282
      }
L
update  
laosan_ted 已提交
2283 2284 2285
    }
  }
  ```
2286 2287
### onSslErrorEventReceive<sup>9+</sup>

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

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

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

H
HelloCrease 已提交
2294 2295
| 参数名     | 参数类型                                 | 参数描述           |
| ------- | ------------------------------------ | -------------- |
I
bugfix  
i-am-a-little-bird 已提交
2296
| handler | [SslErrorHandler](#sslerrorhandler9) | 通知Web组件用户操作行为。 |
H
HelloCrease 已提交
2297
| error   | [SslError](#sslerror9枚举说明)           | 错误码。           |
I
bugfix  
i-am-a-little-bird 已提交
2298 2299

**示例:**
2300 2301 2302

  ```ts
  // xxx.ets
I
bugfix  
i-am-a-little-bird 已提交
2303
  import web_webview from '@ohos.web.webview'
2304 2305 2306
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2307
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2308

2309 2310 2311
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
I
bugfix  
i-am-a-little-bird 已提交
2312
          .onSslErrorEventReceive((event) => {
2313
            AlertDialog.show({
I
bugfix  
i-am-a-little-bird 已提交
2314
              title: 'onSslErrorEventReceive',
2315
              message: 'text',
I
bugfix  
i-am-a-little-bird 已提交
2316 2317
              primaryButton: {
                value: 'confirm',
2318
                action: () => {
Y
yamila 已提交
2319
                  event.handler.handleConfirm()
I
bugfix  
i-am-a-little-bird 已提交
2320 2321 2322 2323 2324
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2325
                  event.handler.handleCancel()
2326 2327 2328
                }
              },
              cancel: () => {
Y
yamila 已提交
2329
                event.handler.handleCancel()
2330 2331
              }
            })
Y
yamila 已提交
2332
            return true
2333 2334 2335 2336 2337 2338
          })
      }
    }
  }
  ```

I
i-am-a-little-bird 已提交
2339 2340 2341 2342
### 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 已提交
2343
通知用户收到SSL客户端证书请求事件。
I
i-am-a-little-bird 已提交
2344 2345 2346

**参数:**

H
HelloCrease 已提交
2347 2348 2349 2350 2351 2352 2353
| 参数名      | 参数类型                                     | 参数描述            |
| -------- | ---------------------------------------- | --------------- |
| handler  | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。  |
| host     | string                                   | 请求证书服务器的主机名。    |
| port     | number                                   | 请求证书服务器的端口号。    |
| keyTypes | Array<string>                            | 可接受的非对称秘钥类型。    |
| issuers  | Array<string>                            | 与私钥匹配的证书可接受颁发者。 |
I
i-am-a-little-bird 已提交
2354 2355 2356 2357 2358 2359 2360 2361

  **示例:**
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2362
    controller: web_webview.WebviewController = new web_webview.WebviewController()
I
i-am-a-little-bird 已提交
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'onClientAuthenticationRequest',
              message: 'text',
              primaryButton: {
                value: 'confirm',
                action: () => {
Y
yamila 已提交
2374
                  event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem")
I
i-am-a-little-bird 已提交
2375 2376 2377 2378 2379
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2380
                  event.handler.cancel()
I
i-am-a-little-bird 已提交
2381 2382 2383
                }
              },
              cancel: () => {
Y
yamila 已提交
2384
                event.handler.ignore()
I
i-am-a-little-bird 已提交
2385 2386
              }
            })
Y
yamila 已提交
2387
            return true
I
i-am-a-little-bird 已提交
2388 2389 2390 2391 2392 2393
          })
      }
    }
  }
  ```

2394 2395 2396 2397 2398 2399 2400
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

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

H
HelloCrease 已提交
2402 2403 2404
| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| request | [PermissionRequest](#permissionrequest9) | 通知Web组件用户操作行为。 |
2405

L
laosan_ted 已提交
2406 2407
**示例:**

2408 2409
  ```ts
  // xxx.ets
L
lixiang 已提交
2410 2411
  import web_webview from '@ohos.web.webview'

2412 2413 2414
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2415
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2416 2417
    build() {
      Column() {
2418 2419 2420 2421 2422
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
2423 2424 2425
              primaryButton: {
                value: 'deny',
                action: () => {
Y
yamila 已提交
2426
                  event.request.deny()
L
laosan_ted 已提交
2427 2428 2429
                }
              },
              secondaryButton: {
2430 2431
                value: 'onConfirm',
                action: () => {
Y
yamila 已提交
2432
                  event.request.grant(event.request.getAccessibleResource())
2433 2434 2435
                }
              },
              cancel: () => {
Y
yamila 已提交
2436
                event.request.deny()
2437
              }
2438
            })
2439
          })
Y
yu-shihao4 已提交
2440
      }
2441 2442 2443
    }
  }
  ```
2444

2445 2446 2447 2448
### onContextMenuShow<sup>9+</sup>

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

2449
长按特定元素(例如图片,链接)或鼠标右键,跳出菜单。
2450 2451

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

H
HelloCrease 已提交
2453 2454 2455 2456
| 参数名    | 参数类型                                     | 参数描述        |
| ------ | ---------------------------------------- | ----------- |
| param  | [WebContextMenuParam](#webcontextmenuparam9) | 菜单相关参数。     |
| result | [WebContextMenuResult](#webcontextmenuresult9) | 菜单相应事件传入内核。 |
2457

Y
yu-shihao4 已提交
2458 2459
**返回值:**

H
HelloCrease 已提交
2460 2461
| 类型      | 说明                       |
| ------- | ------------------------ |
Y
yu-shihao4 已提交
2462 2463
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
2464
**示例:**
Y
yu-shihao4 已提交
2465

2466 2467
  ```ts
  // xxx.ets
L
lixiang 已提交
2468 2469
  import web_webview from '@ohos.web.webview'

2470 2471 2472
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2473
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2474 2475
    build() {
      Column() {
2476
        Web({ src: 'www.example.com', controller: this.controller })
Y
yu-shihao4 已提交
2477
          .onContextMenuShow((event) => {
Y
yamila 已提交
2478 2479 2480
            console.info("x coord = " + event.param.x())
            console.info("link url = " + event.param.getLinkUrl())
            return true
2481 2482
        })
      }
2483 2484 2485
    }
  }
  ```
2486

L
laosan_ted 已提交
2487 2488 2489 2490 2491 2492 2493 2494
### onScroll<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2495 2496
| 参数名     | 参数类型   | 参数描述         |
| ------- | ------ | ------------ |
L
monthly  
lixiang 已提交
2497 2498
| xOffset | number | 以网页最左端为基准,水平滚动条滚动所在位置。 |
| yOffset | number | 以网页最上端为基准,竖直滚动条滚动所在位置。 |
L
laosan_ted 已提交
2499 2500 2501 2502 2503

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2504 2505
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
2506 2507 2508
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2509
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2510 2511 2512 2513
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .onScroll((event) => {
Y
yamila 已提交
2514 2515
            console.info("x = " + event.xOffset)
            console.info("y = " + event.yOffset)
L
laosan_ted 已提交
2516 2517 2518 2519 2520 2521
        })
      }
    }
  }
  ```

2522 2523 2524 2525
### onGeolocationShow

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

2526
通知用户收到地理位置信息获取请求。
2527 2528 2529

**参数:**

H
HelloCrease 已提交
2530 2531
| 参数名         | 参数类型                            | 参数描述           |
| ----------- | ------------------------------- | -------------- |
2532
| origin      | string                          | 指定源的字符串索引。     |
H
HelloCrease 已提交
2533
| geolocation | [JsGeolocation](#jsgeolocation) | 通知Web组件用户操作行为。 |
2534 2535

**示例:**
2536

2537 2538
  ```ts
  // xxx.ets
L
lixiang 已提交
2539 2540
  import web_webview from '@ohos.web.webview'

2541 2542 2543
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2544
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555
    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 已提交
2556
                event.geolocation.invoke(event.origin, true, true)
2557 2558 2559
              }
            },
            cancel: () => {
Y
yamila 已提交
2560
              event.geolocation.invoke(event.origin, false, true)
2561 2562 2563 2564 2565 2566 2567 2568
            }
          })
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2569 2570 2571 2572 2573 2574 2575 2576
### onGeolocationHide

onGeolocationHide(callback: () => void)

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

**参数:**

H
HelloCrease 已提交
2577 2578 2579
| 参数名      | 参数类型       | 参数描述                 |
| -------- | ---------- | -------------------- |
| callback | () => void | 地理位置信息获取请求已被取消的回调函数。 |
L
laosan_ted 已提交
2580 2581 2582 2583 2584

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2585 2586
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
2587 2588 2589
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2590
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationHide(() => {
          console.log("onGeolocationHide...")
        })
      }
    }
  }
  ```

E
echoorchid 已提交
2603 2604 2605 2606 2607 2608 2609 2610
### onFullScreenEnter<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2611 2612 2613
| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| handler | [FullScreenExitHandler](#fullscreenexithandler9) | 用于退出全屏模式的函数句柄。 |
E
echoorchid 已提交
2614 2615 2616 2617 2618

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2619 2620
  import web_webview from '@ohos.web.webview'

E
echoorchid 已提交
2621 2622 2623
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2624
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2625
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2626 2627 2628 2629
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2630 2631
          console.log("onFullScreenEnter...")
          this.handler = event.handler
E
echoorchid 已提交
2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
        })
      }
    }
  }
  ```

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

onFullScreenExit(callback: () => void)

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

**参数:**

H
HelloCrease 已提交
2646 2647 2648
| 参数名      | 参数类型       | 参数描述          |
| -------- | ---------- | ------------- |
| callback | () => void | 退出全屏模式时的回调函数。 |
E
echoorchid 已提交
2649 2650 2651 2652 2653

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2654 2655
  import web_webview from '@ohos.web.webview'

E
echoorchid 已提交
2656 2657 2658
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2659
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2660
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2661 2662 2663 2664
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenExit(() => {
Y
yamila 已提交
2665 2666
          console.log("onFullScreenExit...")
          this.handler.exitFullScreen()
E
echoorchid 已提交
2667 2668
        })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2669
          this.handler = event.handler
E
echoorchid 已提交
2670 2671 2672 2673 2674 2675
        })
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
2676 2677 2678 2679
### onWindowNew<sup>9+</sup>

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

2680 2681 2682
使能multiWindowAccess情况下,通知用户新建窗口请求。
若不调用event.handler.setWebController接口,会造成render进程阻塞。
如果不需要打开新窗口,在调用event.handler.setWebController接口时须设置成null。
X
xiongjun_gitee 已提交
2683 2684 2685

**参数:**

H
HelloCrease 已提交
2686 2687 2688 2689 2690
| 参数名           | 参数类型                                     | 参数描述                       |
| ------------- | ---------------------------------------- | -------------------------- |
| isAlert       | boolean                                  | true代表请求创建对话框,false代表新标签页。 |
| isUserTrigger | boolean                                  | true代表用户触发,false代表非用户触发。   |
| targetUrl     | string                                   | 目标url。                     |
L
lixiang 已提交
2691
| handler       | [ControllerHandler](#controllerhandler9) | 用于设置新建窗口的WebviewController实例。  |
X
xiongjun_gitee 已提交
2692 2693 2694 2695 2696

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
2697
  import web_webview from '@ohos.web.webview'
2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716
  
  //在同一page页有两个web组件。在WebComponent新开窗口时,会跳转到NewWebViewComp。
  @CustomDialog
  struct NewWebViewComp {
  controller: CustomDialogController
  webviewController1: web_webview.WebviewController
  build() {
      Column() {
        Web({ src: "", controller: this.webviewController1 })
          .javaScriptAccess(true)
          .multiWindowAccess(false)
          .onWindowExit(()=> {
            console.info("NewWebViewComp onWindowExit")
            this.controller.close()
          })
        }
    }
  }

X
xiongjun_gitee 已提交
2717 2718 2719
  @Entry
  @Component
  struct WebComponent {
2720
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2721
    dialogController: CustomDialogController = null
X
xiongjun_gitee 已提交
2722 2723
    build() {
      Column() {
2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
          //需要使能multiWindowAccess
          .multiWindowAccess(true)
          .onWindowNew((event) => {
            if (this.dialogController) {
              this.dialogController.close()
            }
            let popController:web_webview.WebviewController = new web_webview.WebviewController()
            this.dialogController = new CustomDialogController({
              builder: NewWebViewComp({webviewController1: popController})
            })
            this.dialogController.open()
            //将新窗口对应WebviewController返回给Web内核。
            //如果不需要打开新窗口请调用event.handler.setWebController接口设置成null。
            //若不调用event.handler.setWebController接口,会造成render进程阻塞。
            event.handler.setWebController(popController)
          })
X
xiongjun_gitee 已提交
2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754
      }
    }
  }
  ```

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

onWindowExit(callback: () => void)

通知用户窗口关闭请求。

**参数:**

H
HelloCrease 已提交
2755 2756 2757
| 参数名      | 参数类型       | 参数描述         |
| -------- | ---------- | ------------ |
| callback | () => void | 窗口请求关闭的回调函数。 |
X
xiongjun_gitee 已提交
2758 2759 2760 2761 2762

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2763 2764
  import web_webview from '@ohos.web.webview'

X
xiongjun_gitee 已提交
2765 2766 2767
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2768
    controller: web_webview.WebviewController = new web_webview.WebviewController()
X
xiongjun_gitee 已提交
2769 2770 2771
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2772
        .onWindowExit(() => {
Y
yamila 已提交
2773
          console.log("onWindowExit...")
X
xiongjun_gitee 已提交
2774 2775 2776 2777 2778 2779
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2780 2781 2782 2783 2784 2785 2786 2787
### onSearchResultReceive<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2788 2789 2790 2791 2792
| 参数名                | 参数类型    | 参数描述                                     |
| ------------------ | ------- | ---------------------------------------- |
| activeMatchOrdinal | number  | 当前匹配的查找项的序号(从0开始)。                       |
| numberOfMatches    | number  | 所有匹配到的关键词的个数。                            |
| isDoneCounting     | boolean | 当次页内查找操作是否结束。该方法可能会回调多次,直到isDoneCounting为true为止。 |
L
laosan_ted 已提交
2793 2794 2795 2796 2797

**示例:**

  ```ts
  // xxx.ets
L
lixiang 已提交
2798 2799
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
2800 2801 2802
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2803
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816

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

2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885
### onDataResubmitted<sup>9+</sup>

onDataResubmitted(callback: (event: {handler: DataResubmissionHandler}) => void)

设置网页表单可以重新提交时触发的回调函数。

**参数:**

| 参数名  | 参数类型                                             | 参数描述               |
| ------- | ---------------------------------------------------- | ---------------------- |
| handler | [DataResubmissionHandler](#dataresubmissionhandler9) | 表单数据重新提交句柄。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onDataResubmitted((event) => {
          console.log('onDataResubmitted')
          event.handler.resend();
        })
      }
    }
  }
  ```

### onPageVisible<sup>9+</sup>

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

设置旧页面不再呈现,新页面即将可见时触发的回调函数。

**参数:**

| 参数名 | 参数类型 | 参数描述                                          |
| ------ | -------- | ------------------------------------------------- |
| url    | string   | 旧页面不再呈现,新页面即将可见时新页面的url地址。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onPageVisible((event) => {
          console.log('onPageVisible url:' + event.url)
        })
      }
    }
  }
  ```

### onInterceptKeyEvent<sup>9+</sup>

onInterceptKeyEvent(callback: (event: KeyEvent) => boolean)

L
monthly  
lixiang 已提交
2886
设置键盘事件的回调函数,该回调在被Webview使用前触发。
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912

**参数:**

| 参数名 | 参数类型                                                | 参数描述             |
| ------ | ------------------------------------------------------- | -------------------- |
| event  | [KeyEvent](ts-universal-events-key.md#keyevent对象说明) | 触发的KeyEvent事件。 |

**返回值:**

| 类型    | 说明                                                         |
| ------- | ------------------------------------------------------------ |
| boolean | 回调函数通过返回boolean类型值来决定是否继续将该KeyEvent传入Webview内核。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onInterceptKeyEvent((event) => {
2913
          if (event.keyCode == 2017 || event.keyCode == 2018) {
2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983
            console.info(`onInterceptKeyEvent get event.keyCode ${event.keyCode}`)
            return true;
          }
          return false;
        })
      }
    }
  }
  ```

### onTouchIconUrlReceived<sup>9+</sup>

onTouchIconUrlReceived(callback: (event: {url: string, precomposed: boolean}) => void)

设置接收到apple-touch-icon url地址时的回调函数。

**参数:**

| 参数名      | 参数类型 | 参数描述                           |
| ----------- | -------- | ---------------------------------- |
| url         | string   | 接收到的apple-touch-icon url地址。 |
| precomposed | boolean  | 对应apple-touch-icon是否为预合成。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.baidu.com', controller: this.controller })
         .onTouchIconUrlReceived((event) => {
          console.log('onTouchIconUrlReceived:' + JSON.stringify(event))
        })
      }
    }
  }
  ```

### onFaviconReceived<sup>9+</sup>

onFaviconReceived(callback: (event: {favicon: image.PixelMap}) => void)

设置应用为当前页面接收到新的favicon时的回调函数。

**参数:**

| 参数名  | 参数类型                                       | 参数描述                            |
| ------- | ---------------------------------------------- | ----------------------------------- |
| favicon | [PixelMap](../apis/js-apis-image.md#pixelmap7) | 接收到的favicon图标的PixelMap对象。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  import image from "@ohos.multimedia.image"
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    @State icon: image.PixelMap = undefined;
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onFaviconReceived((event) => {
2984
          console.log('onFaviconReceived');
2985 2986 2987 2988 2989 2990 2991
          this.icon = event.favicon;
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
### onRequestSelected

onRequestSelected(callback: () => void)

当Web组件获得焦点时触发该回调。

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onRequestSelected(() => {
            console.log('onRequestSelected')
          })
      }
    }
  }
  ```

Z
zhou-liting125 已提交
3020
## ConsoleMessage
3021

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

Z
zhou-liting125 已提交
3024
### getLineNumber
3025

Z
zhou-liting125 已提交
3026 3027 3028 3029
getLineNumber(): number

获取ConsoleMessage的行数。

3030
**返回值:**
L
laosan_ted 已提交
3031

3032 3033 3034
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
3035 3036 3037 3038 3039 3040 3041

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

3042
**返回值:**
L
laosan_ted 已提交
3043

3044 3045 3046
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
3047 3048 3049 3050

### getMessageLevel

getMessageLevel(): MessageLevel
3051

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

3054
**返回值:**
L
laosan_ted 已提交
3055

3056 3057 3058
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
3059 3060 3061 3062 3063 3064 3065

### getSourceId

getSourceId(): string

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

3066
**返回值:**
L
laosan_ted 已提交
3067

3068 3069 3070
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
3071 3072

## JsResult
L
lixingchi1 已提交
3073

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

Z
zhou-liting125 已提交
3076 3077 3078
### handleCancel

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

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

Z
zhou-liting125 已提交
3082
### handleConfirm
L
add web  
liujinwei 已提交
3083

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

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

Z
zhou-liting125 已提交
3088 3089 3090 3091 3092 3093
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
3094
**参数:**
L
laosan_ted 已提交
3095

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

E
echoorchid 已提交
3100 3101 3102 3103 3104 3105 3106 3107 3108 3109
## FullScreenExitHandler<sup>9+</sup>

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

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

exitFullScreen(): void

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

X
xiongjun_gitee 已提交
3110 3111
## ControllerHandler<sup>9+</sup>

3112
设置用户新建web组件的的WebviewController对象。示例代码参考[onWindowNew事件](#onwindownew9)
X
xiongjun_gitee 已提交
3113 3114 3115

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

3116
setWebController(controller: WebviewController): void
X
xiongjun_gitee 已提交
3117

3118
设置WebviewController对象,如果不需要打开新窗口请设置为null。
X
xiongjun_gitee 已提交
3119 3120 3121

**参数:**

H
HelloCrease 已提交
3122 3123
| 参数名        | 参数类型          | 必填   | 默认值  | 参数描述                      |
| ---------- | ------------- | ---- | ---- | ------------------------- |
3124
| controller | [WebviewController](../apis/js-apis-webview.md#webviewcontroller) | 是    | -    | 新建web组件的的WebviewController对象,如果不需要打开新窗口请设置为null。 |
X
xiongjun_gitee 已提交
3125

Z
zhou-liting125 已提交
3126 3127
## WebResourceError

L
update  
laosan_ted 已提交
3128
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
3129 3130 3131 3132 3133 3134 3135

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

3136
**返回值:**
L
laosan_ted 已提交
3137

3138 3139 3140
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
3141 3142 3143 3144 3145 3146 3147

### getErrorInfo

getErrorInfo(): string

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

3148
**返回值:**
L
laosan_ted 已提交
3149

3150 3151 3152
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
3153 3154 3155

## WebResourceRequest

L
update  
laosan_ted 已提交
3156
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
3157 3158 3159 3160 3161 3162 3163

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

3164
**返回值:**
L
laosan_ted 已提交
3165

3166 3167 3168
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
3169 3170 3171 3172 3173 3174 3175

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

3176
**返回值:**
L
laosan_ted 已提交
3177

3178 3179 3180
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
3181 3182 3183 3184 3185 3186 3187

### isMainFrame

isMainFrame(): boolean

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

3188
**返回值:**
L
laosan_ted 已提交
3189

3190 3191 3192
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
3193 3194 3195 3196 3197 3198 3199

### isRedirect

isRedirect(): boolean

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

3200
**返回值:**
L
laosan_ted 已提交
3201

3202 3203 3204
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
3205 3206 3207 3208 3209 3210 3211

### isRequestGesture

isRequestGesture(): boolean

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

3212
**返回值:**
L
laosan_ted 已提交
3213

3214 3215 3216
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 返回资源请求是否与手势(如点击)相关联。 |
Z
zhou-liting125 已提交
3217

L
lixiang 已提交
3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229
### getRequestMethod<sup>9+</sup>

getRequestMethod(): string

获取请求方法。

**返回值:**

| 类型      | 说明                   |
| ------- | -------------------- |
| string | 返回请求方法。 |

Z
zhou-liting125 已提交
3230
## Header
L
liwenzhen 已提交
3231 3232 3233

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

3234 3235 3236 3237
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
3238

L
add web  
liujinwei 已提交
3239

Z
zhou-liting125 已提交
3240
## WebResourceResponse
L
add web  
liujinwei 已提交
3241

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

Z
zhou-liting125 已提交
3244
### getReasonMessage
T
Ted 已提交
3245

Z
zhou-liting125 已提交
3246
getReasonMessage(): string
T
Ted 已提交
3247

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

3250
**返回值:**
L
laosan_ted 已提交
3251

3252 3253 3254
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
3255

Z
zhou-liting125 已提交
3256
### getResponseCode
T
Ted 已提交
3257

Z
zhou-liting125 已提交
3258 3259 3260 3261
getResponseCode(): number

获取资源响应的状态码。

3262
**返回值:**
L
laosan_ted 已提交
3263

3264 3265 3266
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
3267 3268 3269 3270 3271 3272 3273

### getResponseData

getResponseData(): string

获取资源响应数据。

3274
**返回值:**
L
laosan_ted 已提交
3275

3276 3277 3278
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
3279 3280 3281 3282 3283 3284 3285

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

3286
**返回值:**
L
laosan_ted 已提交
3287

3288 3289 3290
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
3291 3292 3293 3294 3295 3296 3297

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

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

3300 3301 3302
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
3303 3304 3305 3306 3307 3308 3309

### getResponseMimeType

getResponseMimeType(): string

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

3310
**返回值:**
L
laosan_ted 已提交
3311

3312 3313 3314
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3315 3316 3317

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

3318
setResponseData(data: string | number)
Z
zhou-liting125 已提交
3319 3320 3321

设置资源响应数据。

Z
zhou-liting125 已提交
3322
**参数:**
L
laosan_ted 已提交
3323

3324 3325 3326
| 参数名 | 参数类型         | 必填 | 默认值 | 参数描述                                                     |
| ------ | ---------------- | ---- | ------ | ------------------------------------------------------------ |
| data   | string \| number | 是   | -      | 要设置的资源响应数据。string表示输入类型是字符串,number表示输入类型是文件句柄。 |
Z
zhou-liting125 已提交
3327 3328 3329 3330 3331 3332 3333

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
3334
**参数:**
L
laosan_ted 已提交
3335

3336 3337 3338
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
3339 3340 3341 3342 3343 3344 3345

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
3346
**参数:**
L
laosan_ted 已提交
3347

3348 3349 3350
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3351 3352 3353 3354 3355 3356 3357

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
3358
**参数:**
L
laosan_ted 已提交
3359

3360 3361 3362
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
3363 3364 3365 3366 3367 3368 3369

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
3370
**参数:**
L
laosan_ted 已提交
3371

3372 3373 3374
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
3375 3376 3377 3378 3379 3380 3381

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
3382
**参数:**
L
laosan_ted 已提交
3383

3384 3385 3386
| 参数名  | 参数类型   | 必填   | 默认值  | 参数描述          |
| ---- | ------ | ---- | ---- | ------------- |
| code | number | 是    | -    | 要设置的资源响应的状态码。 |
Z
zhou-liting125 已提交
3387

3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399
### setResponseIsReady<sup>9+</sup>

setResponseIsReady(IsReady: boolean)

设置资源响应数据是否已经就绪。

**参数:**

| 参数名  | 参数类型 | 必填 | 默认值 | 参数描述                   |
| ------- | -------- | ---- | ------ | -------------------------- |
| IsReady | boolean  | 是   | true   | 资源响应数据是否已经就绪。 |

Z
zhou-liting125 已提交
3400
## FileSelectorResult<sup>9+</sup>
T
Ted 已提交
3401

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

Z
zhou-liting125 已提交
3404
### handleFileList<sup>9+</sup>
3405

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

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

Z
zhou-liting125 已提交
3410
**参数:**
L
laosan_ted 已提交
3411

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

Z
zhou-liting125 已提交
3416 3417
## FileSelectorParam<sup>9+</sup>

Z
zhou-liting125 已提交
3418
web组件获取文件对象。示例代码参考[onShowFileSelector事件](#onshowfileselector9)
Z
zhou-liting125 已提交
3419

L
lixiang 已提交
3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
### getTitle<sup>9+</sup>

getTitle(): string

获取文件选择器标题。

**返回值:**

| 类型     | 说明       |
| ------ | -------- |
| string | 返回文件选择器标题。 |

Z
zhou-liting125 已提交
3432 3433 3434 3435 3436 3437
### getMode<sup>9+</sup>

getMode(): FileSelectorMode

获取文件选择器的模式。

3438
**返回值:**
L
laosan_ted 已提交
3439

3440 3441 3442
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
3443 3444 3445 3446 3447 3448 3449

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

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

3452 3453 3454
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
3455 3456 3457 3458 3459 3460 3461

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

isCapture(): boolean

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

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

3464 3465 3466
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
3467 3468 3469

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

Z
zhou-liting125 已提交
3470
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
3471 3472 3473 3474 3475 3476 3477 3478

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

cancel(): void

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

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

3480 3481 3482 3483
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
3484
**参数:**
3485

3486 3487 3488 3489
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述       |
| -------- | ------ | ---- | ---- | ---------- |
| userName | string | 是    | -    | HTTP认证用户名。 |
| pwd      | string | 是    | -    | HTTP认证密码。  |
3490

Z
zhou-liting125 已提交
3491
**返回值:**
L
laosan_ted 已提交
3492

3493 3494 3495
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
3496 3497 3498 3499 3500

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

isHttpAuthInfoSaved(): boolean

Z
zengyawen 已提交
3501
通知Web组件用户使用服务器缓存的帐号密码认证。
3502

Z
zhou-liting125 已提交
3503
**返回值:**
L
laosan_ted 已提交
3504

3505 3506 3507
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
3508

3509 3510
## SslErrorHandler<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
3511
Web组件返回的SSL错误通知事件用户处理功能对象。示例代码参考[onSslErrorEventReceive事件](#onsslerroreventreceive9)
3512 3513 3514 3515 3516

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

handleCancel(): void

I
i-am-a-little-bird 已提交
3517
通知Web组件取消此请求。
3518 3519 3520 3521 3522

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

handleConfirm(): void

I
i-am-a-little-bird 已提交
3523 3524 3525 3526
通知Web组件继续使用SSL证书。

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

I
bugfix  
i-am-a-little-bird 已提交
3527
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onclientauthenticationrequest9)
I
i-am-a-little-bird 已提交
3528 3529 3530 3531 3532 3533

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

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

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

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

H
HelloCrease 已提交
3537 3538 3539 3540
| 参数名           | 参数类型   | 必填   | 参数描述               |
| ------------- | ------ | ---- | ------------------ |
| priKeyFile    | string | 是    | 存放私钥的文件,包含路径和文件名。  |
| certChainFile | string | 是    | 存放证书链的文件,包含路径和文件名。 |
I
i-am-a-little-bird 已提交
3541 3542

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

I
i-am-a-little-bird 已提交
3544 3545
cancel(): void

I
bugfix  
i-am-a-little-bird 已提交
3546
通知Web组件取消相同host和port服务器发送的客户端证书请求事件。同时,相同host和port服务器的请求,不重复上报该事件。
I
i-am-a-little-bird 已提交
3547 3548 3549 3550 3551 3552

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

ignore(): void

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

3554 3555
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
3556
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

H
HelloCrease 已提交
3572 3573 3574
| 类型     | 说明           |
| ------ | ------------ |
| string | 当前请求权限网页的来源。 |
3575 3576 3577 3578 3579

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

getAccessibleResource(): Array\<string\>

X
xiongjun_gitee 已提交
3580
获取网页所请求的权限资源列表,资源列表类型参考[ProtectedResourceType](#protectedresourcetype9枚举说明)
3581 3582 3583

**返回值:**

H
HelloCrease 已提交
3584 3585
| 类型              | 说明            |
| --------------- | ------------- |
3586 3587 3588 3589 3590 3591
| Array\<string\> | 网页所请求的权限资源列表。 |

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

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

X
xiongjun_gitee 已提交
3592
对网页访问的给定权限进行授权。
3593 3594 3595

**参数:**

H
HelloCrease 已提交
3596 3597
| 参数名       | 参数类型            | 必填   | 默认值  | 参数描述          |
| --------- | --------------- | ---- | ---- | ------------- |
3598
| resources | Array\<string\> | 是    | -    | 授予网页请求的权限的资源列表。 |
3599

3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634
## ContextMenuSourceType<sup>9+</sup>枚举说明
| 名称                   | 描述         |
| -------------------- | ---------- |
| None        | 其他事件来源。  |
| Mouse       | 鼠标事件。  |
| LongPress   | 长按事件。  |

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

| 名称           | 描述          |
| ------------ | ----------- |
| None      | 非特殊媒体或其他媒体类型。 |
| Image     | 图片。     |

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

| 名称           | 描述          |
| ------------ | ----------- |
| None      | 非输入框。       |
| PlainText | 纯文本类型,包括text、search、email等。   |
| Password  | 密码类型。     |
| Number    | 数字类型。     |
| Telephone | 电话号码类型。 |
| Other     | 其他类型。     |

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

| 名称         | 描述         |
| ------------ | ----------- |
| NONE         | 不可编辑。   |
| CAN_CUT      | 支持剪切。   |
| CAN_COPY     | 支持拷贝。   |
| CAN_PASTE    | 支持粘贴。   |
| CAN_SELECT_ALL  | 支持全选。 |

3635 3636
## WebContextMenuParam<sup>9+</sup>

3637
实现长按页面元素或鼠标右键弹出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
3638 3639 3640 3641 3642 3643 3644 3645 3646

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

x(): number

弹出菜单的x坐标。

**返回值:**

H
HelloCrease 已提交
3647 3648
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
3649
| number | 显示正常返回非负整数,否则返回-1。 |
3650 3651 3652 3653 3654 3655 3656 3657 3658

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

y(): number

弹出菜单的y坐标。

**返回值:**

H
HelloCrease 已提交
3659 3660
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
3661
| number | 显示正常返回非负整数,否则返回-1。 |
3662 3663 3664 3665 3666

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

getLinkUrl(): string

Y
yu-shihao4 已提交
3667
获取链接地址。
3668 3669 3670

**返回值:**

H
HelloCrease 已提交
3671 3672
| 类型     | 说明                        |
| ------ | ------------------------- |
Y
yu-shihao4 已提交
3673
| string | 如果长按位置是链接,返回经过安全检查的url链接。 |
3674

3675
### getUnfilteredLinkUrl<sup>9+</sup>
3676

3677
getUnfilteredLinkUrl(): string
3678

Y
yu-shihao4 已提交
3679
获取链接地址。
3680 3681 3682

**返回值:**

H
HelloCrease 已提交
3683 3684
| 类型     | 说明                    |
| ------ | --------------------- |
Y
yu-shihao4 已提交
3685
| string | 如果长按位置是链接,返回原始的url链接。 |
3686 3687 3688 3689 3690 3691 3692 3693 3694

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

getSourceUrl(): string

获取sourceUrl链接。

**返回值:**

H
HelloCrease 已提交
3695 3696
| 类型     | 说明                       |
| ------ | ------------------------ |
3697 3698 3699 3700 3701 3702 3703 3704 3705 3706
| string | 如果选中的元素有src属性,返回src的url。 |

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

existsImageContents(): boolean

是否存在图像内容。

**返回值:**

H
HelloCrease 已提交
3707 3708
| 类型      | 说明                        |
| ------- | ------------------------- |
3709 3710
| boolean | 长按位置中有图片返回true,否则返回false。 |

3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
### getMediaType<sup>9+</sup>

getMediaType(): ContextMenuMediaType

获取网页元素媒体类型。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [ContextMenuMediaType](#contextmenumediatype9枚举说明) | 网页元素媒体类型。 |

### getSelectionText<sup>9+</sup>

getSelectionText(): string

获取选中文本。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
| string | 菜单上下文选中文本内容,不存在则返回空。 |

### getSourceType<sup>9+</sup>

getSourceType(): ContextMenuSourceType

获取菜单事件来源。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [ContextMenuSourceType](#contextmenusourcetype9枚举说明) | 菜单事件来源。 |

### getInputFieldType<sup>9+</sup>

getInputFieldType(): ContextMenuInputFieldType

获取网页元素输入框类型。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [ContextMenuInputFieldType](#contextmenuinputfieldtype9枚举说明) | 输入框类型。 |

### isEditable<sup>9+</sup>

isEditable(): boolean

获取网页元素是否可编辑标识。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 网页元素可编辑返回true,不可编辑返回false。 |

### getEditStateFlags<sup>9+</sup>

getEditStateFlags(): number

获取网页元素可编辑标识。

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
| number | 网页元素可编辑标识,参照[ContextMenuEditStateFlags](#contextmenueditstateflags9枚举说明)。 |

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

3785
实现长按页面元素或鼠标右键弹出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798

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

closeContextMenu(): void

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

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

copyImage(): void

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

3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822
### copy<sup>9+</sup>

copy(): void

执行与此上下文菜单相关的拷贝操作。

### paste<sup>9+</sup>

paste(): void

执行与此上下文菜单相关的粘贴操作。

### cut<sup>9+</sup>

cut(): void

执行与此上下文菜单相关的剪切操作。

### selectAll<sup>9+</sup>

selectAll(): void

执行与此上下文菜单相关的全选操作。

3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834
## JsGeolocation

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

### invoke

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

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

**参数:**

H
HelloCrease 已提交
3835 3836 3837 3838
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述                                     |
| ------ | ------- | ---- | ---- | ---------------------------------------- |
| origin | string  | 是    | -    | 指定源的字符串索引。                               |
| allow  | boolean | 是    | -    | 设置的地理位置权限状态。                             |
L
laosan_ted 已提交
3839
| retain | boolean | 是    | -    | 是否允许将地理位置权限状态保存到系统中。可通过[GeolocationPermissions<sup>9+</sup>](../apis/js-apis-webview.md#geolocationpermissions)接口管理保存到系统的地理位置权限。 |
3840

L
lixiang 已提交
3841
## MessageLevel枚举说明
L
laosan_ted 已提交
3842

L
lixiang 已提交
3843 3844 3845 3846 3847 3848 3849
| 名称    | 描述    |
| ----- | :---- |
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |
Z
zengyawen 已提交
3850

L
lixiang 已提交
3851
## RenderExitReason枚举说明
Z
zengyawen 已提交
3852

L
lixiang 已提交
3853
onRenderExited接口返回的渲染进程退出的具体原因。
L
laosan_ted 已提交
3854

L
lixiang 已提交
3855 3856 3857 3858 3859 3860 3861
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
L
laosan_ted 已提交
3862

L
lixiang 已提交
3863
## MixedMode枚举说明
L
laosan_ted 已提交
3864

L
lixiang 已提交
3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 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
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
| All        | 允许加载HTTP和HTTPS混合内容。所有不安全的内容都可以被加载。 |
| Compatible | 混合内容兼容性模式,部分不安全的内容可能被加载。           |
| None       | 不允许加载HTTP和HTTPS混合内容。               |

## CacheMode枚举说明
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
| Default | 使用未过期的cache加载资源,如果cache中无该资源则从网络中获取。 |
| None    | 加载资源使用cache,如果cache中无该资源则从网络中获取。     |
| Online  | 加载资源不使用cache,全部从网络中获取。               |
| Only    | 只从cache中加载资源。                        |

## FileSelectorMode枚举说明
| 名称                   | 描述         |
| -------------------- | ---------- |
| FileOpenMode         | 打开上传单个文件。  |
| FileOpenMultipleMode | 打开上传多个文件。  |
| FileOpenFolderMode   | 打开上传文件夹模式。 |
| FileSaveMode         | 文件保存模式。    |

 ## HitTestType枚举说明

| 名称            | 描述                       |
| ------------- | ------------------------ |
| EditText      | 可编辑的区域。                  |
| Email         | 电子邮件地址。                  |
| HttpAnchor    | 超链接,其src为http。           |
| HttpAnchorImg | 带有超链接的图片,其中超链接的src为http。 |
| Img           | HTML::img标签。             |
| Map           | 地理地址。                    |
| Phone         | 电话号码。                    |
| Unknown       | 未知内容。                    |

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

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

| 名称           | 描述          |
| ------------ | ----------- |
| Invalid      | 一般错误。       |
| HostMismatch | 主机名不匹配。     |
| DateInvalid  | 证书日期无效。     |
| Untrusted    | 证书颁发机构不受信任。 |

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

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

## WebDarkMode<sup>9+</sup>枚举说明
| 名称      | 描述                                   |
| ------- | ------------------------------------ |
| Off     | Web深色模式关闭。                     |
| On      | Web深色模式开启。                     |
| Auto    | Web深色模式跟随系统。                 |

## DataResubmissionHandler<sup>9+</sup>

通过DataResubmissionHandler可以重新提交表单数据或取消提交表单数据。

### resend<sup>9+</sup>

resend(): void

重新发送表单数据。

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onDataResubmitted((event) => {
          console.log('onDataResubmitted')
          event.handler.resend();
        })
      }
    }
  }
  ```

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

cancel(): void

取消重新发送表单数据。

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
         .onDataResubmitted((event) => {
          console.log('onDataResubmitted')
          event.handler.cancel();
        })
      }
    }
  }
  ```

  ## WebController

通过WebController可以控制Web组件各种行为。一个WebController对象只能控制一个Web组件,且必须在Web组件和WebController绑定后,才能调用WebController上的方法。

从API version 9开始不再维护,建议使用[WebviewController<sup>9+</sup>](../apis/js-apis-webview.md#webviewcontroller)代替。

### 创建对象

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

### getCookieManager<sup>9+</sup>

getCookieManager(): WebCookie

获取web组件cookie管理对象。

**返回值:**

| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
4004
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookiedeprecated)定义。 |
L
lixiang 已提交
4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033

**示例:**

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

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

### requestFocus<sup>(deprecated)</sup>

requestFocus()

使当前web页面获取焦点。

从API version 9开始不再维护,建议使用[requestFocus<sup>9+</sup>](../apis/js-apis-webview.md#requestfocus)代替。
L
laosan_ted 已提交
4034

L
laosan_ted 已提交
4035
**示例:**
L
laosan_ted 已提交
4036

L
laosan_ted 已提交
4037 4038 4039 4040 4041
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4042
    controller: WebController = new WebController()
4043

L
laosan_ted 已提交
4044 4045 4046 4047
    build() {
      Column() {
        Button('requestFocus')
          .onClick(() => {
Y
yamila 已提交
4048
            this.controller.requestFocus()
L
laosan_ted 已提交
4049 4050 4051 4052 4053 4054 4055
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
laosan_ted 已提交
4056
### accessBackward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4057 4058 4059

accessBackward(): boolean

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

L
laosan_ted 已提交
4062 4063
从API version 9开始不再维护,建议使用[accessBackward<sup>9+</sup>](../apis/js-apis-webview.md#accessbackward)代替。

Z
zhou-liting125 已提交
4064
**返回值:**
L
laosan_ted 已提交
4065

4066 4067 4068
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
4069

Z
zhou-liting125 已提交
4070
**示例:**
L
laosan_ted 已提交
4071

Z
zhou-liting125 已提交
4072 4073
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4074
  @Entry
L
update  
laosan_ted 已提交
4075 4076
  @Component
  struct WebComponent {
Y
yamila 已提交
4077
    controller: WebController = new WebController()
4078

L
update  
laosan_ted 已提交
4079 4080 4081
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
4082
          .onClick(() => {
Y
yamila 已提交
4083 4084
            let result = this.controller.accessBackward()
            console.log('result:' + result)
L
laosan_ted 已提交
4085
          })
Z
zhou-liting125 已提交
4086
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4087
      }
L
update  
laosan_ted 已提交
4088 4089 4090 4091
    }
  }
  ```

L
laosan_ted 已提交
4092
### accessForward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4093 4094 4095

accessForward(): boolean

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

L
laosan_ted 已提交
4098 4099
从API version 9开始不再维护,建议使用[accessForward<sup>9+</sup>](../apis/js-apis-webview.md#accessforward)代替。

Z
zhou-liting125 已提交
4100
**返回值:**
L
laosan_ted 已提交
4101

4102 4103 4104
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
4105

Z
zhou-liting125 已提交
4106
**示例:**
L
laosan_ted 已提交
4107

Z
zhou-liting125 已提交
4108 4109
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4110
  @Entry
L
update  
laosan_ted 已提交
4111 4112
  @Component
  struct WebComponent {
Y
yamila 已提交
4113
    controller: WebController = new WebController()
4114

L
update  
laosan_ted 已提交
4115 4116 4117
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
4118
          .onClick(() => {
Y
yamila 已提交
4119 4120
            let result = this.controller.accessForward()
            console.log('result:' + result)
L
laosan_ted 已提交
4121
          })
Z
zhou-liting125 已提交
4122
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4123
      }
L
update  
laosan_ted 已提交
4124 4125 4126 4127
    }
  }
  ```

L
laosan_ted 已提交
4128
### accessStep<sup>(deprecated)</sup>
Z
zengyawen 已提交
4129

L
lixingchi1 已提交
4130
accessStep(step: number): boolean
Z
zengyawen 已提交
4131

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

L
laosan_ted 已提交
4134 4135
从API version 9开始不再维护,建议使用[accessStep<sup>9+</sup>](../apis/js-apis-webview.md#accessstep)代替。

Z
zhou-liting125 已提交
4136
**参数:**
Z
zengyawen 已提交
4137

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

Z
zhou-liting125 已提交
4142
**返回值:**
L
laosan_ted 已提交
4143

4144 4145 4146
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
4147

Z
zhou-liting125 已提交
4148
**示例:**
L
laosan_ted 已提交
4149

Z
zhou-liting125 已提交
4150 4151
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4152
  @Entry
L
update  
laosan_ted 已提交
4153 4154
  @Component
  struct WebComponent {
Y
yamila 已提交
4155 4156
    controller: WebController = new WebController()
    @State steps: number = 2
4157

L
update  
laosan_ted 已提交
4158 4159 4160
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
4161
          .onClick(() => {
Y
yamila 已提交
4162 4163
            let result = this.controller.accessStep(this.steps)
            console.log('result:' + result)
L
laosan_ted 已提交
4164
          })
Z
zhou-liting125 已提交
4165
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4166
      }
L
update  
laosan_ted 已提交
4167 4168 4169 4170
    }
  }
  ```

L
laosan_ted 已提交
4171
### backward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4172

L
update  
laosan_ted 已提交
4173
backward(): void
L
lixingchi1 已提交
4174

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

L
laosan_ted 已提交
4177 4178
从API version 9开始不再维护,建议使用[backward<sup>9+</sup>](../apis/js-apis-webview.md#backward)代替。

Z
zhou-liting125 已提交
4179
**示例:**
L
laosan_ted 已提交
4180

Z
zhou-liting125 已提交
4181 4182
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4183
  @Entry
L
update  
laosan_ted 已提交
4184 4185
  @Component
  struct WebComponent {
Y
yamila 已提交
4186
    controller: WebController = new WebController()
4187

L
update  
laosan_ted 已提交
4188 4189 4190
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
4191
          .onClick(() => {
Y
yamila 已提交
4192
            this.controller.backward()
L
laosan_ted 已提交
4193
          })
Z
zhou-liting125 已提交
4194
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4195
      }
L
update  
laosan_ted 已提交
4196 4197 4198
    }
  }
  ```
L
lixingchi1 已提交
4199

L
laosan_ted 已提交
4200
### forward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4201

L
update  
laosan_ted 已提交
4202
forward(): void
L
lixingchi1 已提交
4203

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

L
laosan_ted 已提交
4206 4207
从API version 9开始不再维护,建议使用[forward<sup>9+</sup>](../apis/js-apis-webview.md#forward)代替。

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

Z
zhou-liting125 已提交
4210 4211
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4212
  @Entry
L
update  
laosan_ted 已提交
4213 4214
  @Component
  struct WebComponent {
Y
yamila 已提交
4215
    controller: WebController = new WebController()
4216

L
update  
laosan_ted 已提交
4217 4218 4219
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
4220
          .onClick(() => {
Y
yamila 已提交
4221
            this.controller.forward()
L
laosan_ted 已提交
4222
          })
Z
zhou-liting125 已提交
4223
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4224
      }
L
update  
laosan_ted 已提交
4225 4226 4227 4228
    }
  }
  ```

L
laosan_ted 已提交
4229
### deleteJavaScriptRegister<sup>(deprecated)</sup>
L
update  
laosan_ted 已提交
4230 4231 4232

deleteJavaScriptRegister(name: string)

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

L
laosan_ted 已提交
4235 4236
从API version 9开始不再维护,建议使用[deleteJavaScriptRegister<sup>9+</sup>](../apis/js-apis-webview.md#deletejavascriptregister)代替。

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

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

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

Z
zhou-liting125 已提交
4245 4246
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4247
  @Entry
L
update  
laosan_ted 已提交
4248 4249
  @Component
  struct WebComponent {
Y
yamila 已提交
4250 4251
    controller: WebController = new WebController()
    @State name: string = 'Object'
4252

L
update  
laosan_ted 已提交
4253 4254 4255
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
4256
          .onClick(() => {
Y
yamila 已提交
4257
            this.controller.deleteJavaScriptRegister(this.name)
L
laosan_ted 已提交
4258
          })
Z
zhou-liting125 已提交
4259
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4260
      }
L
update  
laosan_ted 已提交
4261 4262 4263 4264
    }
  }
  ```

L
laosan_ted 已提交
4265
### getHitTest<sup>(deprecated)</sup>
L
lixingchi1 已提交
4266 4267 4268

getHitTest(): HitTestType

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

L
laosan_ted 已提交
4271 4272
从API version 9开始不再维护,建议使用[getHitTest<sup>9+</sup>](../apis/js-apis-webview.md#gethittest)代替。

Z
zhou-liting125 已提交
4273
**返回值:**
L
laosan_ted 已提交
4274

4275 4276 4277
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
4278

Z
zhou-liting125 已提交
4279
**示例:**
L
laosan_ted 已提交
4280

Z
zhou-liting125 已提交
4281 4282
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4283
  @Entry
L
update  
laosan_ted 已提交
4284 4285
  @Component
  struct WebComponent {
Y
yamila 已提交
4286
    controller: WebController = new WebController()
4287

L
update  
laosan_ted 已提交
4288 4289 4290
    build() {
      Column() {
        Button('getHitTest')
L
laosan_ted 已提交
4291
          .onClick(() => {
Y
yamila 已提交
4292 4293
            let hitType = this.controller.getHitTest()
            console.log("hitType: " + hitType)
L
laosan_ted 已提交
4294
          })
Z
zhou-liting125 已提交
4295
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4296
      }
L
update  
laosan_ted 已提交
4297 4298 4299 4300
    }
  }
  ```

L
laosan_ted 已提交
4301
### loadData<sup>(deprecated)</sup>
L
lixingchi1 已提交
4302

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

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

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

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

L
laosan_ted 已提交
4311 4312
从API version 9开始不再维护,建议使用[loadData<sup>9+</sup>](../apis/js-apis-webview.md#loaddata)代替。

Z
zhou-liting125 已提交
4313
**参数:**
L
laosan_ted 已提交
4314

4315 4316 4317 4318 4319 4320 4321
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
4322

Z
zhou-liting125 已提交
4323
**示例:**
L
laosan_ted 已提交
4324

Z
zhou-liting125 已提交
4325 4326
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4327
  @Entry
L
update  
laosan_ted 已提交
4328 4329
  @Component
  struct WebComponent {
Y
yamila 已提交
4330
    controller: WebController = new WebController()
4331

L
update  
laosan_ted 已提交
4332 4333 4334
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
4335 4336 4337 4338 4339
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
Y
yamila 已提交
4340
            })
L
laosan_ted 已提交
4341
          })
Z
zhou-liting125 已提交
4342
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4343
      }
L
update  
laosan_ted 已提交
4344 4345 4346 4347
    }
  }
  ```

L
laosan_ted 已提交
4348
### loadUrl<sup>(deprecated)</sup>
Z
zengyawen 已提交
4349

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

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

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

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

L
laosan_ted 已提交
4358 4359
从API version 9开始不再维护,建议使用[loadUrl<sup>9+</sup>](../apis/js-apis-webview.md#loadurl)代替。

Z
zhou-liting125 已提交
4360
**参数:**
L
laosan_ted 已提交
4361

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

Z
zhou-liting125 已提交
4367
**示例:**
L
laosan_ted 已提交
4368

Z
zhou-liting125 已提交
4369 4370
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4371
  @Entry
L
update  
laosan_ted 已提交
4372 4373
  @Component
  struct WebComponent {
Y
yamila 已提交
4374
    controller: WebController = new WebController()
4375

L
update  
laosan_ted 已提交
4376 4377 4378
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
4379
          .onClick(() => {
Y
yamila 已提交
4380
            this.controller.loadUrl({ url: 'www.example.com' })
L
laosan_ted 已提交
4381
          })
Z
zhou-liting125 已提交
4382
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4383
      }
L
update  
laosan_ted 已提交
4384 4385 4386 4387
    }
  }
  ```

L
laosan_ted 已提交
4388
### onActive<sup>(deprecated)</sup>
L
lixingchi1 已提交
4389 4390 4391

onActive(): void

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

L
laosan_ted 已提交
4394 4395
从API version 9开始不再维护,建议使用[onActive<sup>9+</sup>](../apis/js-apis-webview.md#onactive)代替。

Z
zhou-liting125 已提交
4396
**示例:**
L
laosan_ted 已提交
4397

Z
zhou-liting125 已提交
4398 4399
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4400
  @Entry
L
update  
laosan_ted 已提交
4401 4402
  @Component
  struct WebComponent {
Y
yamila 已提交
4403
    controller: WebController = new WebController()
4404

L
update  
laosan_ted 已提交
4405 4406 4407
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
4408
          .onClick(() => {
Y
yamila 已提交
4409
            this.controller.onActive()
L
laosan_ted 已提交
4410
          })
Z
zhou-liting125 已提交
4411
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4412
      }
L
update  
laosan_ted 已提交
4413 4414 4415 4416
    }
  }
  ```

L
laosan_ted 已提交
4417
### onInactive<sup>(deprecated)</sup>
L
lixingchi1 已提交
4418 4419 4420

onInactive(): void

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

L
laosan_ted 已提交
4423 4424
从API version 9开始不再维护,建议使用[onInactive<sup>9+</sup>](../apis/js-apis-webview.md#oninactive)代替。

Z
zhou-liting125 已提交
4425
**示例:**
L
laosan_ted 已提交
4426

Z
zhou-liting125 已提交
4427 4428
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4429
  @Entry
L
update  
laosan_ted 已提交
4430 4431
  @Component
  struct WebComponent {
Y
yamila 已提交
4432
    controller: WebController = new WebController()
4433

L
update  
laosan_ted 已提交
4434 4435 4436
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
4437
          .onClick(() => {
Y
yamila 已提交
4438
            this.controller.onInactive()
L
laosan_ted 已提交
4439
          })
Z
zhou-liting125 已提交
4440
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4441
      }
L
update  
laosan_ted 已提交
4442 4443 4444 4445
    }
  }
  ```

L
laosan_ted 已提交
4446
### zoom<sup>(deprecated)</sup>
4447 4448 4449
zoom(factor: number): void

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

L
laosan_ted 已提交
4451 4452
从API version 9开始不再维护,建议使用[zoom<sup>9+</sup>](../apis/js-apis-webview.md#zoom)代替。

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

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

Z
zhou-liting125 已提交
4459
**示例:**
L
laosan_ted 已提交
4460

Z
zhou-liting125 已提交
4461 4462
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4463
  @Entry
L
update  
laosan_ted 已提交
4464 4465
  @Component
  struct WebComponent {
Y
yamila 已提交
4466 4467
    controller: WebController = new WebController()
    @State factor: number = 1
4468

L
update  
laosan_ted 已提交
4469 4470 4471
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
4472
          .onClick(() => {
Y
yamila 已提交
4473
            this.controller.zoom(this.factor)
L
laosan_ted 已提交
4474
          })
Z
zhou-liting125 已提交
4475
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4476
      }
L
update  
laosan_ted 已提交
4477 4478 4479 4480
    }
  }
  ```

L
laosan_ted 已提交
4481
### refresh<sup>(deprecated)</sup>
L
lixingchi1 已提交
4482

Z
zhou-liting125 已提交
4483
refresh()
L
lixingchi1 已提交
4484

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

L
laosan_ted 已提交
4487 4488
从API version 9开始不再维护,建议使用[refresh<sup>9+</sup>](../apis/js-apis-webview.md#refresh)代替。

Z
zhou-liting125 已提交
4489
**示例:**
L
laosan_ted 已提交
4490

Z
zhou-liting125 已提交
4491 4492
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4493
  @Entry
L
update  
laosan_ted 已提交
4494 4495
  @Component
  struct WebComponent {
Y
yamila 已提交
4496
    controller: WebController = new WebController()
4497

L
update  
laosan_ted 已提交
4498 4499 4500
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
4501
          .onClick(() => {
Y
yamila 已提交
4502
            this.controller.refresh()
L
laosan_ted 已提交
4503
          })
Z
zhou-liting125 已提交
4504
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4505
      }
L
update  
laosan_ted 已提交
4506 4507 4508 4509
    }
  }
  ```

L
laosan_ted 已提交
4510
### registerJavaScriptProxy<sup>(deprecated)</sup>
L
lixingchi1 已提交
4511

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

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

L
laosan_ted 已提交
4516 4517
从API version 9开始不再维护,建议使用[registerJavaScriptProxy<sup>9+</sup>](../apis/js-apis-webview.md#registerjavascriptproxy)代替。

Z
zhou-liting125 已提交
4518
**参数:**
L
laosan_ted 已提交
4519

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

Z
zhou-liting125 已提交
4526
**示例:**
L
laosan_ted 已提交
4527

Z
zhou-liting125 已提交
4528 4529
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4530
  @Entry
L
update  
laosan_ted 已提交
4531 4532 4533 4534 4535
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
Y
yamila 已提交
4536
        return "ArkUI Web Component"
L
update  
laosan_ted 已提交
4537 4538
      },
      toString: () => {
Y
yamila 已提交
4539
        console.log('Web Component toString')
L
update  
laosan_ted 已提交
4540 4541 4542 4543 4544 4545 4546 4547 4548 4549
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
Y
yamila 已提交
4550
            })
L
update  
laosan_ted 已提交
4551 4552 4553 4554 4555 4556 4557 4558
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
4559

L
update  
laosan_ted 已提交
4560
  ```html
L
laosan_ted 已提交
4561
  <!-- index.html -->
L
update  
laosan_ted 已提交
4562 4563 4564 4565 4566 4567 4568 4569
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
Y
yamila 已提交
4570 4571
          str = objName.test("test function")
          console.log('objName.test result:'+ str)
L
update  
laosan_ted 已提交
4572 4573 4574
      }
  </script>
  </html>
4575

L
update  
laosan_ted 已提交
4576 4577
  ```

L
laosan_ted 已提交
4578
### runJavaScript<sup>(deprecated)</sup>
L
lixingchi1 已提交
4579

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

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

L
laosan_ted 已提交
4584 4585
从API version 9开始不再维护,建议使用[runJavaScript<sup>9+</sup>](../apis/js-apis-webview.md#runjavascript)代替。

Z
zhou-liting125 已提交
4586
**参数:**
L
laosan_ted 已提交
4587

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

Z
zhou-liting125 已提交
4593
**示例:**
L
laosan_ted 已提交
4594

Z
zhou-liting125 已提交
4595 4596
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4597
  @Entry
L
update  
laosan_ted 已提交
4598 4599
  @Component
  struct WebComponent {
Y
yamila 已提交
4600
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612
    @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 已提交
4613 4614
            }})
          console.info('url: ', e.url)
L
update  
laosan_ted 已提交
4615 4616 4617 4618 4619 4620 4621
        })
      }
    }
  }
  ```

  ```html
L
laosan_ted 已提交
4622
  <!-- index.html -->
L
update  
laosan_ted 已提交
4623 4624 4625 4626 4627 4628 4629 4630
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
Y
yamila 已提交
4631
        console.log('Ark WebComponent')
L
update  
laosan_ted 已提交
4632 4633 4634 4635 4636 4637 4638
        return "This value is from index.html"
    }
    </script>
  </html>

  ```

L
laosan_ted 已提交
4639
### stop<sup>(deprecated)</sup>
L
lixingchi1 已提交
4640

Z
zhou-liting125 已提交
4641
stop()
Z
zengyawen 已提交
4642

L
lixingchi1 已提交
4643
停止页面加载。
Z
zengyawen 已提交
4644

L
laosan_ted 已提交
4645 4646
从API version 9开始不再维护,建议使用[stop<sup>9+</sup>](../apis/js-apis-webview.md#stop)代替。

Z
zhou-liting125 已提交
4647
**示例:**
L
laosan_ted 已提交
4648

Z
zhou-liting125 已提交
4649 4650
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4651
  @Entry
L
update  
laosan_ted 已提交
4652 4653
  @Component
  struct WebComponent {
Y
yamila 已提交
4654
    controller: WebController = new WebController()
4655

L
update  
laosan_ted 已提交
4656 4657 4658
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
4659
          .onClick(() => {
Y
yamila 已提交
4660
            this.controller.stop()
L
laosan_ted 已提交
4661
          })
Z
zhou-liting125 已提交
4662
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4663
      }
L
update  
laosan_ted 已提交
4664 4665 4666 4667
    }
  }
  ```

L
laosan_ted 已提交
4668
### clearHistory<sup>(deprecated)</sup>
T
Ted 已提交
4669 4670 4671 4672 4673

clearHistory(): void

删除所有前进后退记录。

L
laosan_ted 已提交
4674 4675
从API version 9开始不再维护,建议使用[clearHistory<sup>9+</sup>](../apis/js-apis-webview.md#clearhistory)代替。

Z
zhou-liting125 已提交
4676
**示例:**
L
laosan_ted 已提交
4677

Z
zhou-liting125 已提交
4678 4679
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4680
  @Entry
L
update  
laosan_ted 已提交
4681 4682
  @Component
  struct WebComponent {
Y
yamila 已提交
4683
    controller: WebController = new WebController()
L
laosan_ted 已提交
4684

L
laosan_ted 已提交
4685 4686
    build() {
      Column() {
4687
        Button('clearHistory')
L
laosan_ted 已提交
4688
          .onClick(() => {
4689
            this.controller.clearHistory()
L
laosan_ted 已提交
4690 4691 4692 4693 4694 4695 4696
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
lixiang 已提交
4697
## WebCookie<sup>(deprecated)</sup>
4698 4699 4700

通过WebCookie可以控制Web组件中的cookie的各种行为,其中每个应用中的所有web组件共享一个WebCookie。通过controller方法中的getCookieManager方法可以获取WebCookie对象,进行后续的cookie管理操作。

L
lixiang 已提交
4701
### setCookie<sup>(deprecated)</sup>
4702 4703 4704
setCookie(url: string, value: string): boolean

设置cookie,该方法为同步方法。设置成功返回true,否则返回false。
H
HelloCrease 已提交
4705
从API version 9开始不再维护,建议使用[setCookie<sup>9+</sup>](../apis/js-apis-webview.md#setcookie)代替。
4706 4707

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

4709 4710
| 参数名   | 参数类型   | 必填   | 默认值  | 参数描述              |
| ----- | ------ | ---- | ---- | ----------------- |
4711
| url   | string | 是    | -    | 要设置的cookie所属的url,建议使用完整的url。 |
4712 4713 4714 4715 4716 4717 4718
| value | string | 是    | -    | cookie的值。         |

**返回值:**

| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
L
laosan_ted 已提交
4719 4720 4721 4722 4723 4724 4725 4726

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4727
    controller: WebController = new WebController()
4728

L
laosan_ted 已提交
4729 4730
    build() {
      Column() {
4731
        Button('setCookie')
L
laosan_ted 已提交
4732
          .onClick(() => {
L
lixiang 已提交
4733
            let result = this.controller.getCookieManager().setCookie("https://www.example.com", "a=b")
4734
            console.log("result: " + result)
L
laosan_ted 已提交
4735 4736 4737 4738 4739 4740
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```
L
lixiang 已提交
4741 4742
### saveCookie<sup>(deprecated)</sup>
saveCookie(): boolean
4743 4744

将当前存在内存中的cookie同步到磁盘中,该方法为同步方法。
H
HelloCrease 已提交
4745
从API version 9开始不再维护,建议使用[saveCookieAsync<sup>9+</sup>](../apis/js-apis-webview.md#savecookieasync)代替。
L
laosan_ted 已提交
4746

4747
**返回值:**
L
laosan_ted 已提交
4748

4749 4750 4751
| 类型      | 说明                   |
| ------- | -------------------- |
| boolean | 同步内存cookie到磁盘操作是否成功。 |
L
laosan_ted 已提交
4752 4753 4754 4755 4756 4757 4758 4759

**示例:**

  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4760
    controller: WebController = new WebController()
4761

L
laosan_ted 已提交
4762 4763
    build() {
      Column() {
L
lixiang 已提交
4764
        Button('saveCookie')
L
laosan_ted 已提交
4765
          .onClick(() => {
L
lixiang 已提交
4766
            let result = this.controller.getCookieManager().saveCookie()
4767
            console.log("result: " + result)
L
laosan_ted 已提交
4768 4769 4770 4771 4772
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
4773
  ```