ts-basic-components-web.md 151.1 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)               | 是    | 网页资源地址。如果访问本地资源文件,请使用$rawfile或者resource协议。如果加载应用包外沙箱路径的本地资源文件,请使用file://沙箱文件路径。 |
H
HelloCrease 已提交
31
| controller | [WebviewController<sup>9+</sup>](../apis/js-apis-webview.md#webviewcontroller) \| [WebController](#webcontroller) | 是    | 控制器。从API Version 9开始,WebController不再维护,建议使用WebviewController替代。 |
Z
zengyawen 已提交
32

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

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

Z
zhou-liting125 已提交
40
  @Entry
L
update  
laosan_ted 已提交
41 42
  @Component
  struct WebComponent {
L
lixiang 已提交
43
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
44 45
    build() {
      Column() {
46
        Web({ src: 'www.example.com', controller: this.controller })
L
update  
laosan_ted 已提交
47 48 49 50
      }
    }
  }
  ```
L
lixiang 已提交
51 52

  加载本地网页
Y
yuhaoge 已提交
53 54 55 56 57 58 59
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
60
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
61 62
    build() {
      Column() {
L
lixiang 已提交
63
        // 通过$rawfile加载本地资源文件。
L
lixiang 已提交
64
        Web({ src: $rawfile("index.html"), controller: this.controller })
Y
yuhaoge 已提交
65 66 67 68
      }
    }
  }
  ```
Z
zengyawen 已提交
69

L
laosan_ted 已提交
70 71
  ```ts
  // xxx.ets
L
lixiang 已提交
72 73
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
74 75 76
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
77
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
78 79
    build() {
      Column() {
L
lixiang 已提交
80
        // 通过resource协议加载本地资源文件。
L
lixiang 已提交
81
        Web({ src: "resource://rawfile/index.html", controller: this.controller })
L
laosan_ted 已提交
82 83 84 85 86
      }
    }
  }
  ```

87 88 89 90 91 92
  加载沙箱路径下的本地资源文件

  1.通过[globalthis](../../application-models/uiability-data-sync-with-ui.md#uiability和page之间使用globalthis)获取沙箱路径。
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
93
  let url = 'file://' + globalThis.filesDir + '/index.html'
94 95 96 97 98 99 100 101 102 103 104 105 106 107

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

L
lixiang 已提交
108
  2.修改EntryAbility.ts。
109
  以filesDir为例,获取沙箱路径。若想获取其他路径,请参考[应用文件路径](../../application-models/application-context-stage.md#获取应用文件路径)
110 111 112 113 114 115 116 117 118 119 120 121 122 123
  ```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)
      }
  }
  ```

124
  加载的html文件。
L
laosan_ted 已提交
125 126 127 128 129 130 131 132 133
  ```html
  <!-- index.html -->
  <!DOCTYPE html>
  <html>
      <body>
          <p>Hello World</p>
      </body>
  </html>
  ```
Z
zengyawen 已提交
134

L
update  
laosan_ted 已提交
135
## 属性
Z
zhou-liting125 已提交
136

H
HelloCrease 已提交
137
通用属性仅支持[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 已提交
138 139 140 141 142 143 144

### domStorageAccess

domStorageAccess(domStorageAccess: boolean)

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

Z
zhou-liting125 已提交
145
**参数:**
L
laosan_ted 已提交
146

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

Z
zhou-liting125 已提交
151
**示例:**
L
laosan_ted 已提交
152

Z
zhou-liting125 已提交
153 154
  ```ts
  // xxx.ets
L
lixiang 已提交
155 156
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
157
  @Entry
L
update  
laosan_ted 已提交
158 159
  @Component
  struct WebComponent {
L
lixiang 已提交
160
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
161 162
    build() {
      Column() {
163 164
        Web({ src: 'www.example.com', controller: this.controller })
          .domStorageAccess(true)
L
update  
laosan_ted 已提交
165 166 167 168 169
      }
    }
  }
  ```

Z
zhou-liting125 已提交
170 171 172 173
### fileAccess

fileAccess(fileAccess: boolean)

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

Z
zhou-liting125 已提交
176
**参数:**
L
laosan_ted 已提交
177

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

Z
zhou-liting125 已提交
182
**示例:**
L
laosan_ted 已提交
183

Z
zhou-liting125 已提交
184 185
  ```ts
  // xxx.ets
L
lixiang 已提交
186 187
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
188
  @Entry
L
update  
laosan_ted 已提交
189 190
  @Component
  struct WebComponent {
L
lixiang 已提交
191
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
192 193
    build() {
      Column() {
194
        Web({ src: 'www.example.com', controller: this.controller })
195
          .fileAccess(true)
L
update  
laosan_ted 已提交
196 197 198 199 200
      }
    }
  }
  ```

Z
zhou-liting125 已提交
201 202 203 204 205 206
### imageAccess

imageAccess(imageAccess: boolean)

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

Z
zhou-liting125 已提交
207
**参数:**
L
laosan_ted 已提交
208

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

Z
zhou-liting125 已提交
213
**示例:**
Z
zhou-liting125 已提交
214 215
  ```ts
  // xxx.ets
L
lixiang 已提交
216 217
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
218
  @Entry
L
update  
laosan_ted 已提交
219 220
  @Component
  struct WebComponent {
L
lixiang 已提交
221
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
222 223
    build() {
      Column() {
224 225
        Web({ src: 'www.example.com', controller: this.controller })
          .imageAccess(true)
L
update  
laosan_ted 已提交
226 227 228 229 230
      }
    }
  }
  ```

Z
zhou-liting125 已提交
231 232 233
### javaScriptProxy

javaScriptProxy(javaScriptProxy: { object: object, name: string, methodList: Array\<string\>,
L
lixiang 已提交
234
    controller: WebviewController | WebController})
Z
zhou-liting125 已提交
235 236 237

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

Z
zhou-liting125 已提交
238
**参数:**
L
laosan_ted 已提交
239

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

Z
zhou-liting125 已提交
247
**示例:**
L
laosan_ted 已提交
248

Y
yuhaoge 已提交
249 250 251 252 253 254 255
  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'

  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
256
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yuhaoge 已提交
257 258
    testObj = {
      test: (data1, data2, data3) => {
Y
yamila 已提交
259 260 261 262
        console.log("data1:" + data1)
        console.log("data2:" + data2)
        console.log("data3:" + data3)
        return "AceString"
Y
yuhaoge 已提交
263 264
      },
      toString: () => {
Y
yamila 已提交
265
        console.log('toString' + "interface instead.")
Y
yuhaoge 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
      }
    }
    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 已提交
282

Z
zhou-liting125 已提交
283 284 285 286 287 288
### javaScriptAccess

javaScriptAccess(javaScriptAccess: boolean)

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

Z
zhou-liting125 已提交
289
**参数:**
L
laosan_ted 已提交
290

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

Z
zhou-liting125 已提交
295
**示例:**
L
laosan_ted 已提交
296

Z
zhou-liting125 已提交
297 298
  ```ts
  // xxx.ets
L
lixiang 已提交
299 300
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
301
  @Entry
L
update  
laosan_ted 已提交
302 303
  @Component
  struct WebComponent {
L
lixiang 已提交
304
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
305 306
    build() {
      Column() {
307 308
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
L
update  
laosan_ted 已提交
309 310 311 312 313
      }
    }
  }
  ```

Z
zhou-liting125 已提交
314 315 316 317 318 319
### mixedMode

mixedMode(mixedMode: MixedMode)

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

Z
zhou-liting125 已提交
320
**参数:**
L
laosan_ted 已提交
321

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

Z
zhou-liting125 已提交
326
**示例:**
L
laosan_ted 已提交
327

Z
zhou-liting125 已提交
328 329
  ```ts
  // xxx.ets
L
lixiang 已提交
330 331
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
332
  @Entry
L
update  
laosan_ted 已提交
333 334
  @Component
  struct WebComponent {
L
lixiang 已提交
335
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
336
    @State mode: MixedMode = MixedMode.All
L
update  
laosan_ted 已提交
337 338
    build() {
      Column() {
339 340
        Web({ src: 'www.example.com', controller: this.controller })
          .mixedMode(this.mode)
L
update  
laosan_ted 已提交
341 342 343 344 345
      }
    }
  }
  ```

Z
zhou-liting125 已提交
346 347 348 349 350 351
### onlineImageAccess

onlineImageAccess(onlineImageAccess: boolean)

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

Z
zhou-liting125 已提交
352
**参数:**
L
laosan_ted 已提交
353

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

Z
zhou-liting125 已提交
358
**示例:**
L
laosan_ted 已提交
359

Z
zhou-liting125 已提交
360 361
  ```ts
  // xxx.ets
L
lixiang 已提交
362 363
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
364
  @Entry
L
update  
laosan_ted 已提交
365 366
  @Component
  struct WebComponent {
L
lixiang 已提交
367
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
368 369
    build() {
      Column() {
370 371
        Web({ src: 'www.example.com', controller: this.controller })
          .onlineImageAccess(true)
L
update  
laosan_ted 已提交
372 373 374 375 376
      }
    }
  }
  ```

Z
zhou-liting125 已提交
377 378 379 380 381 382
### zoomAccess

zoomAccess(zoomAccess: boolean)

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

Z
zhou-liting125 已提交
383
**参数:**
L
laosan_ted 已提交
384

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

Z
zhou-liting125 已提交
389
**示例:**
L
laosan_ted 已提交
390

Z
zhou-liting125 已提交
391 392
  ```ts
  // xxx.ets
L
lixiang 已提交
393 394
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
395
  @Entry
L
update  
laosan_ted 已提交
396 397
  @Component
  struct WebComponent {
L
lixiang 已提交
398
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
399 400
    build() {
      Column() {
401 402
        Web({ src: 'www.example.com', controller: this.controller })
          .zoomAccess(true)
L
update  
laosan_ted 已提交
403 404 405 406 407
      }
    }
  }
  ```

Z
zhou-liting125 已提交
408 409 410 411
### overviewModeAccess

overviewModeAccess(overviewModeAccess: boolean)

412
设置是否使用概览模式加载网页,默认使用该方式。当前仅支持移动设备。
Z
zhou-liting125 已提交
413

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

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

Z
zhou-liting125 已提交
420
**示例:**
L
laosan_ted 已提交
421

Z
zhou-liting125 已提交
422 423
  ```ts
  // xxx.ets
L
lixiang 已提交
424 425
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
426
  @Entry
L
update  
laosan_ted 已提交
427 428
  @Component
  struct WebComponent {
L
lixiang 已提交
429
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
430 431
    build() {
      Column() {
432 433
        Web({ src: 'www.example.com', controller: this.controller })
          .overviewModeAccess(true)
L
update  
laosan_ted 已提交
434 435 436 437 438
      }
    }
  }
  ```

Z
zhou-liting125 已提交
439 440 441 442 443 444
### databaseAccess

databaseAccess(databaseAccess: boolean)

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

Z
zhou-liting125 已提交
445
**参数:**
L
laosan_ted 已提交
446

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

L
laosan_ted 已提交
451
**示例:**
L
laosan_ted 已提交
452

Z
zhou-liting125 已提交
453 454
  ```ts
  // xxx.ets
L
lixiang 已提交
455 456
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
457
  @Entry
L
update  
laosan_ted 已提交
458 459
  @Component
  struct WebComponent {
L
lixiang 已提交
460
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
461 462
    build() {
      Column() {
463 464
        Web({ src: 'www.example.com', controller: this.controller })
          .databaseAccess(true)
L
update  
laosan_ted 已提交
465 466 467 468 469
      }
    }
  }
  ```

L
laosan_ted 已提交
470 471 472 473 474 475 476
### geolocationAccess

geolocationAccess(geolocationAccess: boolean)

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

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

H
HelloCrease 已提交
478 479 480
| 参数名               | 参数类型    | 必填   | 默认值  | 参数描述            |
| ----------------- | ------- | ---- | ---- | --------------- |
| geolocationAccess | boolean | 是    | true | 设置是否开启获取地理位置权限。 |
L
laosan_ted 已提交
481 482

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

L
laosan_ted 已提交
484 485
  ```ts
  // xxx.ets
L
lixiang 已提交
486 487
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
488 489 490
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
491
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
492 493
    build() {
      Column() {
494 495
        Web({ src: 'www.example.com', controller: this.controller })
          .geolocationAccess(true)
L
laosan_ted 已提交
496 497 498 499 500
      }
    }
  }
  ```

L
laosan_ted 已提交
501 502 503 504
### mediaPlayGestureAccess

mediaPlayGestureAccess(access: boolean)

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

**参数:**

H
HelloCrease 已提交
509 510
| 参数名    | 参数类型    | 必填   | 默认值  | 参数描述              |
| ------ | ------- | ---- | ---- | ----------------- |
L
laosan_ted 已提交
511
| access | boolean | 是    | true | 设置有声视频播放是否需要用户手动点击。 |
L
laosan_ted 已提交
512 513 514 515 516

**示例:**

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

L
laosan_ted 已提交
519 520 521
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
522
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
523
    @State access: boolean = true
L
laosan_ted 已提交
524 525 526 527 528 529 530 531 532
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .mediaPlayGestureAccess(this.access)
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
533 534 535 536 537
### multiWindowAccess<sup>9+</sup>

multiWindowAccess(multiWindow: boolean)

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

**参数:**

H
HelloCrease 已提交
542 543
| 参数名         | 参数类型    | 必填   | 默认值   | 参数描述         |
| ----------- | ------- | ---- | ----- | ------------ |
X
xiongjun_gitee 已提交
544 545 546 547 548 549
| multiWindow | boolean | 是    | false | 设置是否开启多窗口权限。 |

**示例:**

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

X
xiongjun_gitee 已提交
552 553 554
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
555
    controller: web_webview.WebviewController = new web_webview.WebviewController()
X
xiongjun_gitee 已提交
556 557 558
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
559
        .multiWindowAccess(false)
X
xiongjun_gitee 已提交
560 561 562 563 564
      }
    }
  }
  ```

L
laosan_ted 已提交
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
### horizontalScrollBarAccess<sup>9+</sup>

horizontalScrollBarAccess(horizontalScrollBar: boolean)

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

**参数:**

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

**示例:**

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

L
laosan_ted 已提交
583 584 585
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
586
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
587 588
    build() {
      Column() {
589
        Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
590 591 592 593 594 595
        .horizontalScrollBarAccess(true)
      }
    }
  }
  ```

596
  加载的html文件。
L
laosan_ted 已提交
597
  ```html
598
  <!--index.html-->
L
laosan_ted 已提交
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
  <!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 已提交
635 636
  import web_webview from '@ohos.web.webview'

L
laosan_ted 已提交
637 638 639
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
640
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
641 642
    build() {
      Column() {
643
        Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
644 645 646 647 648 649
        .verticalScrollBarAccess(true)
      }
    }
  }
  ```

650
  加载的html文件。
L
laosan_ted 已提交
651
  ```html
652
  <!--index.html-->
L
laosan_ted 已提交
653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
  <!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>
  ```

L
lixiang 已提交
673
### password<sup>(deprecated)</sup>
674 675 676 677

password(password: boolean)

设置是否应保存密码。该接口为空接口。
L
laosan_ted 已提交
678

L
lixiang 已提交
679 680 681 682
> **说明:**
>
> 从API version 10开始废弃,并且不再提供新的接口作为替代。

Z
zhou-liting125 已提交
683 684 685 686 687 688
### cacheMode

cacheMode(cacheMode: CacheMode)

设置缓存模式。

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

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

Z
zhou-liting125 已提交
695
**示例:**
L
laosan_ted 已提交
696

Z
zhou-liting125 已提交
697 698
  ```ts
  // xxx.ets
L
lixiang 已提交
699 700
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
701
  @Entry
L
update  
laosan_ted 已提交
702 703
  @Component
  struct WebComponent {
L
lixiang 已提交
704
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
705
    @State mode: CacheMode = CacheMode.None
L
update  
laosan_ted 已提交
706 707
    build() {
      Column() {
708 709
        Web({ src: 'www.example.com', controller: this.controller })
          .cacheMode(this.mode)
L
update  
laosan_ted 已提交
710 711 712 713 714
      }
    }
  }
  ```

L
laosan_ted 已提交
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
### 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 已提交
747
### textZoomRatio<sup>9+</sup>
Z
zhou-liting125 已提交
748

L
laosan_ted 已提交
749
textZoomRatio(textZoomRatio: number)
Z
zhou-liting125 已提交
750 751 752

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

Z
zhou-liting125 已提交
753
**参数:**
L
laosan_ted 已提交
754

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

Z
zhou-liting125 已提交
759
**示例:**
L
laosan_ted 已提交
760

Z
zhou-liting125 已提交
761 762
  ```ts
  // xxx.ets
L
lixiang 已提交
763 764
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
765
  @Entry
L
update  
laosan_ted 已提交
766 767
  @Component
  struct WebComponent {
L
lixiang 已提交
768
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
769
    @State atio: number = 150
L
update  
laosan_ted 已提交
770 771
    build() {
      Column() {
772 773
        Web({ src: 'www.example.com', controller: this.controller })
          .textZoomRatio(this.atio)
L
update  
laosan_ted 已提交
774 775 776 777 778
      }
    }
  }
  ```

L
laosan_ted 已提交
779 780 781 782 783 784 785 786
### initialScale<sup>9+</sup>

initialScale(percent: number)

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

**参数:**

H
HelloCrease 已提交
787 788 789
| 参数名     | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------- | ------ | ---- | ---- | --------------- |
| percent | number | 是    | 100  | 要设置的整体页面的缩放百分比。 |
L
laosan_ted 已提交
790 791 792 793 794

**示例:**

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

L
laosan_ted 已提交
797 798 799
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
800
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
801 802 803 804 805 806 807 808 809 810
    @State percent: number = 100
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .initialScale(this.percent)
      }
    }
  }
  ```

Z
zhou-liting125 已提交
811 812 813 814 815 816
### userAgent

userAgent(userAgent: string)

设置用户代理。

Z
zhou-liting125 已提交
817
**参数:**
L
laosan_ted 已提交
818

819 820 821
| 参数名       | 参数类型   | 必填   | 默认值  | 参数描述      |
| --------- | ------ | ---- | ---- | --------- |
| userAgent | string | 是    | -    | 要设置的用户代理。 |
Z
zengyawen 已提交
822

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

Z
zhou-liting125 已提交
825 826
  ```ts
  // xxx.ets
L
lixiang 已提交
827 828
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
829
  @Entry
L
update  
laosan_ted 已提交
830 831
  @Component
  struct WebComponent {
L
lixiang 已提交
832
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
833
    @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 已提交
834 835
    build() {
      Column() {
836 837
        Web({ src: 'www.example.com', controller: this.controller })
          .userAgent(this.userAgent)
L
update  
laosan_ted 已提交
838 839 840 841 842
      }
    }
  }
  ```

C
chensi10 已提交
843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
### blockNetwork<sup>9+</sup>

blockNetwork(block: boolean)

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

**参数:**

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

**示例:**

  ```ts
  // xxx.ets
C
chensi10 已提交
859
  import web_webview from '@ohos.web.webview'
C
chensi10 已提交
860 861 862
  @Entry
  @Component
  struct WebComponent {
C
chensi10 已提交
863
    controller: web_webview.WebviewController = new web_webview.WebviewController()
C
chensi10 已提交
864 865 866 867
    @State block: boolean = true
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
C
chensi10 已提交
868
          .blockNetwork(this.block)
C
chensi10 已提交
869 870 871 872 873 874 875 876 877
      }
    }
  }
  ```

### defaultFixedFontSize<sup>9+</sup>

defaultFixedFontSize(size: number)

878
设置网页的默认等宽字体大小。
C
chensi10 已提交
879 880 881 882 883

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                     |
| ------ | -------- | ---- | ------ | ---------------------------- |
884
| size   | number   | 是   | 13     | 设置网页的默认等宽字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
885 886 887 888 889 890 891 892 893 894

**示例:**

  ```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 = 16
C
chensi10 已提交
896 897 898
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
899
          .defaultFixedFontSize(this.fontSize)
C
chensi10 已提交
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
      }
    }
  }
  ```

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

defaultFontSize(size: number)

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

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
915
| size   | number   | 是   | 16     | 设置网页的默认字体大小,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
916 917 918 919 920 921 922 923 924 925

**示例:**

  ```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
C
chensi10 已提交
927 928 929
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
930
          .defaultFontSize(this.fontSize)
C
chensi10 已提交
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
      }
    }
  }
  ```

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

minFontSize(size: number)

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

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值 | 参数描述                 |
| ------ | -------- | ---- | ------ | ------------------------ |
946
| size   | number   | 是   | 8      | 设置网页字体大小最小值,单位px。输入值的范围为-2^31到2^31-1,实际渲染时超过72的值按照72进行渲染,低于1的值按照1进行渲染。  |
C
chensi10 已提交
947 948 949 950 951 952 953 954 955 956

**示例:**

  ```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
C
chensi10 已提交
958 959 960
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
961
          .minFontSize(this.fontSize)
C
chensi10 已提交
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
### 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 已提交
988
    @State fontSize: number = 13
989 990 991
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
992
          .minLogicalFontSize(this.fontSize)
993 994 995 996 997
      }
    }
  }
  ```

C
chensi10 已提交
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 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
### 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 已提交
1184 1185 1186 1187
### darkMode<sup>9+</sup>

darkMode(mode: WebDarkMode)

1188
设置Web深色模式,默认关闭。当深色模式开启时,Web将启用媒体查询prefers-color-scheme中网页所定义的深色样式,若网页未定义深色样式,则保持原状。如需开启强制深色模式,建议配合[forceDarkAccess](#forcedarkaccess9)使用。
Y
yuhaoge 已提交
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 1218 1219 1220 1221 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

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ----------- | ---- | --------------- | ------------------ |
|  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)
      }
    }
  }
  ```

L
lixiang 已提交
1248
### tableData<sup>(deprecated)</sup>
1249 1250 1251 1252 1253

tableData(tableData: boolean)

设置是否应保存表单数据。该接口为空接口。

L
lixiang 已提交
1254 1255 1256 1257 1258
> **说明:**
>
> 从API version 10开始废弃,并且不再提供新的接口作为替代。

### wideViewModeAccess<sup>(deprecated)</sup>
1259 1260 1261 1262 1263

wideViewModeAccess(wideViewModeAccess: boolean)

设置web是否支持html中meta标签的viewport属性。该接口为空接口。

L
lixiang 已提交
1264 1265 1266 1267
> **说明:**
>
> 从API version 10开始废弃,并且不再提供新的接口作为替代。

1268 1269 1270 1271
### pinchSmooth<sup>9+</sup>

pinchSmooth(isEnabled: boolean)

L
lixiang 已提交
1272
设置网页是否开启捏合流畅模式,默认不开启。
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297

**参数:**

| 参数名    | 参数类型 | 必填 | 默认值 | 参数描述                   |
| --------- | -------- | ---- | ------ | -------------------------- |
| 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)
    }
  }
}
  ```

1298
### allowWindowOpenMethod<sup>10+</sup>
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327

allowWindowOpenMethod(flag: boolean)

设置网页是否可以通过JavaScript自动打开新窗口。

该属性为true时,可通过JavaScript自动打开新窗口。该属性为false时,用户行为仍可通过JavaScript自动打开新窗口,但非用户行为不能通过JavaScript自动打开新窗口。此处的用户行为是指用户在5秒内请求打开新窗口(window.open)。

该属性仅在[javaScriptAccess](#javascriptaccess)开启时生效。

该属性在[multiWindowAccess](#multiwindowaccess9)开启时打开新窗口,关闭时打开本地窗口。

该属性的默认值与系统属性persist.web.allowWindowOpenMethod.enabled 保持一致,如果未设置系统属性则默认值为false。

检查系统配置项persist.web.allowWindowOpenMethod.enabled 是否开启。

通过`hdc shell param get persist.web.allowWindowOpenMethod.enabled` 查看,若配置项为0或不存在,
可通过命令`hdc shell param set persist.web.allowWindowOpenMethod.enabled 1` 开启配置。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ------- | ---- | ----- | ------------------ |
| flag | boolean | 是   | 默认值与系统参数关联,当系统参数persist.web.allowWindowOpenMethod.enabled为true时,默认值为true, 否则为false  | 网页是否可以通过JavaScript自动打开窗口。 |

**示例:**

  ```ts
  // xxx.ets
  import web_webview from '@ohos.web.webview'
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
  //在同一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()
          })
        }
    }
  }

1346 1347 1348 1349
  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1350
    dialogController: CustomDialogController = null
1351 1352 1353
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
          .javaScriptAccess(true)
          //需要使能multiWindowAccess
          .multiWindowAccess(true)
          .allowWindowOpenMethod(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)
          })
1372 1373 1374 1375 1376
      }
    }
  }
  ```

Y
yuhaoge 已提交
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
### mediaOptions<sup>10+</sup>

mediaOptions(options: WebMediaOptions)

设置Web媒体播放的策略,其中包括:Web中的音频在重新获焦后能够自动续播的有效期、应用内多个Web实例的音频是否独占。

> **说明:**
>
> - 同一Web实例中的多个音频均视为同一音频。
> - 该媒体播放策略将同时管控有声视频。
> - 属性参数更新后需重新播放音频方可生效。
> - 建议为所有Web组件设置相同的audioExclusive值。

**参数:**

| 参数名 | 参数类型 | 必填 | 默认值  | 参数描述                       |
| ------ | ----------- | ---- | --------------- | ------------------ |
| options | [WebMediaOptions](#webmediaoptions10) | 是   | {resumeInterval: 0, audioExclusive: true} | 设置Web的媒体策略。其中,resumeInterval的默认值为0表示不自动续播。 |

**示例:**

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

Z
zengyawen 已提交
1415 1416
## 事件

L
liwenzhen 已提交
1417
不支持通用事件。
Z
zengyawen 已提交
1418

L
update  
laosan_ted 已提交
1419 1420 1421 1422 1423 1424
### onAlert

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

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

Z
zhou-liting125 已提交
1425
**参数:**
L
laosan_ted 已提交
1426

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

Z
zhou-liting125 已提交
1433
**返回值:**
L
laosan_ted 已提交
1434

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

Z
zhou-liting125 已提交
1439
**示例:**
L
laosan_ted 已提交
1440

Z
zhou-liting125 已提交
1441 1442
  ```ts
  // xxx.ets
L
lixiang 已提交
1443 1444
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1445
  @Entry
L
update  
laosan_ted 已提交
1446 1447
  @Component
  struct WebComponent {
L
lixiang 已提交
1448
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
update  
laosan_ted 已提交
1449 1450
    build() {
      Column() {
1451
        Web({ src: $rawfile("index.html"), controller: this.controller })
L
laosan_ted 已提交
1452
          .onAlert((event) => {
1453 1454
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1455
            AlertDialog.show({
L
laosan_ted 已提交
1456
              title: 'onAlert',
L
laosan_ted 已提交
1457
              message: 'text',
L
laosan_ted 已提交
1458 1459 1460 1461 1462 1463 1464 1465
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1466 1467 1468 1469 1470 1471 1472 1473
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1474
            return true
L
update  
laosan_ted 已提交
1475 1476 1477 1478 1479 1480
          })
      }
    }
  }
  ```

1481 1482 1483
  加载的html文件。
  ```html
  <!--index.html-->
1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
  <!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 已提交
1501 1502 1503 1504
### onBeforeUnload

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

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

Z
zhou-liting125 已提交
1507
**参数:**
L
laosan_ted 已提交
1508

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

Z
zhou-liting125 已提交
1515
**返回值:**
L
laosan_ted 已提交
1516

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

Z
zhou-liting125 已提交
1521
**示例:**
L
laosan_ted 已提交
1522

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

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

L
update  
laosan_ted 已提交
1532 1533
    build() {
      Column() {
1534
        Web({ src: $rawfile("index.html"), controller: this.controller })
L
laosan_ted 已提交
1535
          .onBeforeUnload((event) => {
Y
yamila 已提交
1536 1537
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
            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 已提交
1557
            return true
L
laosan_ted 已提交
1558 1559
          })
      }
L
update  
laosan_ted 已提交
1560 1561 1562 1563
    }
  }
  ```

1564 1565 1566
  加载的html文件。
  ```html
  <!--index.html-->
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583
  <!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 已提交
1584 1585 1586 1587 1588 1589
### onConfirm

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

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

Z
zhou-liting125 已提交
1590
**参数:**
L
laosan_ted 已提交
1591

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

Z
zhou-liting125 已提交
1598
**返回值:**
L
laosan_ted 已提交
1599

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

Z
zhou-liting125 已提交
1604
**示例:**
L
laosan_ted 已提交
1605

Z
zhou-liting125 已提交
1606 1607
  ```ts
  // xxx.ets
L
lixiang 已提交
1608 1609
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1610
  @Entry
L
update  
laosan_ted 已提交
1611 1612
  @Component
  struct WebComponent {
L
lixiang 已提交
1613
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1614

L
update  
laosan_ted 已提交
1615 1616
    build() {
      Column() {
1617
        Web({ src: $rawfile("index.html"), controller: this.controller })
L
laosan_ted 已提交
1618
          .onConfirm((event) => {
Y
yamila 已提交
1619 1620
            console.log("event.url:" + event.url)
            console.log("event.message:" + event.message)
L
laosan_ted 已提交
1621
            AlertDialog.show({
L
laosan_ted 已提交
1622
              title: 'onConfirm',
L
laosan_ted 已提交
1623
              message: 'text',
L
laosan_ted 已提交
1624 1625 1626 1627 1628 1629 1630 1631
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
L
laosan_ted 已提交
1632 1633 1634 1635 1636 1637 1638 1639
                action: () => {
                  event.result.handleConfirm()
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1640
            return true
L
update  
laosan_ted 已提交
1641
          })
L
laosan_ted 已提交
1642
      }
L
update  
laosan_ted 已提交
1643 1644 1645 1646
    }
  }
  ```

1647 1648 1649
  加载的html文件。
  ```html
  <!--index.html-->
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
  <!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 已提交
1676 1677 1678 1679
### onPrompt<sup>9+</sup>

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

Z
zhou-liting125 已提交
1680
**参数:**
L
laosan_ted 已提交
1681

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

Z
zhou-liting125 已提交
1688
**返回值:**
L
laosan_ted 已提交
1689

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

Z
zhou-liting125 已提交
1694
**示例:**
L
laosan_ted 已提交
1695

Z
zhou-liting125 已提交
1696 1697
  ```ts
  // xxx.ets
L
lixiang 已提交
1698 1699
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1700
  @Entry
L
update  
laosan_ted 已提交
1701 1702
  @Component
  struct WebComponent {
L
lixiang 已提交
1703
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1704

L
update  
laosan_ted 已提交
1705 1706
    build() {
      Column() {
1707
        Web({ src: $rawfile("index.html"), controller: this.controller })
L
laosan_ted 已提交
1708
          .onPrompt((event) => {
Y
yamila 已提交
1709 1710 1711
            console.log("url:" + event.url)
            console.log("message:" + event.message)
            console.log("value:" + event.value)
L
laosan_ted 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
            AlertDialog.show({
              title: 'onPrompt',
              message: 'text',
              primaryButton: {
                value: 'cancel',
                action: () => {
                  event.result.handleCancel()
                }
              },
              secondaryButton: {
                value: 'ok',
                action: () => {
1724
                  event.result.handlePromptConfirm(event.value)
L
laosan_ted 已提交
1725 1726 1727 1728 1729 1730
                }
              },
              cancel: () => {
                event.result.handleCancel()
              }
            })
Y
yamila 已提交
1731
            return true
L
laosan_ted 已提交
1732 1733
          })
      }
L
update  
laosan_ted 已提交
1734 1735 1736 1737
    }
  }
  ```

1738 1739 1740
  加载的html文件。
  ```html
  <!--index.html-->
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
  <!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 已提交
1763 1764 1765 1766 1767 1768
### onConsole

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

通知宿主应用JavaScript console消息。

Z
zhou-liting125 已提交
1769
**参数:**
L
laosan_ted 已提交
1770

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

Z
zhou-liting125 已提交
1775
**返回值:**
L
laosan_ted 已提交
1776

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

Z
zhou-liting125 已提交
1781
**示例:**
L
laosan_ted 已提交
1782

Z
zhou-liting125 已提交
1783 1784
  ```ts
  // xxx.ets
L
lixiang 已提交
1785 1786
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1787
  @Entry
L
update  
laosan_ted 已提交
1788 1789
  @Component
  struct WebComponent {
L
lixiang 已提交
1790
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1791

L
update  
laosan_ted 已提交
1792 1793
    build() {
      Column() {
Z
zhou-liting125 已提交
1794
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1795
          .onConsole((event) => {
Y
yamila 已提交
1796 1797 1798 1799 1800
            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 已提交
1801 1802
          })
      }
L
update  
laosan_ted 已提交
1803 1804 1805 1806 1807 1808 1809 1810
    }
  }
  ```

### onDownloadStart

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

L
lixiang 已提交
1811 1812
通知主应用开始下载一个文件。

Z
zhou-liting125 已提交
1813
**参数:**
L
laosan_ted 已提交
1814

1815 1816 1817
| 参数名                | 参数类型          | 参数描述                                |
| ------------------ | ------------- | ----------------------------------- |
| url                | string        | 文件下载的URL。                           |
1818
| userAgent          | string        | 用于下载的用户代理。                           |
1819 1820 1821
| contentDisposition | string        | 服务器返回的 Content-Disposition响应头,可能为空。 |
| mimetype           | string        | 服务器返回内容媒体类型(MIME)信息。                |
| contentLength      | contentLength | 服务器返回文件的长度。                         |
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
          .onDownloadStart((event) => {
Y
yamila 已提交
1838 1839 1840 1841 1842
            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 已提交
1843 1844
          })
      }
L
update  
laosan_ted 已提交
1845 1846 1847 1848 1849 1850 1851 1852
    }
  }
  ```

### onErrorReceive

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

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

Z
zhou-liting125 已提交
1855
**参数:**
L
laosan_ted 已提交
1856

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

Z
zhou-liting125 已提交
1862
**示例:**
L
laosan_ted 已提交
1863

Z
zhou-liting125 已提交
1864 1865
  ```ts
  // xxx.ets
L
lixiang 已提交
1866 1867
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1868
  @Entry
L
update  
laosan_ted 已提交
1869 1870
  @Component
  struct WebComponent {
L
lixiang 已提交
1871
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1872

L
update  
laosan_ted 已提交
1873 1874
    build() {
      Column() {
Z
zhou-liting125 已提交
1875
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1876
          .onErrorReceive((event) => {
Y
yamila 已提交
1877 1878 1879 1880 1881 1882 1883 1884 1885
            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 已提交
1886
            for (let i of result) {
Y
yamila 已提交
1887
              console.log('The request header key is : ' + i.headerKey + ', value is : ' + i.headerValue)
L
laosan_ted 已提交
1888 1889 1890
            }
          })
      }
L
update  
laosan_ted 已提交
1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
    }
  }
  ```

### onHttpErrorReceive

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

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

Z
zhou-liting125 已提交
1901
**参数:**
L
laosan_ted 已提交
1902

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

Z
zhou-liting125 已提交
1908
**示例:**
L
laosan_ted 已提交
1909

Z
zhou-liting125 已提交
1910 1911
  ```ts
  // xxx.ets
L
lixiang 已提交
1912 1913
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
1914
  @Entry
L
update  
laosan_ted 已提交
1915 1916
  @Component
  struct WebComponent {
L
lixiang 已提交
1917
    controller: web_webview.WebviewController = new web_webview.WebviewController()
1918

L
update  
laosan_ted 已提交
1919 1920
    build() {
      Column() {
Z
zhou-liting125 已提交
1921
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1922
          .onHttpErrorReceive((event) => {
Y
yamila 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
            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 已提交
1934
            for (let i of result) {
Y
yamila 已提交
1935
              console.log('The request header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1936
            }
Y
yamila 已提交
1937 1938
            let resph = event.response.getResponseHeader()
            console.log('The response header result size is ' + resph.length)
L
laosan_ted 已提交
1939
            for (let i of resph) {
Y
yamila 已提交
1940
              console.log('The response header key is : ' + i.headerKey + ' , value is : ' + i.headerValue)
L
laosan_ted 已提交
1941 1942 1943
            }
          })
      }
L
update  
laosan_ted 已提交
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953
    }
  }
  ```

### onPageBegin

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

网页开始加载时触发该回调,且只在主frame触发,iframe或者frameset的内容加载时不会触发此回调。

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

1956 1957 1958
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1959

Z
zhou-liting125 已提交
1960
**示例:**
L
laosan_ted 已提交
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() {
Z
zhou-liting125 已提交
1973
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
1974
          .onPageBegin((event) => {
Y
yamila 已提交
1975
            console.log('url:' + event.url)
L
laosan_ted 已提交
1976 1977
          })
      }
L
update  
laosan_ted 已提交
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987
    }
  }
  ```

### onPageEnd

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

网页加载完成时触发该回调,且只在主frame触发。

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

1990 1991 1992
| 参数名  | 参数类型   | 参数描述      |
| ---- | ------ | --------- |
| url  | string | 页面的URL地址。 |
L
update  
laosan_ted 已提交
1993

Z
zhou-liting125 已提交
1994
**示例:**
L
laosan_ted 已提交
1995

Z
zhou-liting125 已提交
1996 1997
  ```ts
  // xxx.ets
L
lixiang 已提交
1998 1999
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2000
  @Entry
L
update  
laosan_ted 已提交
2001 2002
  @Component
  struct WebComponent {
L
lixiang 已提交
2003
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2004

L
update  
laosan_ted 已提交
2005 2006
    build() {
      Column() {
Z
zhou-liting125 已提交
2007
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2008
          .onPageEnd((event) => {
Y
yamila 已提交
2009
            console.log('url:' + event.url)
L
laosan_ted 已提交
2010 2011
          })
      }
L
update  
laosan_ted 已提交
2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
    }
  }
  ```

### onProgressChange

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

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

Z
zhou-liting125 已提交
2022
**参数:**
L
laosan_ted 已提交
2023

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

L
laosan_ted 已提交
2028 2029
**示例:**

Z
zhou-liting125 已提交
2030 2031
  ```ts
  // xxx.ets
L
lixiang 已提交
2032 2033
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2034
  @Entry
L
update  
laosan_ted 已提交
2035 2036
  @Component
  struct WebComponent {
L
lixiang 已提交
2037
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2038

L
update  
laosan_ted 已提交
2039 2040
    build() {
      Column() {
Z
zhou-liting125 已提交
2041
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2042 2043 2044 2045
          .onProgressChange((event) => {
            console.log('newProgress:' + event.newProgress)
          })
      }
L
update  
laosan_ted 已提交
2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
    }
  }
  ```

### onTitleReceive

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

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

Z
zhou-liting125 已提交
2056
**参数:**
L
laosan_ted 已提交
2057

2058 2059 2060
| 参数名   | 参数类型   | 参数描述          |
| ----- | ------ | ------------- |
| title | string | document标题内容。 |
L
update  
laosan_ted 已提交
2061

L
laosan_ted 已提交
2062 2063
**示例:**

Z
zhou-liting125 已提交
2064 2065
  ```ts
  // xxx.ets
L
lixiang 已提交
2066 2067
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2068
  @Entry
L
update  
laosan_ted 已提交
2069 2070
  @Component
  struct WebComponent {
L
lixiang 已提交
2071
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2072

L
update  
laosan_ted 已提交
2073 2074
    build() {
      Column() {
Z
zhou-liting125 已提交
2075
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2076 2077 2078 2079
          .onTitleReceive((event) => {
            console.log('title:' + event.title)
          })
      }
L
update  
laosan_ted 已提交
2080 2081 2082 2083 2084 2085 2086 2087 2088 2089
    }
  }
  ```

### onRefreshAccessedHistory

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

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

Z
zhou-liting125 已提交
2090
**参数:**
L
laosan_ted 已提交
2091

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

L
laosan_ted 已提交
2097 2098
**示例:**

Z
zhou-liting125 已提交
2099 2100
  ```ts
  // xxx.ets
L
lixiang 已提交
2101 2102
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2103
  @Entry
L
update  
laosan_ted 已提交
2104 2105
  @Component
  struct WebComponent {
L
lixiang 已提交
2106
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2107

L
update  
laosan_ted 已提交
2108 2109
    build() {
      Column() {
Z
zhou-liting125 已提交
2110
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2111
          .onRefreshAccessedHistory((event) => {
Y
yamila 已提交
2112
            console.log('url:' + event.url + ' isReload:' + event.isRefreshed)
L
laosan_ted 已提交
2113 2114
          })
      }
L
update  
laosan_ted 已提交
2115 2116 2117 2118
    }
  }
  ```

2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138
### onSslErrorReceive<sup>(deprecated)</sup>

onSslErrorReceive(callback: (event?: { handler: Function, error: object }) => void)

通知用户加载资源时发生SSL错误。

> **说明:**
>
> 从API version 8开始支持,从API version 9开始废弃。建议使用[onSslErrorEventReceive<sup>9+</sup>](#onsslerroreventreceive9)替代。

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

onFileSelectorShow(callback: (event?: { callback: Function, fileSelector: object }) => void)

调用此函数以处理具有“文件”输入类型的HTML表单,以响应用户按下的“选择文件”按钮。

> **说明:**
>
> 从API version 8开始支持,从API version 9开始废弃。建议使用[onShowFileSelector<sup>9+</sup>](#onshowfileselector9)替代。

L
laosan_ted 已提交
2139
### onRenderExited<sup>9+</sup>
L
update  
laosan_ted 已提交
2140 2141 2142 2143 2144

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

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

Z
zhou-liting125 已提交
2145
**参数:**
L
laosan_ted 已提交
2146

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

L
laosan_ted 已提交
2151 2152
**示例:**

Z
zhou-liting125 已提交
2153 2154
  ```ts
  // xxx.ets
L
lixiang 已提交
2155 2156
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2157
  @Entry
L
update  
laosan_ted 已提交
2158 2159
  @Component
  struct WebComponent {
L
lixiang 已提交
2160
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2161

L
update  
laosan_ted 已提交
2162 2163
    build() {
      Column() {
L
laosan_ted 已提交
2164 2165
        Web({ src: 'chrome://crash/', controller: this.controller })
          .onRenderExited((event) => {
Y
yamila 已提交
2166
            console.log('reason:' + event.renderExitReason)
L
laosan_ted 已提交
2167 2168
          })
      }
L
update  
laosan_ted 已提交
2169 2170 2171 2172 2173 2174
    }
  }
  ```

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

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

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

Z
zhou-liting125 已提交
2179
**参数:**
L
laosan_ted 已提交
2180

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

L
laosan_ted 已提交
2186 2187
**返回值:**

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

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

Z
zhou-liting125 已提交
2194 2195
  ```ts
  // xxx.ets
2196 2197
  import web_webview from '@ohos.web.webview';
  import picker from '@ohos.file.picker';
L
lixiang 已提交
2198

Z
zhou-liting125 已提交
2199
  @Entry
L
update  
laosan_ted 已提交
2200 2201
  @Component
  struct WebComponent {
L
lixiang 已提交
2202
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2203

L
update  
laosan_ted 已提交
2204 2205
    build() {
      Column() {
2206
        Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
2207
          .onShowFileSelector((event) => {
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
            console.log('MyFileUploader onShowFileSelector invoked')
            const documentSelectOptions = new picker.DocumentSelectOptions();
            let uri = null;
            const documentViewPicker = new picker.DocumentViewPicker();
            documentViewPicker.select(documentSelectOptions).then((documentSelectResult) => {
              uri = documentSelectResult[0];
              console.info('documentViewPicker.select to file succeed and uri is:' + uri);
              event.result.handleFileList([uri]);
            }).catch((err) => {
              console.error(`Invoke documentViewPicker.select failed, code is ${err.code}, message is ${err.message}`);
L
laosan_ted 已提交
2218
            })
Y
yamila 已提交
2219
            return true
L
update  
laosan_ted 已提交
2220
          })
L
laosan_ted 已提交
2221
      }
L
update  
laosan_ted 已提交
2222 2223 2224
    }
  }
  ```
2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237
  
  加载的html文件。
  ```html
  <!DOCTYPE html>
  <html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
  </head>
  <body>
    <form id="upload-form" enctype="multipart/form-data">
      <input type="file" id="upload" name="upload"/>
  </body>
  ```
L
update  
laosan_ted 已提交
2238

L
laosan_ted 已提交
2239 2240 2241 2242 2243 2244 2245 2246
### onResourceLoad<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2247 2248 2249
| 参数名  | 参数类型   | 参数描述           |
| ---- | ------ | -------------- |
| url  | string | 所加载的资源文件url信息。 |
L
laosan_ted 已提交
2250 2251 2252 2253 2254

**示例:**

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

L
laosan_ted 已提交
2257 2258 2259
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2260
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2261

L
laosan_ted 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
    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 已提交
2281 2282
| 参数名      | 参数类型   | 参数描述         |
| -------- | ------ | ------------ |
L
laosan_ted 已提交
2283 2284 2285 2286 2287 2288 2289
| oldScale | number | 变化前的显示比例百分比。 |
| newScale | number | 变化后的显示比例百分比。 |

**示例:**

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

L
laosan_ted 已提交
2292 2293 2294
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2295
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2296

L
laosan_ted 已提交
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onScaleChange((event) => {
            console.log('onScaleChange changed from ' + event.oldScale + ' to ' + event.newScale)
          })
      }
    }
  }
  ```

2308
### onUrlLoadIntercept<sup>(deprecated)</sup>
L
update  
laosan_ted 已提交
2309 2310 2311

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

L
1111  
lixiang 已提交
2312
当Web组件加载url之前触发该回调,用于判断是否阻止此次访问。默认允许加载。
L
lixiang 已提交
2313
从API version 10开始不再维护,建议使用[onLoadIntercept<sup>10+</sup>](#onloadintercept10)代替。
L
update  
laosan_ted 已提交
2314

Z
zhou-liting125 已提交
2315
**参数:**
L
laosan_ted 已提交
2316

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

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

2323 2324 2325
| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |
L
update  
laosan_ted 已提交
2326

L
laosan_ted 已提交
2327 2328
**示例:**

Z
zhou-liting125 已提交
2329 2330
  ```ts
  // xxx.ets
L
lixiang 已提交
2331 2332
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2333
  @Entry
L
update  
laosan_ted 已提交
2334 2335
  @Component
  struct WebComponent {
L
lixiang 已提交
2336
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2337

L
update  
laosan_ted 已提交
2338 2339
    build() {
      Column() {
Z
zhou-liting125 已提交
2340
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2341 2342
          .onUrlLoadIntercept((event) => {
            console.log('onUrlLoadIntercept ' + event.data.toString())
Y
yamila 已提交
2343
            return true
L
laosan_ted 已提交
2344 2345
          })
      }
L
update  
laosan_ted 已提交
2346 2347 2348 2349 2350 2351
    }
  }
  ```

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

L
laosan_ted 已提交
2352
onInterceptRequest(callback: (event?: { request: WebResourceRequest}) => WebResourceResponse)
L
update  
laosan_ted 已提交
2353 2354 2355

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

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

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

Z
zhou-liting125 已提交
2362
**返回值:**
L
laosan_ted 已提交
2363

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

L
laosan_ted 已提交
2368 2369
**示例:**

Z
zhou-liting125 已提交
2370 2371
  ```ts
  // xxx.ets
L
lixiang 已提交
2372 2373
  import web_webview from '@ohos.web.webview'

Z
zhou-liting125 已提交
2374
  @Entry
L
update  
laosan_ted 已提交
2375 2376
  @Component
  struct WebComponent {
L
lixiang 已提交
2377
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2378 2379
    responseweb: WebResourceResponse = new WebResourceResponse()
    heads:Header[] = new Array()
L
laosan_ted 已提交
2380 2381 2382 2383 2384 2385 2386 2387 2388
    @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 已提交
2389 2390
    build() {
      Column() {
2391
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
2392
          .onInterceptRequest((event) => {
Y
yamila 已提交
2393
            console.log('url:' + event.request.getRequestUrl())
L
laosan_ted 已提交
2394 2395 2396 2397 2398 2399 2400 2401
            var head1:Header = {
              headerKey:"Connection",
              headerValue:"keep-alive"
            }
            var head2:Header = {
              headerKey:"Cache-Control",
              headerValue:"no-cache"
            }
Y
yamila 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410
            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 已提交
2411
          })
L
update  
laosan_ted 已提交
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422
      }
    }
  }
  ```

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

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

通知收到http auth认证请求。

Z
zhou-liting125 已提交
2423
**参数:**
L
laosan_ted 已提交
2424

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

Z
zhou-liting125 已提交
2431
**返回值:**
L
laosan_ted 已提交
2432

2433 2434 2435
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 返回false表示此次认证失败,否则成功。 |
L
update  
laosan_ted 已提交
2436

L
laosan_ted 已提交
2437 2438
**示例:**

Z
zhou-liting125 已提交
2439 2440
  ```ts
  // xxx.ets
L
laosan_ted 已提交
2441
  import web_webview from '@ohos.web.webview'
Z
zhou-liting125 已提交
2442
  @Entry
L
update  
laosan_ted 已提交
2443 2444
  @Component
  struct WebComponent {
L
lixiang 已提交
2445
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2446
    httpAuth: boolean = false
2447

L
update  
laosan_ted 已提交
2448 2449
    build() {
      Column() {
2450 2451 2452
        Web({ src: 'www.example.com', controller: this.controller })
          .onHttpAuthRequest((event) => {
            AlertDialog.show({
L
laosan_ted 已提交
2453
              title: 'onHttpAuthRequest',
2454
              message: 'text',
L
laosan_ted 已提交
2455 2456 2457
              primaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2458
                  event.handler.cancel()
L
laosan_ted 已提交
2459 2460 2461 2462
                }
              },
              secondaryButton: {
                value: 'ok',
2463
                action: () => {
Y
yamila 已提交
2464
                  this.httpAuth = event.handler.isHttpAuthInfoSaved()
2465
                  if (this.httpAuth == false) {
L
laosan_ted 已提交
2466
                    web_webview.WebDataBase.saveHttpAuthCredentials(
2467 2468 2469 2470 2471
                      event.host,
                      event.realm,
                      "2222",
                      "2222"
                    )
Y
yamila 已提交
2472
                    event.handler.cancel()
2473
                  }
L
update  
laosan_ted 已提交
2474
                }
2475 2476
              },
              cancel: () => {
Y
yamila 已提交
2477
                event.handler.cancel()
L
update  
laosan_ted 已提交
2478
              }
2479
            })
Y
yamila 已提交
2480
            return true
L
update  
laosan_ted 已提交
2481
          })
Y
yu-shihao4 已提交
2482
      }
L
update  
laosan_ted 已提交
2483 2484 2485
    }
  }
  ```
2486 2487
### onSslErrorEventReceive<sup>9+</sup>

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

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

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

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

**示例:**
2500 2501 2502

  ```ts
  // xxx.ets
I
bugfix  
i-am-a-little-bird 已提交
2503
  import web_webview from '@ohos.web.webview'
2504 2505 2506
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2507
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2508

2509 2510 2511
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
I
bugfix  
i-am-a-little-bird 已提交
2512
          .onSslErrorEventReceive((event) => {
2513
            AlertDialog.show({
I
bugfix  
i-am-a-little-bird 已提交
2514
              title: 'onSslErrorEventReceive',
2515
              message: 'text',
I
bugfix  
i-am-a-little-bird 已提交
2516 2517
              primaryButton: {
                value: 'confirm',
2518
                action: () => {
Y
yamila 已提交
2519
                  event.handler.handleConfirm()
I
bugfix  
i-am-a-little-bird 已提交
2520 2521 2522 2523 2524
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2525
                  event.handler.handleCancel()
2526 2527 2528
                }
              },
              cancel: () => {
Y
yamila 已提交
2529
                event.handler.handleCancel()
2530 2531 2532 2533 2534 2535 2536 2537
              }
            })
          })
      }
    }
  }
  ```

I
i-am-a-little-bird 已提交
2538 2539 2540 2541
### 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 已提交
2542
通知用户收到SSL客户端证书请求事件。
I
i-am-a-little-bird 已提交
2543 2544 2545

**参数:**

H
HelloCrease 已提交
2546 2547 2548 2549 2550 2551 2552
| 参数名      | 参数类型                                     | 参数描述            |
| -------- | ---------------------------------------- | --------------- |
| handler  | [ClientAuthenticationHandler](#clientauthenticationhandler9) | 通知Web组件用户操作行为。  |
| host     | string                                   | 请求证书服务器的主机名。    |
| port     | number                                   | 请求证书服务器的端口号。    |
| keyTypes | Array<string>                            | 可接受的非对称秘钥类型。    |
| issuers  | Array<string>                            | 与私钥匹配的证书可接受颁发者。 |
I
i-am-a-little-bird 已提交
2553 2554 2555

  **示例:**
  ```ts
2556
  // xxx.ets API9
I
i-am-a-little-bird 已提交
2557 2558 2559 2560
  import web_webview from '@ohos.web.webview'
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2561
    controller: web_webview.WebviewController = new web_webview.WebviewController()
I
i-am-a-little-bird 已提交
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572

    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'onClientAuthenticationRequest',
              message: 'text',
              primaryButton: {
                value: 'confirm',
                action: () => {
Y
yamila 已提交
2573
                  event.handler.confirm("/system/etc/user.pk8", "/system/etc/chain-user.pem")
I
i-am-a-little-bird 已提交
2574 2575 2576 2577 2578
                }
              },
              secondaryButton: {
                value: 'cancel',
                action: () => {
Y
yamila 已提交
2579
                  event.handler.cancel()
I
i-am-a-little-bird 已提交
2580 2581 2582
                }
              },
              cancel: () => {
Y
yamila 已提交
2583
                event.handler.ignore()
I
i-am-a-little-bird 已提交
2584 2585 2586 2587 2588 2589 2590 2591
              }
            })
          })
      }
    }
  }
  ```

2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691
  ```ts
  // xxx.ets API10
  import web_webview from '@ohos.web.webview'
  import bundle from '@ohos.bundle'

  let uri = "";

  export default class CertManagerService {
    private static sInstance: CertManagerService;
    private authUri = "";

    public static getInstance(): CertManagerService {
      if (CertManagerService.sInstance == null) {
        CertManagerService.sInstance = new CertManagerService();
      }
      return CertManagerService.sInstance;
    }

    async grantAppPm(callback) {
      let message = '';
      //注:com.example.myapplication需要写实际应用名称
      let bundleInfo = await bundle.getBundleInfo("com.example.myapplication", bundle.BundleFlag.GET_BUNDLE_DEFAULT)
      let clientAppUid = bundleInfo.uid
      let appUid = clientAppUid.toString()

      //注:globalThis.AbilityContext需要在MainAbility.ts文件的onCreate函数里添加globalThis.AbilityContext = this.context
      await globalThis.AbilityContext.startAbilityForResult(
        {
          bundleName: "com.ohos.certmanager",
          abilityName: "MainAbility",
          uri: "requestAuthorize",
          parameters: {
            appUid: appUid, //传入申请应用的appUid
          }
        })
        .then((data) => {
          if (!data.resultCode) {
            this.authUri = data.want.parameters.authUri; //授权成功后获取返回的authUri
          }
        })
      message += "after grantAppPm authUri: " + this.authUri;
      uri = this.authUri;
      callback(message)
    }
  }

  @Entry
  @Component
  struct WebComponent {
    controller: web_webview.WebviewController = new web_webview.WebviewController();
    @State message: string = 'Hello World' //message主要是调试观察使用
    certManager = CertManagerService.getInstance();

    build() {
      Row() {
        Column() {
          Row() {
            //第一步:需要先进行授权,获取到uri
            Button('GrantApp')
              .onClick(() => {
                this.certManager.grantAppPm((data) => {
                  this.message = data;
                });
              })
            //第二步:授权后,双向认证会通过onClientAuthenticationRequest回调将uri传给web进行认证
            Button("ClientCertAuth")
              .onClick(() => {
                this.controller.loadUrl('https://www.example2.com'); //支持双向认证的服务器网站
              })
          }

          Web({ src: 'https://www.example1.com', controller: this.controller })
            .fileAccess(true)
            .javaScriptAccess(true)
            .domStorageAccess(true)
            .onlineImageAccess(true)

          .onClientAuthenticationRequest((event) => {
            AlertDialog.show({
              title: 'ClientAuth',
              message: 'Text',
              confirm: {
                value: 'Confirm',
                action: () => {
                  event.handler.confirm(uri);
                }
              },
              cancel: () => {
                event.handler.cancel();
              }
            })
          })
        }
      }
      .width('100%')
      .height('100%')
    }
  }
  ```

2692 2693 2694 2695 2696 2697 2698
### onPermissionRequest<sup>9+</sup>

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

通知收到获取权限请求。

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

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

L
laosan_ted 已提交
2704 2705
**示例:**

2706 2707
  ```ts
  // xxx.ets
L
lixiang 已提交
2708 2709
  import web_webview from '@ohos.web.webview'

2710 2711 2712
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2713
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2714 2715
    build() {
      Column() {
2716 2717 2718 2719 2720
        Web({ src: 'www.example.com', controller: this.controller })
          .onPermissionRequest((event) => {
            AlertDialog.show({
              title: 'title',
              message: 'text',
L
laosan_ted 已提交
2721 2722 2723
              primaryButton: {
                value: 'deny',
                action: () => {
Y
yamila 已提交
2724
                  event.request.deny()
L
laosan_ted 已提交
2725 2726 2727
                }
              },
              secondaryButton: {
2728 2729
                value: 'onConfirm',
                action: () => {
Y
yamila 已提交
2730
                  event.request.grant(event.request.getAccessibleResource())
2731 2732 2733
                }
              },
              cancel: () => {
Y
yamila 已提交
2734
                event.request.deny()
2735
              }
2736
            })
2737
          })
Y
yu-shihao4 已提交
2738
      }
2739 2740 2741
    }
  }
  ```
2742

2743 2744 2745 2746
### onContextMenuShow<sup>9+</sup>

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

I
i-am-a-little-bird 已提交
2747
长按特定元素(例如图片,链接)或鼠标右键,跳出菜单。
2748 2749

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

H
HelloCrease 已提交
2751 2752 2753 2754
| 参数名    | 参数类型                                     | 参数描述        |
| ------ | ---------------------------------------- | ----------- |
| param  | [WebContextMenuParam](#webcontextmenuparam9) | 菜单相关参数。     |
| result | [WebContextMenuResult](#webcontextmenuresult9) | 菜单相应事件传入内核。 |
2755

Y
yu-shihao4 已提交
2756 2757
**返回值:**

H
HelloCrease 已提交
2758 2759
| 类型      | 说明                       |
| ------- | ------------------------ |
Y
yu-shihao4 已提交
2760 2761
| boolean | 自定义菜单返回true,默认菜单返回false。 |

L
laosan_ted 已提交
2762
**示例:**
Y
yu-shihao4 已提交
2763

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

2768 2769 2770
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2771
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2772 2773
    build() {
      Column() {
2774
        Web({ src: 'www.example.com', controller: this.controller })
Y
yu-shihao4 已提交
2775
          .onContextMenuShow((event) => {
Y
yamila 已提交
2776 2777 2778
            console.info("x coord = " + event.param.x())
            console.info("link url = " + event.param.getLinkUrl())
            return true
2779 2780
        })
      }
2781 2782 2783
    }
  }
  ```
2784

L
laosan_ted 已提交
2785 2786 2787 2788 2789 2790 2791 2792
### onScroll<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2793 2794
| 参数名     | 参数类型   | 参数描述         |
| ------- | ------ | ------------ |
L
1111  
lixiang 已提交
2795 2796
| xOffset | number | 以网页最左端为基准,水平滚动条滚动所在位置。 |
| yOffset | number | 以网页最上端为基准,竖直滚动条滚动所在位置。 |
L
laosan_ted 已提交
2797 2798 2799 2800 2801

**示例:**

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

L
laosan_ted 已提交
2804 2805 2806
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2807
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2808 2809 2810 2811
    build() {
      Column() {
        Web({ src: 'www.example.com', controller: this.controller })
        .onScroll((event) => {
Y
yamila 已提交
2812 2813
            console.info("x = " + event.xOffset)
            console.info("y = " + event.yOffset)
L
laosan_ted 已提交
2814 2815 2816 2817 2818 2819
        })
      }
    }
  }
  ```

2820 2821 2822 2823
### onGeolocationShow

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

2824
通知用户收到地理位置信息获取请求。
2825 2826 2827

**参数:**

H
HelloCrease 已提交
2828 2829
| 参数名         | 参数类型                            | 参数描述           |
| ----------- | ------------------------------- | -------------- |
2830
| origin      | string                          | 指定源的字符串索引。     |
H
HelloCrease 已提交
2831
| geolocation | [JsGeolocation](#jsgeolocation) | 通知Web组件用户操作行为。 |
2832 2833

**示例:**
2834

2835 2836
  ```ts
  // xxx.ets
L
lixiang 已提交
2837 2838
  import web_webview from '@ohos.web.webview'

2839 2840 2841
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2842
    controller: web_webview.WebviewController = new web_webview.WebviewController()
2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853
    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 已提交
2854
                event.geolocation.invoke(event.origin, true, true)
2855 2856 2857
              }
            },
            cancel: () => {
Y
yamila 已提交
2858
              event.geolocation.invoke(event.origin, false, true)
2859 2860 2861 2862 2863 2864 2865 2866
            }
          })
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
2867 2868 2869 2870 2871 2872 2873 2874
### onGeolocationHide

onGeolocationHide(callback: () => void)

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

**参数:**

H
HelloCrease 已提交
2875 2876 2877
| 参数名      | 参数类型       | 参数描述                 |
| -------- | ---------- | -------------------- |
| callback | () => void | 地理位置信息获取请求已被取消的回调函数。 |
L
laosan_ted 已提交
2878 2879 2880 2881 2882

**示例:**

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

L
laosan_ted 已提交
2885 2886 2887
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2888
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .geolocationAccess(true)
        .onGeolocationHide(() => {
          console.log("onGeolocationHide...")
        })
      }
    }
  }
  ```

E
echoorchid 已提交
2901 2902 2903 2904 2905 2906 2907 2908
### onFullScreenEnter<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2909 2910 2911
| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| handler | [FullScreenExitHandler](#fullscreenexithandler9) | 用于退出全屏模式的函数句柄。 |
E
echoorchid 已提交
2912 2913 2914 2915 2916

**示例:**

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

E
echoorchid 已提交
2919 2920 2921
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2922
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2923
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2924 2925 2926 2927
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2928 2929
          console.log("onFullScreenEnter...")
          this.handler = event.handler
E
echoorchid 已提交
2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943
        })
      }
    }
  }
  ```

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

onFullScreenExit(callback: () => void)

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

**参数:**

H
HelloCrease 已提交
2944 2945 2946
| 参数名      | 参数类型       | 参数描述          |
| -------- | ---------- | ------------- |
| callback | () => void | 退出全屏模式时的回调函数。 |
E
echoorchid 已提交
2947 2948 2949 2950 2951

**示例:**

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

E
echoorchid 已提交
2954 2955 2956
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
2957
    controller: web_webview.WebviewController = new web_webview.WebviewController()
Y
yamila 已提交
2958
    handler: FullScreenExitHandler = null
E
echoorchid 已提交
2959 2960 2961 2962
    build() {
      Column() {
        Web({ src:'www.example.com', controller:this.controller })
        .onFullScreenExit(() => {
Y
yamila 已提交
2963 2964
          console.log("onFullScreenExit...")
          this.handler.exitFullScreen()
E
echoorchid 已提交
2965 2966
        })
        .onFullScreenEnter((event) => {
Y
yamila 已提交
2967
          this.handler = event.handler
E
echoorchid 已提交
2968 2969 2970 2971 2972 2973
        })
      }
    }
  }
  ```

X
xiongjun_gitee 已提交
2974 2975 2976 2977
### onWindowNew<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
2984 2985 2986 2987 2988
| 参数名           | 参数类型                                     | 参数描述                       |
| ------------- | ---------------------------------------- | -------------------------- |
| isAlert       | boolean                                  | true代表请求创建对话框,false代表新标签页。 |
| isUserTrigger | boolean                                  | true代表用户触发,false代表非用户触发。   |
| targetUrl     | string                                   | 目标url。                     |
L
lixiang 已提交
2989
| handler       | [ControllerHandler](#controllerhandler9) | 用于设置新建窗口的WebviewController实例。  |
X
xiongjun_gitee 已提交
2990 2991 2992 2993 2994

**示例:**

  ```ts
  // xxx.ets
L
laosan_ted 已提交
2995
  import web_webview from '@ohos.web.webview'
Z
zhufenghao 已提交
2996

2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014
  //在同一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 已提交
3015 3016 3017
  @Entry
  @Component
  struct WebComponent {
3018
    controller: web_webview.WebviewController = new web_webview.WebviewController()
3019
    dialogController: CustomDialogController = null
X
xiongjun_gitee 已提交
3020 3021
    build() {
      Column() {
3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040
        Web({ src: 'www.example.com', controller: this.controller })
          .javaScriptAccess(true)
          //需要使能multiWindowAccess
          .multiWindowAccess(true)
          .allowWindowOpenMethod(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 已提交
3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053
      }
    }
  }
  ```

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

onWindowExit(callback: () => void)

通知用户窗口关闭请求。

**参数:**

H
HelloCrease 已提交
3054 3055 3056
| 参数名      | 参数类型       | 参数描述         |
| -------- | ---------- | ------------ |
| callback | () => void | 窗口请求关闭的回调函数。 |
X
xiongjun_gitee 已提交
3057 3058 3059 3060 3061

**示例:**

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

X
xiongjun_gitee 已提交
3064 3065 3066
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
3067
    controller: web_webview.WebviewController = new web_webview.WebviewController()
X
xiongjun_gitee 已提交
3068 3069 3070
    build() {
      Column() {
        Web({ src:'www.example.com', controller: this.controller })
L
laosan_ted 已提交
3071
        .onWindowExit(() => {
Y
yamila 已提交
3072
          console.log("onWindowExit...")
X
xiongjun_gitee 已提交
3073 3074 3075 3076 3077 3078
        })
      }
    }
  }
  ```

L
laosan_ted 已提交
3079 3080 3081 3082 3083 3084 3085 3086
### onSearchResultReceive<sup>9+</sup>

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

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

**参数:**

H
HelloCrease 已提交
3087 3088 3089 3090 3091
| 参数名                | 参数类型    | 参数描述                                     |
| ------------------ | ------- | ---------------------------------------- |
| activeMatchOrdinal | number  | 当前匹配的查找项的序号(从0开始)。                       |
| numberOfMatches    | number  | 所有匹配到的关键词的个数。                            |
| isDoneCounting     | boolean | 当次页内查找操作是否结束。该方法可能会回调多次,直到isDoneCounting为true为止。 |
L
laosan_ted 已提交
3092 3093 3094 3095 3096

**示例:**

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

L
laosan_ted 已提交
3099 3100 3101
  @Entry
  @Component
  struct WebComponent {
L
lixiang 已提交
3102
    controller: web_webview.WebviewController = new web_webview.WebviewController()
L
laosan_ted 已提交
3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115

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

C
chensi10 已提交
3116 3117 3118 3119 3120 3121 3122 3123 3124 3125
### onDataResubmitted<sup>9+</sup>

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

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

**参数:**

| 参数名  | 参数类型                                             | 参数描述               |
| ------- | ---------------------------------------------------- | ---------------------- |
C
chensi10 已提交
3126
| handler | [DataResubmissionHandler](#dataresubmissionhandler9) | 表单数据重新提交句柄。 |
C
chensi10 已提交
3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139

**示例:**

  ```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 })
C
chensi10 已提交
3140
         .onDataResubmitted((event) => {
C
chensi10 已提交
3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
          console.log('onDataResubmitted')
          event.handler.resend();
        })
      }
    }
  }
  ```

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

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

C
chensi10 已提交
3153
设置旧页面不再呈现,新页面即将可见时触发的回调函数。
C
chensi10 已提交
3154 3155 3156

**参数:**

C
chensi10 已提交
3157 3158 3159
| 参数名 | 参数类型 | 参数描述                                          |
| ------ | -------- | ------------------------------------------------- |
| url    | string   | 旧页面不再呈现,新页面即将可见时新页面的url地址。 |
C
chensi10 已提交
3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172

**示例:**

  ```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 })
C
chensi10 已提交
3173
         .onPageVisible((event) => {
C
chensi10 已提交
3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184
          console.log('onPageVisible url:' + event.url)
        })
      }
    }
  }
  ```

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

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

L
1111  
lixiang 已提交
3185
设置键盘事件的回调函数,该回调在被Webview使用前触发。
C
chensi10 已提交
3186 3187 3188 3189 3190 3191 3192

**参数:**

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

C
chensi10 已提交
3193 3194 3195 3196 3197 3198
**返回值:**

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

C
chensi10 已提交
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210
**示例:**

  ```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 })
C
chensi10 已提交
3211
         .onInterceptKeyEvent((event) => {
3212
          if (event.keyCode == 2017 || event.keyCode == 2018) {
C
chensi10 已提交
3213 3214 3215 3216
            console.info(`onInterceptKeyEvent get event.keyCode ${event.keyCode}`)
            return true;
          }
          return false;
C
chensi10 已提交
3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246
        })
      }
    }
  }
  ```

### 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() {
C
chensi10 已提交
3247 3248
        Web({ src:'www.baidu.com', controller: this.controller })
         .onTouchIconUrlReceived((event) => {
C
chensi10 已提交
3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281
          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 })
C
chensi10 已提交
3282
         .onFaviconReceived((event) => {
3283
          console.log('onFaviconReceived');
C
chensi10 已提交
3284 3285 3286 3287 3288 3289 3290
          this.icon = event.favicon;
        })
      }
    }
  }
  ```

L
Lei Gao 已提交
3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324
### onAudioStateChanged<sup>10+</sup>

onAudioStateChanged(callback: (event: { playing: boolean }) => void)

设置网页上的音频播放状态发生改变时的回调函数。

**参数:**

| 参数名  | 参数类型                                       | 参数描述                            |
| ------- | ---------------------------------------------- | ----------------------------------- |
| playing | boolean | 当前页面的音频播放状态,true表示正在播放,false表示未播放。 |

**示例:**

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

3325 3326
### onFirstContentfulPaint<sup>10+</sup>

3327
onFirstContentfulPaint(callback: (event?: { navigationStartTick: number, firstContentfulPaintMs: number }) => void)
3328 3329 3330 3331 3332 3333 3334

设置网页首次内容绘制回调函数。

**参数:**

| 参数名                 |  参数类型  | 参数描述                            |
| -----------------------| -------- | ----------------------------------- |
3335 3336
| navigationStartTick    | number   | navigation开始的时间,单位以微秒表示。|
| firstContentfulPaintMs | number   | 从navigation开始第一次绘制内容的时间,单位是以毫秒表示。|
3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351

**示例:**

  ```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 })
          .onFirstContentfulPaint(event => {
Z
zhufenghao 已提交
3352 3353
            console.log("onFirstContentfulPaint:" + "[navigationStartTick]:" +
              event.navigationStartTick + ", [firstContentfulPaintMs]:" +
3354 3355 3356 3357 3358 3359 3360
              event.firstContentfulPaintMs)
          })
      }
    }
  }
  ```

3361 3362
### onLoadIntercept<sup>10+</sup>

3363
onLoadIntercept(callback: (event?: { data: WebResourceRequest }) => boolean)
3364 3365 3366 3367 3368 3369 3370

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

**参数:**

| 参数名  | 参数类型                                     | 参数描述      |
| ------- | ---------------------------------------- | --------- |
L
lixiang 已提交
3371
| request | [WebResourceRequest](#webresourcerequest) | url请求的相关信息。 |
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392

**返回值:**

| 类型      | 说明                       |
| ------- | ------------------------ |
| boolean | 返回true表示阻止此次加载,否则允许此次加载。 |

**示例:**

  ```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 })
3393 3394 3395 3396 3397
          .onLoadIntercept((event) => {
            console.log('url:' + event.data.getRequestUrl())
            console.log('isMainFrame:' + event.data.isMainFrame())
            console.log('isRedirect:' + event.data.isRedirect())
            console.log('isRequestGesture:' + event.data.isRequestGesture())
3398 3399 3400 3401 3402 3403 3404
            return true
          })
      }
    }
  }
  ```

L
laosan_ted 已提交
3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
### 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')
          })
      }
    }
  }
  ```
X
xiongjun_gitee 已提交
3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481
### onScreenCaptureRequest<sup>10+</sup>

onScreenCaptureRequest(callback: (event?: { handler: ScreenCaptureHandler }) => void)

通知收到屏幕捕获请求。

**参数:**

| 参数名     | 参数类型                                     | 参数描述           |
| ------- | ---------------------------------------- | -------------- |
| handler | [ScreenCaptureHandler](#screencapturehandler10) | 通知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 })
          .onScreenCaptureRequest((event) => {
            AlertDialog.show({
              title: 'title: ' + event.handler.getOrigin(),
              message: 'text',
              primaryButton: {
                value: 'deny',
                action: () => {
                  event.handler.deny()
                }
              },
              secondaryButton: {
                value: 'onConfirm',
                action: () => {
                  event.handler.grant({ captureMode: WebCaptureMode.HOME_SCREEN })
                }
              },
              cancel: () => {
                event.handler.deny()
              }
            })
          })
      }
    }
  }
  ```
L
laosan_ted 已提交
3482

Z
zhufenghao 已提交
3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517
### onOverScroll<sup>10+</sup>

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

通知网页过滚动偏移量。

**参数:**

| 参数名     | 参数类型   | 参数描述         |
| ------- | ------ | ------------ |
| xOffset | number | 以网页最左端为基准,水平过滚动偏移量。 |
| yOffset | number | 以网页最上端为基准,竖直过滚动偏移量。 |

**示例:**

  ```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 })
        .onOverScroll((event) => {
            console.info("x = " + event.xOffset)
            console.info("y = " + event.yOffset)
        })
      }
    }
  }
  ```

3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581
### onControllerAttached<sup>10+</sup>

onControllerAttached(callback: () => void)

当Controller成功绑定到Web组件时触发该回调,并且该Controller必须为WebviewController,  
因该回调调用时网页还未加载,无法在回调中使用有关操作网页的接口,例如[zoomIn](../apis/js-apis-webview.md#zoomin)[zoomOut](../apis/js-apis-webview.md#zoomout)等,可以使用[loadUrl](../apis/js-apis-webview.md#loadurl)[getWebId](../apis/js-apis-webview.md#getwebid)等操作网页不相关的接口。

**示例:**

在该回调中使用loadUrl加载网页
  ```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: '', controller: this.controller })
          .onControllerAttached(() => {
            this.controller.loadUrl($rawfile("index.html"));
          })
      }
    }
  }
  ```
在该回调中使用getWebId
  ```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: $rawfile("index.html"), controller: this.controller })
          .onControllerAttached(() => {
            try {
                let id = this.controller.getWebId();
                console.log("id: " + id);
            } catch (error) {
                console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
            }
          })
      }
    }
  }
  ```
  加载的html文件。
  ```html
  <!-- index.html -->
  <!DOCTYPE html>
  <html>
      <body>
          <p>Hello World</p>
      </body>
  </html>
  ```
Z
zhou-liting125 已提交
3582
## ConsoleMessage
3583

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

Z
zhou-liting125 已提交
3586
### getLineNumber
3587

Z
zhou-liting125 已提交
3588 3589 3590 3591
getLineNumber(): number

获取ConsoleMessage的行数。

3592
**返回值:**
L
laosan_ted 已提交
3593

3594 3595 3596
| 类型     | 说明                   |
| ------ | -------------------- |
| number | 返回ConsoleMessage的行数。 |
Z
zhou-liting125 已提交
3597 3598 3599 3600 3601 3602 3603

### getMessage

getMessage(): string

获取ConsoleMessage的日志信息。

3604
**返回值:**
L
laosan_ted 已提交
3605

3606 3607 3608
| 类型     | 说明                     |
| ------ | ---------------------- |
| string | 返回ConsoleMessage的日志信息。 |
Z
zhou-liting125 已提交
3609 3610 3611 3612

### getMessageLevel

getMessageLevel(): MessageLevel
3613

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

3616
**返回值:**
L
laosan_ted 已提交
3617

3618 3619 3620
| 类型                                | 说明                     |
| --------------------------------- | ---------------------- |
| [MessageLevel](#messagelevel枚举说明) | 返回ConsoleMessage的信息级别。 |
Z
zhou-liting125 已提交
3621 3622 3623 3624 3625 3626 3627

### getSourceId

getSourceId(): string

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

3628
**返回值:**
L
laosan_ted 已提交
3629

3630 3631 3632
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回网页源文件路径和名字。 |
Z
zhou-liting125 已提交
3633 3634

## JsResult
L
lixingchi1 已提交
3635

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

Z
zhou-liting125 已提交
3638 3639 3640
### handleCancel

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

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

Z
zhou-liting125 已提交
3644
### handleConfirm
L
add web  
liujinwei 已提交
3645

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

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

Z
zhou-liting125 已提交
3650 3651 3652 3653 3654 3655
### handlePromptConfirm<sup>9+</sup>

handlePromptConfirm(result: string): void

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

Z
zhou-liting125 已提交
3656
**参数:**
L
laosan_ted 已提交
3657

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

E
echoorchid 已提交
3662 3663 3664 3665 3666 3667 3668 3669 3670 3671
## FullScreenExitHandler<sup>9+</sup>

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

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

exitFullScreen(): void

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

X
xiongjun_gitee 已提交
3672 3673
## ControllerHandler<sup>9+</sup>

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

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

3678
setWebController(controller: WebviewController): void
X
xiongjun_gitee 已提交
3679

3680
设置WebviewController对象,如果不需要打开新窗口请设置为null。
X
xiongjun_gitee 已提交
3681 3682 3683

**参数:**

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

Z
zhou-liting125 已提交
3688 3689
## WebResourceError

L
update  
laosan_ted 已提交
3690
web组件资源管理错误信息对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
3691 3692 3693 3694 3695 3696 3697

### getErrorCode

getErrorCode(): number

获取加载资源的错误码。

3698
**返回值:**
L
laosan_ted 已提交
3699

3700 3701 3702
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回加载资源的错误码。 |
Z
zhou-liting125 已提交
3703 3704 3705 3706 3707 3708 3709

### getErrorInfo

getErrorInfo(): string

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

3710
**返回值:**
L
laosan_ted 已提交
3711

3712 3713 3714
| 类型     | 说明           |
| ------ | ------------ |
| string | 返回加载资源的错误信息。 |
Z
zhou-liting125 已提交
3715 3716 3717

## WebResourceRequest

L
update  
laosan_ted 已提交
3718
web组件获取资源请求对象。示例代码参考[onErrorReceive事件](#onerrorreceive)
Z
zhou-liting125 已提交
3719 3720 3721 3722 3723 3724 3725

### getRequestHeader

getResponseHeader() : Array\<Header\>

获取资源请求头信息。

3726
**返回值:**
L
laosan_ted 已提交
3727

3728 3729 3730
| 类型                         | 说明         |
| -------------------------- | ---------- |
| Array\<[Header](#header)\> | 返回资源请求头信息。 |
Z
zhou-liting125 已提交
3731 3732 3733 3734 3735 3736 3737

### getRequestUrl

getRequestUrl(): string

获取资源请求的URL信息。

3738
**返回值:**
L
laosan_ted 已提交
3739

3740 3741 3742
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源请求的URL信息。 |
Z
zhou-liting125 已提交
3743 3744 3745 3746 3747 3748 3749

### isMainFrame

isMainFrame(): boolean

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

3750
**返回值:**
L
laosan_ted 已提交
3751

3752 3753 3754
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否为主frame。 |
Z
zhou-liting125 已提交
3755 3756 3757 3758 3759 3760 3761

### isRedirect

isRedirect(): boolean

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

3762
**返回值:**
L
laosan_ted 已提交
3763

3764 3765 3766
| 类型      | 说明               |
| ------- | ---------------- |
| boolean | 返回资源请求是否被服务端重定向。 |
Z
zhou-liting125 已提交
3767 3768 3769 3770 3771 3772 3773

### isRequestGesture

isRequestGesture(): boolean

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

3774
**返回值:**
L
laosan_ted 已提交
3775

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

3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791
### getRequestMethod<sup>9+</sup>

getRequestMethod(): string

获取请求方法。

**返回值:**

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

Z
zhou-liting125 已提交
3792
## Header
L
liwenzhen 已提交
3793 3794 3795

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

3796 3797 3798 3799
| 名称          | 类型     | 描述            |
| ----------- | ------ | ------------- |
| headerKey   | string | 请求/响应头的key。   |
| headerValue | string | 请求/响应头的value。 |
L
liwenzhen 已提交
3800

Z
zhou-liting125 已提交
3801
## WebResourceResponse
L
add web  
liujinwei 已提交
3802

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

Z
zhou-liting125 已提交
3805
### getReasonMessage
T
Ted 已提交
3806

Z
zhou-liting125 已提交
3807
getReasonMessage(): string
T
Ted 已提交
3808

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

3811
**返回值:**
L
laosan_ted 已提交
3812

3813 3814 3815
| 类型     | 说明            |
| ------ | ------------- |
| string | 返回资源响应的状态码描述。 |
T
Ted 已提交
3816

Z
zhou-liting125 已提交
3817
### getResponseCode
T
Ted 已提交
3818

Z
zhou-liting125 已提交
3819 3820 3821 3822
getResponseCode(): number

获取资源响应的状态码。

3823
**返回值:**
L
laosan_ted 已提交
3824

3825 3826 3827
| 类型     | 说明          |
| ------ | ----------- |
| number | 返回资源响应的状态码。 |
Z
zhou-liting125 已提交
3828 3829 3830 3831 3832 3833 3834

### getResponseData

getResponseData(): string

获取资源响应数据。

3835
**返回值:**
L
laosan_ted 已提交
3836

3837 3838 3839
| 类型     | 说明        |
| ------ | --------- |
| string | 返回资源响应数据。 |
Z
zhou-liting125 已提交
3840 3841 3842 3843 3844 3845 3846

### getResponseEncoding

getResponseEncoding(): string

获取资源响应的编码。

3847
**返回值:**
L
laosan_ted 已提交
3848

3849 3850 3851
| 类型     | 说明         |
| ------ | ---------- |
| string | 返回资源响应的编码。 |
Z
zhou-liting125 已提交
3852 3853 3854 3855 3856 3857 3858

### getResponseHeader

getResponseHeader() : Array\<Header\>

获取资源响应头。

3859
**返回值:**
L
laosan_ted 已提交
3860

3861 3862 3863
| 类型                         | 说明       |
| -------------------------- | -------- |
| Array\<[Header](#header)\> | 返回资源响应头。 |
Z
zhou-liting125 已提交
3864 3865 3866 3867 3868 3869 3870

### getResponseMimeType

getResponseMimeType(): string

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

3871
**返回值:**
L
laosan_ted 已提交
3872

3873 3874 3875
| 类型     | 说明                 |
| ------ | ------------------ |
| string | 返回资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3876 3877 3878

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

W
wudefeng@huawei.com 已提交
3879
setResponseData(data: string | number \| Resource)
Z
zhou-liting125 已提交
3880 3881 3882

设置资源响应数据。

Z
zhou-liting125 已提交
3883
**参数:**
L
laosan_ted 已提交
3884

3885 3886
| 参数名 | 参数类型         | 必填 | 默认值 | 参数描述                                                     |
| ------ | ---------------- | ---- | ------ | ------------------------------------------------------------ |
W
wudefeng@huawei.com 已提交
3887
| data   | string \| number \| [Resource](ts-types.md)<sup>10+</sup>| 是   | -      | 要设置的资源响应数据。string表示HTML格式的字符串。number表示文件句柄, 此句柄由系统的Web组件负责关闭。 Resource表示应用rawfile目录下文件资源。|
Z
zhou-liting125 已提交
3888 3889 3890 3891 3892 3893 3894

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

setResponseEncoding(encoding: string)

设置资源响应的编码。

Z
zhou-liting125 已提交
3895
**参数:**
L
laosan_ted 已提交
3896

3897 3898 3899
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述         |
| -------- | ------ | ---- | ---- | ------------ |
| encoding | string | 是    | -    | 要设置的资源响应的编码。 |
Z
zhou-liting125 已提交
3900 3901 3902 3903 3904 3905 3906

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

setResponseMimeType(mimeType: string)

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

Z
zhou-liting125 已提交
3907
**参数:**
L
laosan_ted 已提交
3908

3909 3910 3911
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述                 |
| -------- | ------ | ---- | ---- | -------------------- |
| mimeType | string | 是    | -    | 要设置的资源响应的媒体(MIME)类型。 |
Z
zhou-liting125 已提交
3912 3913 3914 3915 3916 3917 3918

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

setReasonMessage(reason: string)

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

Z
zhou-liting125 已提交
3919
**参数:**
L
laosan_ted 已提交
3920

3921 3922 3923
| 参数名    | 参数类型   | 必填   | 默认值  | 参数描述            |
| ------ | ------ | ---- | ---- | --------------- |
| reason | string | 是    | -    | 要设置的资源响应的状态码描述。 |
Z
zhou-liting125 已提交
3924 3925 3926 3927 3928 3929 3930

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

setResponseHeader(header: Array\<Header\>)

设置资源响应头。

Z
zhou-liting125 已提交
3931
**参数:**
L
laosan_ted 已提交
3932

3933 3934 3935
| 参数名    | 参数类型                       | 必填   | 默认值  | 参数描述       |
| ------ | -------------------------- | ---- | ---- | ---------- |
| header | Array\<[Header](#header)\> | 是    | -    | 要设置的资源响应头。 |
Z
zhou-liting125 已提交
3936 3937 3938 3939 3940 3941 3942

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

setResponseCode(code: number)

设置资源响应的状态码。

Z
zhou-liting125 已提交
3943
**参数:**
L
laosan_ted 已提交
3944

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

3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960
### setResponseIsReady<sup>9+</sup>

setResponseIsReady(IsReady: boolean)

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

**参数:**

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

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

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

Z
zhou-liting125 已提交
3965
### handleFileList<sup>9+</sup>
3966

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

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

Z
zhou-liting125 已提交
3971
**参数:**
L
laosan_ted 已提交
3972

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

Z
zhou-liting125 已提交
3977 3978
## FileSelectorParam<sup>9+</sup>

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

L
lixiang 已提交
3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992
### getTitle<sup>9+</sup>

getTitle(): string

获取文件选择器标题。

**返回值:**

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

Z
zhou-liting125 已提交
3993 3994 3995 3996 3997 3998
### getMode<sup>9+</sup>

getMode(): FileSelectorMode

获取文件选择器的模式。

3999
**返回值:**
L
laosan_ted 已提交
4000

4001 4002 4003
| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
| [FileSelectorMode](#fileselectormode枚举说明) | 返回文件选择器的模式。 |
Z
zhou-liting125 已提交
4004 4005 4006 4007 4008 4009 4010

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

getAcceptType(): Array\<string\>

获取文件过滤类型。

4011
**返回值:**
L
laosan_ted 已提交
4012

4013 4014 4015
| 类型              | 说明        |
| --------------- | --------- |
| Array\<string\> | 返回文件过滤类型。 |
Z
zhou-liting125 已提交
4016 4017 4018 4019 4020 4021 4022

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

isCapture(): boolean

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

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

4025 4026 4027
| 类型      | 说明           |
| ------- | ------------ |
| boolean | 返回是否调用多媒体能力。 |
4028 4029 4030

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

Z
zhou-liting125 已提交
4031
Web组件返回的http auth认证请求确认或取消和使用缓存密码认证功能对象。示例代码参考[onHttpAuthRequest事件](#onhttpauthrequest9)
4032 4033 4034 4035 4036 4037 4038 4039

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

cancel(): void

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

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

4041 4042 4043 4044
confirm(userName: string, pwd: string): boolean

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

Z
zhou-liting125 已提交
4045
**参数:**
4046

4047 4048 4049 4050
| 参数名      | 参数类型   | 必填   | 默认值  | 参数描述       |
| -------- | ------ | ---- | ---- | ---------- |
| userName | string | 是    | -    | HTTP认证用户名。 |
| pwd      | string | 是    | -    | HTTP认证密码。  |
4051

Z
zhou-liting125 已提交
4052
**返回值:**
L
laosan_ted 已提交
4053

4054 4055 4056
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 认证成功返回true,失败返回false。 |
4057 4058 4059 4060 4061

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

isHttpAuthInfoSaved(): boolean

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

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

4066 4067 4068
| 类型      | 说明                        |
| ------- | ------------------------- |
| boolean | 存在密码认证成功返回true,其他返回false。 |
4069

4070 4071
## SslErrorHandler<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
4072
Web组件返回的SSL错误通知事件用户处理功能对象。示例代码参考[onSslErrorEventReceive事件](#onsslerroreventreceive9)
4073 4074 4075 4076 4077

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

handleCancel(): void

I
i-am-a-little-bird 已提交
4078
通知Web组件取消此请求。
4079 4080 4081 4082 4083

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

handleConfirm(): void

I
i-am-a-little-bird 已提交
4084 4085 4086 4087
通知Web组件继续使用SSL证书。

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

I
bugfix  
i-am-a-little-bird 已提交
4088
Web组件返回的SSL客户端证书请求事件用户处理功能对象。示例代码参考[onClientAuthenticationRequest事件](#onclientauthenticationrequest9)
I
i-am-a-little-bird 已提交
4089 4090 4091 4092 4093 4094

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

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

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

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

H
HelloCrease 已提交
4098 4099 4100 4101
| 参数名           | 参数类型   | 必填   | 参数描述               |
| ------------- | ------ | ---- | ------------------ |
| priKeyFile    | string | 是    | 存放私钥的文件,包含路径和文件名。  |
| certChainFile | string | 是    | 存放证书链的文件,包含路径和文件名。 |
I
i-am-a-little-bird 已提交
4102

4103 4104 4105 4106
### confirm<sup>10+</sup>

confirm(authUri : string): void

4107 4108
**需要权限:** ohos.permission.ACCESS_CERT_MANAGER

4109 4110 4111 4112 4113 4114 4115 4116
通知Web组件使用指定的凭据(从证书管理模块获得)。

**参数:**

| 参数名   | 参数类型  | 必填  | 参数描述  |
| ------- | ------ | ----  | ------------- |
| authUri | string | 是    | 凭据的关键值。  |

I
i-am-a-little-bird 已提交
4117
### cancel<sup>9+</sup>
4118

I
i-am-a-little-bird 已提交
4119 4120
cancel(): void

I
bugfix  
i-am-a-little-bird 已提交
4121
通知Web组件取消相同host和port服务器发送的客户端证书请求事件。同时,相同host和port服务器的请求,不重复上报该事件。
I
i-am-a-little-bird 已提交
4122 4123 4124 4125 4126 4127

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

ignore(): void

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

4129 4130
## PermissionRequest<sup>9+</sup>

X
xiongjun_gitee 已提交
4131
Web组件返回授权或拒绝权限功能的对象。示例代码参考[onPermissionRequest事件](#onpermissionrequest9)
4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146

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

deny(): void

拒绝网页所请求的权限。

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

getOrigin(): string

获取网页来源。

**返回值:**

H
HelloCrease 已提交
4147 4148 4149
| 类型     | 说明           |
| ------ | ------------ |
| string | 当前请求权限网页的来源。 |
4150 4151 4152 4153 4154

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

getAccessibleResource(): Array\<string\>

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

**返回值:**

H
HelloCrease 已提交
4159 4160
| 类型              | 说明            |
| --------------- | ------------- |
4161 4162 4163 4164 4165 4166
| Array\<string\> | 网页所请求的权限资源列表。 |

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

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

X
xiongjun_gitee 已提交
4167
对网页访问的给定权限进行授权。
4168 4169 4170

**参数:**

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

X
xiongjun_gitee 已提交
4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210
## ScreenCaptureHandler<sup>10+</sup>

Web组件返回授权或拒绝屏幕捕获功能的对象。示例代码参考[onScreenCaptureRequest事件](#onscreencapturerequest10)

### deny<sup>10+</sup>

deny(): void

拒绝网页所请求的屏幕捕获操作。

### getOrigin<sup>10+</sup>

getOrigin(): string

获取网页来源。

**返回值:**

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

### grant<sup>10+</sup>

grant(config: ScreenCaptureConfig): void

**需要权限:** ohos.permission.MICROPHONE,ohos.permission.CAPTURE_SCREEN

对网页访问的屏幕捕获操作进行授权。

**参数:**

| 参数名       | 参数类型            | 必填   | 默认值  | 参数描述          |
| --------- | --------------- | ---- | ---- | ------------- |
| config | [ScreenCaptureConfig](#screencaptureconfig10) | 是    | -    | 屏幕捕获配置。 |

I
i-am-a-little-bird 已提交
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245
## 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  | 支持全选。 |

4246 4247
## WebContextMenuParam<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
4248
实现长按页面元素或鼠标右键弹出来的菜单信息。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
4249 4250 4251 4252 4253 4254 4255 4256 4257

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

x(): number

弹出菜单的x坐标。

**返回值:**

H
HelloCrease 已提交
4258 4259
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
4260
| number | 显示正常返回非负整数,否则返回-1。 |
4261 4262 4263 4264 4265 4266 4267 4268 4269

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

y(): number

弹出菜单的y坐标。

**返回值:**

H
HelloCrease 已提交
4270 4271
| 类型     | 说明                 |
| ------ | ------------------ |
Y
yu-shihao4 已提交
4272
| number | 显示正常返回非负整数,否则返回-1。 |
4273 4274 4275 4276 4277

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

getLinkUrl(): string

Y
yu-shihao4 已提交
4278
获取链接地址。
4279 4280 4281

**返回值:**

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

4286
### getUnfilteredLinkUrl<sup>9+</sup>
4287

4288
getUnfilteredLinkUrl(): string
4289

Y
yu-shihao4 已提交
4290
获取链接地址。
4291 4292 4293

**返回值:**

H
HelloCrease 已提交
4294 4295
| 类型     | 说明                    |
| ------ | --------------------- |
Y
yu-shihao4 已提交
4296
| string | 如果长按位置是链接,返回原始的url链接。 |
4297 4298 4299 4300 4301 4302 4303 4304 4305

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

getSourceUrl(): string

获取sourceUrl链接。

**返回值:**

H
HelloCrease 已提交
4306 4307
| 类型     | 说明                       |
| ------ | ------------------------ |
4308 4309 4310 4311 4312 4313 4314 4315 4316 4317
| string | 如果选中的元素有src属性,返回src的url。 |

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

existsImageContents(): boolean

是否存在图像内容。

**返回值:**

H
HelloCrease 已提交
4318 4319
| 类型      | 说明                        |
| ------- | ------------------------- |
4320 4321
| boolean | 长按位置中有图片返回true,否则返回false。 |

I
i-am-a-little-bird 已提交
4322 4323
### getMediaType<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
4324
getMediaType(): ContextMenuMediaType
I
i-am-a-little-bird 已提交
4325 4326 4327 4328 4329 4330 4331

获取网页元素媒体类型。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
4332
| [ContextMenuMediaType](#contextmenumediatype9枚举说明) | 网页元素媒体类型。 |
I
i-am-a-little-bird 已提交
4333 4334 4335

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

I
bugfix  
i-am-a-little-bird 已提交
4336
getSelectionText(): string
I
i-am-a-little-bird 已提交
4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347

获取选中文本。

**返回值:**

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

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

I
bugfix  
i-am-a-little-bird 已提交
4348
getSourceType(): ContextMenuSourceType
I
i-am-a-little-bird 已提交
4349 4350 4351 4352 4353 4354 4355

获取菜单事件来源。

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
4356
| [ContextMenuSourceType](#contextmenusourcetype9枚举说明) | 菜单事件来源。 |
I
i-am-a-little-bird 已提交
4357 4358 4359

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

I
bugfix  
i-am-a-little-bird 已提交
4360
getInputFieldType(): ContextMenuInputFieldType
I
i-am-a-little-bird 已提交
4361 4362 4363 4364 4365 4366 4367

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

**返回值:**

| 类型                                       | 说明          |
| ---------------------------------------- | ----------- |
I
bugfix  
i-am-a-little-bird 已提交
4368
| [ContextMenuInputFieldType](#contextmenuinputfieldtype9枚举说明) | 输入框类型。 |
I
i-am-a-little-bird 已提交
4369 4370 4371

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

I
bugfix  
i-am-a-little-bird 已提交
4372
isEditable(): boolean
I
i-am-a-little-bird 已提交
4373 4374 4375 4376 4377 4378 4379

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

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
I
bugfix  
i-am-a-little-bird 已提交
4380
| boolean | 网页元素可编辑返回true,不可编辑返回false。 |
I
i-am-a-little-bird 已提交
4381 4382 4383

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

I
bugfix  
i-am-a-little-bird 已提交
4384
getEditStateFlags(): number
I
i-am-a-little-bird 已提交
4385 4386 4387 4388 4389 4390 4391

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

**返回值:**

| 类型      | 说明                        |
| ------- | ------------------------- |
I
bugfix  
i-am-a-little-bird 已提交
4392
| number | 网页元素可编辑标识,参照[ContextMenuEditStateFlags](#contextmenueditstateflags9枚举说明)。 |
I
i-am-a-little-bird 已提交
4393

4394 4395
## WebContextMenuResult<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
4396
实现长按页面元素或鼠标右键弹出来的菜单所执行的响应事件。示例代码参考[onContextMenuShow事件](#oncontextmenushow9)
4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409

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

closeContextMenu(): void

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

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

copyImage(): void

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

I
i-am-a-little-bird 已提交
4410 4411
### copy<sup>9+</sup>

I
bugfix  
i-am-a-little-bird 已提交
4412
copy(): void
I
i-am-a-little-bird 已提交
4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433

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

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

paste(): void

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

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

cut(): void

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

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

selectAll(): void

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

4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445
## JsGeolocation

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

### invoke

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

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

**参数:**

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

L
lixiang 已提交
4452
## MessageLevel枚举说明
L
laosan_ted 已提交
4453

L
lixiang 已提交
4454 4455 4456 4457 4458 4459 4460
| 名称    | 描述    |
| ----- | :---- |
| Debug | 调试级别。 |
| Error | 错误级别。 |
| Info  | 消息级别。 |
| Log   | 日志级别。 |
| Warn  | 警告级别。 |
Z
zengyawen 已提交
4461

L
lixiang 已提交
4462
## RenderExitReason枚举说明
Z
zengyawen 已提交
4463

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

L
lixiang 已提交
4466 4467 4468 4469 4470 4471 4472
| 名称                         | 描述                |
| -------------------------- | ----------------- |
| ProcessAbnormalTermination | 渲染进程异常退出。         |
| ProcessWasKilled           | 收到SIGKILL,或被手动终止。 |
| ProcessCrashed             | 渲染进程崩溃退出,如段错误。    |
| ProcessOom                 | 程序内存不足。           |
| ProcessExitUnknown         | 其他原因。             |
L
laosan_ted 已提交
4473

L
lixiang 已提交
4474
## MixedMode枚举说明
L
laosan_ted 已提交
4475

L
lixiang 已提交
4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526
| 名称         | 描述                                 |
| ---------- | ---------------------------------- |
| 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设备的使用还未支持。 |
4527
| VIDEO_CAPTURE<sup>10+</sup> | 视频捕获资源,例如相机。 | |
X
xiongjun_gitee 已提交
4528
| AUDIO_CAPTURE<sup>10+</sup> | 音频捕获资源,例如麦克风。 | |
L
lixiang 已提交
4529 4530 4531 4532 4533 4534 4535 4536

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

X
xiongjun_gitee 已提交
4537 4538 4539 4540 4541 4542
## WebCaptureMode<sup>10+</sup>枚举说明

| 名称        | 描述            |
| --------- | ------------- |
| HOME_SCREEN | 主屏捕获模式。 |

Y
yuhaoge 已提交
4543 4544 4545 4546 4547 4548
## WebMediaOptions<sup>10+</sup>

Web媒体策略的配置。

| 名称           | 类型       | 可读 | 可写 | 必填 | 说明                         |
| -------------- | --------- | ---- | ---- | --- | ---------------------------- |
L
laosan_ted 已提交
4549
| resumeInterval |  number   |  是  | 是   |  否  |被暂停的Web音频能够自动续播的有效期,单位:秒。最长有效期为60秒,由于近似值原因,该有效期可能存在一秒内的误差。 |
Y
yuhaoge 已提交
4550 4551
| audioExclusive |  boolean  |  是  | 是   |  否  | 应用内多个Web实例的音频是否独占。    |

X
xiongjun_gitee 已提交
4552 4553 4554 4555 4556 4557 4558 4559
## ScreenCaptureConfig<sup>10+</sup>

Web屏幕捕获的配置。

| 名称           | 类型       | 可读 | 可写 | 必填 | 说明                         |
| -------------- | --------- | ---- | ---- | --- | ---------------------------- |
| captureMode |  [WebCaptureMode](#webcapturemode10枚举说明)  |  是  | 是  |  是  | Web屏幕捕获模式。 |

L
lixiang 已提交
4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590
## 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();
        })
      }
    }
  }
  ```

4591
### cancel<sup>9+</sup>
L
lixiang 已提交
4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639

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管理对象。

**返回值:**

| 类型        | 说明                                       |
| --------- | ---------------------------------------- |
4640
| WebCookie | web组件cookie管理对象,参考[WebCookie](#webcookiedeprecated)定义。 |
L
lixiang 已提交
4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669

**示例:**

  ```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 已提交
4670

L
laosan_ted 已提交
4671
**示例:**
L
laosan_ted 已提交
4672

L
laosan_ted 已提交
4673 4674 4675 4676 4677
  ```ts
  // xxx.ets
  @Entry
  @Component
  struct WebComponent {
Y
yamila 已提交
4678
    controller: WebController = new WebController()
4679

L
laosan_ted 已提交
4680 4681 4682 4683
    build() {
      Column() {
        Button('requestFocus')
          .onClick(() => {
Y
yamila 已提交
4684
            this.controller.requestFocus()
L
laosan_ted 已提交
4685 4686 4687 4688 4689 4690 4691
          })
        Web({ src: 'www.example.com', controller: this.controller })
      }
    }
  }
  ```

L
laosan_ted 已提交
4692
### accessBackward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4693 4694 4695

accessBackward(): boolean

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

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

Z
zhou-liting125 已提交
4700
**返回值:**
L
laosan_ted 已提交
4701

4702 4703 4704
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以后退返回true,否则返回false。 |
L
update  
laosan_ted 已提交
4705

Z
zhou-liting125 已提交
4706
**示例:**
L
laosan_ted 已提交
4707

Z
zhou-liting125 已提交
4708 4709
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4710
  @Entry
L
update  
laosan_ted 已提交
4711 4712
  @Component
  struct WebComponent {
Y
yamila 已提交
4713
    controller: WebController = new WebController()
4714

L
update  
laosan_ted 已提交
4715 4716 4717
    build() {
      Column() {
        Button('accessBackward')
L
laosan_ted 已提交
4718
          .onClick(() => {
Y
yamila 已提交
4719 4720
            let result = this.controller.accessBackward()
            console.log('result:' + result)
L
laosan_ted 已提交
4721
          })
Z
zhou-liting125 已提交
4722
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4723
      }
L
update  
laosan_ted 已提交
4724 4725 4726 4727
    }
  }
  ```

L
laosan_ted 已提交
4728
### accessForward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4729 4730 4731

accessForward(): boolean

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

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

Z
zhou-liting125 已提交
4736
**返回值:**
L
laosan_ted 已提交
4737

4738 4739 4740
| 类型      | 说明                    |
| ------- | --------------------- |
| boolean | 可以前进返回true,否则返回false。 |
L
update  
laosan_ted 已提交
4741

Z
zhou-liting125 已提交
4742
**示例:**
L
laosan_ted 已提交
4743

Z
zhou-liting125 已提交
4744 4745
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4746
  @Entry
L
update  
laosan_ted 已提交
4747 4748
  @Component
  struct WebComponent {
Y
yamila 已提交
4749
    controller: WebController = new WebController()
4750

L
update  
laosan_ted 已提交
4751 4752 4753
    build() {
      Column() {
        Button('accessForward')
L
laosan_ted 已提交
4754
          .onClick(() => {
Y
yamila 已提交
4755 4756
            let result = this.controller.accessForward()
            console.log('result:' + result)
L
laosan_ted 已提交
4757
          })
Z
zhou-liting125 已提交
4758
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4759
      }
L
update  
laosan_ted 已提交
4760 4761 4762 4763
    }
  }
  ```

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

L
lixingchi1 已提交
4766
accessStep(step: number): boolean
Z
zengyawen 已提交
4767

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

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

Z
zhou-liting125 已提交
4772
**参数:**
Z
zengyawen 已提交
4773

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

Z
zhou-liting125 已提交
4778
**返回值:**
L
laosan_ted 已提交
4779

4780 4781 4782
| 类型      | 说明        |
| ------- | --------- |
| boolean | 页面是否前进或后退 |
4783

Z
zhou-liting125 已提交
4784
**示例:**
L
laosan_ted 已提交
4785

Z
zhou-liting125 已提交
4786 4787
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4788
  @Entry
L
update  
laosan_ted 已提交
4789 4790
  @Component
  struct WebComponent {
Y
yamila 已提交
4791 4792
    controller: WebController = new WebController()
    @State steps: number = 2
4793

L
update  
laosan_ted 已提交
4794 4795 4796
    build() {
      Column() {
        Button('accessStep')
L
laosan_ted 已提交
4797
          .onClick(() => {
Y
yamila 已提交
4798 4799
            let result = this.controller.accessStep(this.steps)
            console.log('result:' + result)
L
laosan_ted 已提交
4800
          })
Z
zhou-liting125 已提交
4801
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4802
      }
L
update  
laosan_ted 已提交
4803 4804 4805 4806
    }
  }
  ```

L
laosan_ted 已提交
4807
### backward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4808

L
update  
laosan_ted 已提交
4809
backward(): void
L
lixingchi1 已提交
4810

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

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

Z
zhou-liting125 已提交
4815
**示例:**
L
laosan_ted 已提交
4816

Z
zhou-liting125 已提交
4817 4818
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4819
  @Entry
L
update  
laosan_ted 已提交
4820 4821
  @Component
  struct WebComponent {
Y
yamila 已提交
4822
    controller: WebController = new WebController()
4823

L
update  
laosan_ted 已提交
4824 4825 4826
    build() {
      Column() {
        Button('backward')
L
laosan_ted 已提交
4827
          .onClick(() => {
Y
yamila 已提交
4828
            this.controller.backward()
L
laosan_ted 已提交
4829
          })
Z
zhou-liting125 已提交
4830
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4831
      }
L
update  
laosan_ted 已提交
4832 4833 4834
    }
  }
  ```
L
lixingchi1 已提交
4835

L
laosan_ted 已提交
4836
### forward<sup>(deprecated)</sup>
L
lixingchi1 已提交
4837

L
update  
laosan_ted 已提交
4838
forward(): void
L
lixingchi1 已提交
4839

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

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

Z
zhou-liting125 已提交
4844
**示例:**
L
laosan_ted 已提交
4845

Z
zhou-liting125 已提交
4846 4847
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4848
  @Entry
L
update  
laosan_ted 已提交
4849 4850
  @Component
  struct WebComponent {
Y
yamila 已提交
4851
    controller: WebController = new WebController()
4852

L
update  
laosan_ted 已提交
4853 4854 4855
    build() {
      Column() {
        Button('forward')
L
laosan_ted 已提交
4856
          .onClick(() => {
Y
yamila 已提交
4857
            this.controller.forward()
L
laosan_ted 已提交
4858
          })
Z
zhou-liting125 已提交
4859
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4860
      }
L
update  
laosan_ted 已提交
4861 4862 4863 4864
    }
  }
  ```

L
laosan_ted 已提交
4865
### deleteJavaScriptRegister<sup>(deprecated)</sup>
L
update  
laosan_ted 已提交
4866 4867 4868

deleteJavaScriptRegister(name: string)

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

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

Z
zhou-liting125 已提交
4873
**参数:**
L
laosan_ted 已提交
4874

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

Z
zhou-liting125 已提交
4879
**示例:**
L
laosan_ted 已提交
4880

Z
zhou-liting125 已提交
4881 4882
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4883
  @Entry
L
update  
laosan_ted 已提交
4884 4885
  @Component
  struct WebComponent {
Y
yamila 已提交
4886 4887
    controller: WebController = new WebController()
    @State name: string = 'Object'
4888

L
update  
laosan_ted 已提交
4889 4890 4891
    build() {
      Column() {
        Button('deleteJavaScriptRegister')
L
laosan_ted 已提交
4892
          .onClick(() => {
Y
yamila 已提交
4893
            this.controller.deleteJavaScriptRegister(this.name)
L
laosan_ted 已提交
4894
          })
Z
zhou-liting125 已提交
4895
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4896
      }
L
update  
laosan_ted 已提交
4897 4898 4899 4900
    }
  }
  ```

L
laosan_ted 已提交
4901
### getHitTest<sup>(deprecated)</sup>
L
lixingchi1 已提交
4902 4903 4904

getHitTest(): HitTestType

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

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

Z
zhou-liting125 已提交
4909
**返回值:**
L
laosan_ted 已提交
4910

4911 4912 4913
| 类型                              | 说明          |
| ------------------------------- | ----------- |
| [HitTestType](#hittesttype枚举说明) | 被点击区域的元素类型。 |
L
lixingchi1 已提交
4914

Z
zhou-liting125 已提交
4915
**示例:**
L
laosan_ted 已提交
4916

Z
zhou-liting125 已提交
4917 4918
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4919
  @Entry
L
update  
laosan_ted 已提交
4920 4921
  @Component
  struct WebComponent {
Y
yamila 已提交
4922
    controller: WebController = new WebController()
4923

L
update  
laosan_ted 已提交
4924 4925 4926
    build() {
      Column() {
        Button('getHitTest')
L
laosan_ted 已提交
4927
          .onClick(() => {
Y
yamila 已提交
4928 4929
            let hitType = this.controller.getHitTest()
            console.log("hitType: " + hitType)
L
laosan_ted 已提交
4930
          })
Z
zhou-liting125 已提交
4931
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4932
      }
L
update  
laosan_ted 已提交
4933 4934 4935 4936
    }
  }
  ```

L
laosan_ted 已提交
4937
### loadData<sup>(deprecated)</sup>
L
lixingchi1 已提交
4938

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

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

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

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

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

Z
zhou-liting125 已提交
4949
**参数:**
L
laosan_ted 已提交
4950

4951 4952 4953 4954 4955 4956 4957
| 参数名        | 参数类型   | 必填   | 默认值  | 参数描述                                     |
| ---------- | ------ | ---- | ---- | ---------------------------------------- |
| 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 已提交
4958

Z
zhou-liting125 已提交
4959
**示例:**
L
laosan_ted 已提交
4960

Z
zhou-liting125 已提交
4961 4962
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
4963
  @Entry
L
update  
laosan_ted 已提交
4964 4965
  @Component
  struct WebComponent {
Y
yamila 已提交
4966
    controller: WebController = new WebController()
4967

L
update  
laosan_ted 已提交
4968 4969 4970
    build() {
      Column() {
        Button('loadData')
L
laosan_ted 已提交
4971 4972 4973 4974 4975
          .onClick(() => {
            this.controller.loadData({
              data: "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              mimeType: "text/html",
              encoding: "UTF-8"
Y
yamila 已提交
4976
            })
L
laosan_ted 已提交
4977
          })
Z
zhou-liting125 已提交
4978
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
4979
      }
L
update  
laosan_ted 已提交
4980 4981 4982 4983
    }
  }
  ```

L
laosan_ted 已提交
4984
### loadUrl<sup>(deprecated)</sup>
Z
zengyawen 已提交
4985

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

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

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

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

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

Z
zhou-liting125 已提交
4996
**参数:**
L
laosan_ted 已提交
4997

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

Z
zhou-liting125 已提交
5003
**示例:**
L
laosan_ted 已提交
5004

Z
zhou-liting125 已提交
5005 5006
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5007
  @Entry
L
update  
laosan_ted 已提交
5008 5009
  @Component
  struct WebComponent {
Y
yamila 已提交
5010
    controller: WebController = new WebController()
5011

L
update  
laosan_ted 已提交
5012 5013 5014
    build() {
      Column() {
        Button('loadUrl')
L
laosan_ted 已提交
5015
          .onClick(() => {
Y
yamila 已提交
5016
            this.controller.loadUrl({ url: 'www.example.com' })
L
laosan_ted 已提交
5017
          })
Z
zhou-liting125 已提交
5018
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5019
      }
L
update  
laosan_ted 已提交
5020 5021 5022 5023
    }
  }
  ```

L
laosan_ted 已提交
5024
### onActive<sup>(deprecated)</sup>
L
lixingchi1 已提交
5025 5026 5027

onActive(): void

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

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

Z
zhou-liting125 已提交
5032
**示例:**
L
laosan_ted 已提交
5033

Z
zhou-liting125 已提交
5034 5035
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5036
  @Entry
L
update  
laosan_ted 已提交
5037 5038
  @Component
  struct WebComponent {
Y
yamila 已提交
5039
    controller: WebController = new WebController()
5040

L
update  
laosan_ted 已提交
5041 5042 5043
    build() {
      Column() {
        Button('onActive')
L
laosan_ted 已提交
5044
          .onClick(() => {
Y
yamila 已提交
5045
            this.controller.onActive()
L
laosan_ted 已提交
5046
          })
Z
zhou-liting125 已提交
5047
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5048
      }
L
update  
laosan_ted 已提交
5049 5050 5051 5052
    }
  }
  ```

L
laosan_ted 已提交
5053
### onInactive<sup>(deprecated)</sup>
L
lixingchi1 已提交
5054 5055 5056

onInactive(): void

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

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

Z
zhou-liting125 已提交
5061
**示例:**
L
laosan_ted 已提交
5062

Z
zhou-liting125 已提交
5063 5064
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5065
  @Entry
L
update  
laosan_ted 已提交
5066 5067
  @Component
  struct WebComponent {
Y
yamila 已提交
5068
    controller: WebController = new WebController()
5069

L
update  
laosan_ted 已提交
5070 5071 5072
    build() {
      Column() {
        Button('onInactive')
L
laosan_ted 已提交
5073
          .onClick(() => {
Y
yamila 已提交
5074
            this.controller.onInactive()
L
laosan_ted 已提交
5075
          })
Z
zhou-liting125 已提交
5076
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5077
      }
L
update  
laosan_ted 已提交
5078 5079 5080 5081
    }
  }
  ```

L
laosan_ted 已提交
5082
### zoom<sup>(deprecated)</sup>
5083 5084 5085
zoom(factor: number): void

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

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

Z
zhou-liting125 已提交
5089
**参数:**
L
laosan_ted 已提交
5090

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

Z
zhou-liting125 已提交
5095
**示例:**
L
laosan_ted 已提交
5096

Z
zhou-liting125 已提交
5097 5098
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5099
  @Entry
L
update  
laosan_ted 已提交
5100 5101
  @Component
  struct WebComponent {
Y
yamila 已提交
5102 5103
    controller: WebController = new WebController()
    @State factor: number = 1
5104

L
update  
laosan_ted 已提交
5105 5106 5107
    build() {
      Column() {
        Button('zoom')
L
laosan_ted 已提交
5108
          .onClick(() => {
Y
yamila 已提交
5109
            this.controller.zoom(this.factor)
L
laosan_ted 已提交
5110
          })
Z
zhou-liting125 已提交
5111
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5112
      }
L
update  
laosan_ted 已提交
5113 5114 5115 5116
    }
  }
  ```

L
laosan_ted 已提交
5117
### refresh<sup>(deprecated)</sup>
L
lixingchi1 已提交
5118

Z
zhou-liting125 已提交
5119
refresh()
L
lixingchi1 已提交
5120

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

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

Z
zhou-liting125 已提交
5125
**示例:**
L
laosan_ted 已提交
5126

Z
zhou-liting125 已提交
5127 5128
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5129
  @Entry
L
update  
laosan_ted 已提交
5130 5131
  @Component
  struct WebComponent {
Y
yamila 已提交
5132
    controller: WebController = new WebController()
5133

L
update  
laosan_ted 已提交
5134 5135 5136
    build() {
      Column() {
        Button('refresh')
L
laosan_ted 已提交
5137
          .onClick(() => {
Y
yamila 已提交
5138
            this.controller.refresh()
L
laosan_ted 已提交
5139
          })
Z
zhou-liting125 已提交
5140
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5141
      }
L
update  
laosan_ted 已提交
5142 5143 5144 5145
    }
  }
  ```

L
laosan_ted 已提交
5146
### registerJavaScriptProxy<sup>(deprecated)</sup>
L
lixingchi1 已提交
5147

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

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

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

Z
zhou-liting125 已提交
5154
**参数:**
L
laosan_ted 已提交
5155

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

Z
zhou-liting125 已提交
5162
**示例:**
L
laosan_ted 已提交
5163

Z
zhou-liting125 已提交
5164 5165
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5166
  @Entry
L
update  
laosan_ted 已提交
5167 5168 5169 5170 5171
  @Component
  struct Index {
    controller: WebController = new WebController()
    testObj = {
      test: (data) => {
Y
yamila 已提交
5172
        return "ArkUI Web Component"
L
update  
laosan_ted 已提交
5173 5174
      },
      toString: () => {
Y
yamila 已提交
5175
        console.log('Web Component toString')
L
update  
laosan_ted 已提交
5176 5177 5178 5179 5180 5181 5182 5183 5184 5185
      }
    }
    build() {
      Column() {
        Row() {
          Button('Register JavaScript To Window').onClick(() => {
            this.controller.registerJavaScriptProxy({
              object: this.testObj,
              name: "objName",
              methodList: ["test", "toString"],
Y
yamila 已提交
5186
            })
L
update  
laosan_ted 已提交
5187 5188 5189 5190 5191 5192 5193 5194
          })
        }
        Web({ src: $rawfile('index.html'), controller: this.controller })
          .javaScriptAccess(true)
      }
    }
  }
  ```
5195

5196
  加载的html文件。
L
update  
laosan_ted 已提交
5197
  ```html
L
laosan_ted 已提交
5198
  <!-- index.html -->
L
update  
laosan_ted 已提交
5199 5200 5201 5202 5203 5204 5205 5206
  <!DOCTYPE html>
  <html>
      <meta charset="utf-8">
      <body>
          Hello world!
      </body>
      <script type="text/javascript">
      function htmlTest() {
Y
yamila 已提交
5207 5208
          str = objName.test("test function")
          console.log('objName.test result:'+ str)
L
update  
laosan_ted 已提交
5209 5210 5211
      }
  </script>
  </html>
5212

L
update  
laosan_ted 已提交
5213 5214
  ```

L
laosan_ted 已提交
5215
### runJavaScript<sup>(deprecated)</sup>
L
lixingchi1 已提交
5216

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

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

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

Z
zhou-liting125 已提交
5223
**参数:**
L
laosan_ted 已提交
5224

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

Z
zhou-liting125 已提交
5230
**示例:**
L
laosan_ted 已提交
5231

Z
zhou-liting125 已提交
5232 5233
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5234
  @Entry
L
update  
laosan_ted 已提交
5235 5236
  @Component
  struct WebComponent {
Y
yamila 已提交
5237
    controller: WebController = new WebController()
L
update  
laosan_ted 已提交
5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249
    @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 已提交
5250 5251
            }})
          console.info('url: ', e.url)
L
update  
laosan_ted 已提交
5252 5253 5254 5255 5256
        })
      }
    }
  }
  ```
5257
  加载的html文件。
L
update  
laosan_ted 已提交
5258
  ```html
L
laosan_ted 已提交
5259
  <!-- index.html -->
L
update  
laosan_ted 已提交
5260 5261 5262 5263 5264 5265 5266 5267
  <!DOCTYPE html>
  <html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function test() {
Y
yamila 已提交
5268
        console.log('Ark WebComponent')
L
update  
laosan_ted 已提交
5269 5270 5271 5272 5273 5274
        return "This value is from index.html"
    }
    </script>
  </html>
  ```

L
laosan_ted 已提交
5275
### stop<sup>(deprecated)</sup>
L
lixingchi1 已提交
5276

Z
zhou-liting125 已提交
5277
stop()
Z
zengyawen 已提交
5278

L
lixingchi1 已提交
5279
停止页面加载。
Z
zengyawen 已提交
5280

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

Z
zhou-liting125 已提交
5283
**示例:**
L
laosan_ted 已提交
5284

Z
zhou-liting125 已提交
5285 5286
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5287
  @Entry
L
update  
laosan_ted 已提交
5288 5289
  @Component
  struct WebComponent {
Y
yamila 已提交
5290
    controller: WebController = new WebController()
5291

L
update  
laosan_ted 已提交
5292 5293 5294
    build() {
      Column() {
        Button('stop')
L
laosan_ted 已提交
5295
          .onClick(() => {
Y
yamila 已提交
5296
            this.controller.stop()
L
laosan_ted 已提交
5297
          })
Z
zhou-liting125 已提交
5298
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5299
      }
L
update  
laosan_ted 已提交
5300 5301 5302 5303
    }
  }
  ```

L
laosan_ted 已提交
5304
### clearHistory<sup>(deprecated)</sup>
T
Ted 已提交
5305 5306 5307 5308 5309

clearHistory(): void

删除所有前进后退记录。

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

Z
zhou-liting125 已提交
5312
**示例:**
L
laosan_ted 已提交
5313

Z
zhou-liting125 已提交
5314 5315
  ```ts
  // xxx.ets
Z
zhou-liting125 已提交
5316
  @Entry
L
update  
laosan_ted 已提交
5317 5318
  @Component
  struct WebComponent {
Y
yamila 已提交
5319
    controller: WebController = new WebController()
5320

L
update  
laosan_ted 已提交
5321 5322 5323
    build() {
      Column() {
        Button('clearHistory')
L
laosan_ted 已提交
5324
          .onClick(() => {
Y
yamila 已提交
5325
            this.controller.clearHistory()
L
laosan_ted 已提交
5326
          })
Z
zhou-liting125 已提交
5327
        Web({ src: 'www.example.com', controller: this.controller })
L
laosan_ted 已提交
5328
      }
L
update  
laosan_ted 已提交
5329 5330 5331 5332
    }
  }
  ```

L
lixiang 已提交
5333
## WebCookie<sup>(deprecated)</sup>
I
i-am-a-little-bird 已提交
5334

5335
通过WebCookie可以控制Web组件中的cookie的各种行为,其中每个应用中的所有web组件共享一个WebCookie。通过controller方法中的getCookieManager方法可以获取WebCookie对象,进行后续的cookie管理操作。
I
i-am-a-little-bird 已提交
5336

L
lixiang 已提交
5337
### setCookie<sup>(deprecated)</sup>
5338

5339
setCookie(): boolean
I
i-am-a-little-bird 已提交
5340

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

H
HelloCrease 已提交
5343
从API version 9开始不再维护,建议使用[setCookie<sup>9+</sup>](../apis/js-apis-webview.md#setcookie)代替。
T
Ted 已提交
5344

Z
zhou-liting125 已提交
5345
**返回值:**
L
laosan_ted 已提交
5346

5347 5348 5349
| 类型      | 说明            |
| ------- | ------------- |
| boolean | 设置cookie是否成功。 |
5350

L
lixiang 已提交
5351
### saveCookie<sup>(deprecated)</sup>
5352

L
lixiang 已提交
5353
saveCookie(): boolean
L
update  
laosan_ted 已提交
5354

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

H
HelloCrease 已提交
5357
从API version 9开始不再维护,建议使用[saveCookieAsync<sup>9+</sup>](../apis/js-apis-webview.md#savecookieasync)代替。
5358 5359

**返回值:**
5360

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