js-apis-webview.md 190.3 KB
Newer Older
Y
yuhaoge 已提交
1 2


3
# @ohos.web.webview (Webview)
Y
yuhaoge 已提交
4

5
@ohos.web.webview提供web控制能力,[web](../arkui-ts/ts-basic-components-web.md)组件提供具有网页显示能力。
Y
yuhaoge 已提交
6 7 8 9 10 11 12

> **说明:**
>
> - 本模块接口从API Version 9开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
>
> - 示例效果请以真机运行为准,当前IDE预览器不支持。

Y
yuhaoge 已提交
13
## 需要权限
14

Y
yuhaoge 已提交
15 16
访问在线网页时需添加网络权限:ohos.permission.INTERNET,具体申请方式请参考[权限申请声明](../../security/accesstoken-guidelines.md)

Y
yuhaoge 已提交
17 18 19 20 21
## 导入模块

```ts
import web_webview from '@ohos.web.webview';
```
Y
yuhaoge 已提交
22

L
lixiang 已提交
23
## once
Y
yuhaoge 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45

once(type: string, callback: Callback\<void\>): void

订阅一次指定类型Web事件的回调。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名  | 类型              | 必填 | 说明                  |
| ------- | ---------------- | ---- | -------------------- |
| type     | string          | 是   | Web事件的类型,目前支持:"webInited"(Web初始化完成)。      |
| headers | Callback\<void\> | 是   | 所订阅的回调函数。 |

**示例:**

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

web_webview.once("webInited", () => {
  console.log("setCookie")
L
lixiang 已提交
46
  web_webview.WebCookieManager.setCookie("https://www.example.com", "a=b")
Y
yuhaoge 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
})

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

  build() {
    Column() {
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
62 63 64 65 66 67
## WebMessagePort

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

### postMessageEvent

E
echoorchid 已提交
68
postMessageEvent(message: WebMessage): void
Y
yuhaoge 已提交
69

E
echoorchid 已提交
70
发送消息。完整示例代码参考[postMessage](#postmessage)
Y
yuhaoge 已提交
71

Y
yuhaoge 已提交
72
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
73 74 75

**参数:**

L
laosan_ted 已提交
76 77
| 参数名  | 类型   | 必填 | 说明           |
| ------- | ------ | ---- | :------------- |
E
echoorchid 已提交
78
| message | [WebMessage](#webmessage) | 是   | 要发送的消息。 |
Y
yuhaoge 已提交
79

L
laosan_ted 已提交
80
**错误码:**
Y
yuhaoge 已提交
81

L
1111  
lixiang 已提交
82
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100010 | Can not post message using this port. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  ports: web_webview.WebMessagePort[];

  build() {
    Column() {
      Button('postMessageEvent')
        .onClick(() => {
          try {
            this.ports = this.controller.createWebMessagePorts();
            this.controller.postMessage('__init_port__', [this.ports[0]], '*');
            this.ports[1].postMessageEvent("post message from ets to html5");
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### onMessageEvent

E
echoorchid 已提交
120
onMessageEvent(callback: (result: WebMessage) => void): void
Y
yuhaoge 已提交
121

E
echoorchid 已提交
122
注册回调函数,接收HTML5侧发送过来的消息。完整示例代码参考[postMessage](#postmessage)
Y
yuhaoge 已提交
123

Y
yuhaoge 已提交
124
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
125 126 127

**参数:**

L
laosan_ted 已提交
128 129
| 参数名   | 类型     | 必填 | 说明                 |
| -------- | -------- | ---- | :------------------- |
E
echoorchid 已提交
130
| result | [WebMessage](#webmessage) | 是   | 接收到的消息。 |
Y
yuhaoge 已提交
131

L
laosan_ted 已提交
132
**错误码:**
Y
yuhaoge 已提交
133

L
1111  
lixiang 已提交
134
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158

| 错误码ID | 错误信息                                        |
| -------- | ----------------------------------------------- |
| 17100006 | Can not register message event using this port. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  ports: web_webview.WebMessagePort[];

  build() {
    Column() {
      Button('onMessageEvent')
        .onClick(() => {
          try {
            this.ports = this.controller.createWebMessagePorts();
            this.ports[1].onMessageEvent((msg) => {
E
echoorchid 已提交
159 160 161 162 163 164 165 166 167 168 169
              if (typeof(msg) == "string") {
                console.log("received string message from html5, string is:" + msg);
              } else if (typeof(msg) == "object") {
                if (msg instanceof ArrayBuffer) {
                  console.log("received arraybuffer from html5, length is:" + msg.byteLength);
                } else {
                  console.log("not support");
                }
              } else {
                console.log("not support");
              }
Y
yuhaoge 已提交
170 171 172 173 174 175 176 177 178 179 180
            })
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

E
echoorchid 已提交
181 182 183 184 185 186 187 188 189 190 191 192
### isExtentionType<sup>10+</sup>

**系统能力:** SystemCapability.Web.Webview.Core

| 名称         | 类型   | 可读 | 可写 | 说明                                              |
| ------------ | ------ | ---- | ---- | ------------------------------------------------|
| isExtentionType | boolean | 是   | 否 | 创建WebMessagePort时是否指定使用扩展增强接口。   |

### postMessageEventExt<sup>10+</sup>

postMessageEventExt(message: WebMessageExt): void

E
echoorchid 已提交
193
发送消息。完整示例代码参考[onMessageEventExt](#onmessageeventext10)
E
echoorchid 已提交
194 195 196 197 198 199 200

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名  | 类型   | 必填 | 说明           |
| ------- | ------ | ---- | :------------- |
201
| message | [WebMessageExt](#webmessageext10) | 是   | 要发送的消息。 |
E
echoorchid 已提交
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100010 | Can not post message using this port. |


### onMessageEventExt<sup>10+</sup>

onMessageEventExt(callback: (result: WebMessageExt) => void): void

注册回调函数,接收HTML5侧发送过来的消息。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型     | 必填 | 说明                 |
| -------- | -------- | ---- | :------------------- |
E
echoorchid 已提交
224
| result | [WebMessageExt](#webmessageext10) | 是   | 接收到的消息。 |
E
echoorchid 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)

| 错误码ID | 错误信息                                        |
| -------- | ----------------------------------------------- |
| 17100006 | Can not register message event using this port. |

**示例:**

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

E
echoorchid 已提交
240
// 应用与网页互发消息的示例:使用"init_web_messageport"的通道,通过端口0在应用侧接受网页发送的消息,通过端口1在网页侧接受应用发送的消息。
E
echoorchid 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  ports: web_webview.WebMessagePort[] = null;
  nativePort: web_webview.WebMessagePort = null;
  @State msg1:string = "";
  @State msg2:string = "";
  message: web_webview.WebMessageExt = new web_webview.WebMessageExt();
  build() {
    Column() {
      Text(this.msg1).fontSize(16)
      Text(this.msg2).fontSize(16)
      Button('SendToH5')
        .onClick(() => {
E
echoorchid 已提交
256
          // 使用本侧端口发送消息给HTML5
E
echoorchid 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
          try {
              console.log("In eTS side send true start");
              if (this.nativePort) {
                  this.message.setString("helloFromEts");
                  this.nativePort.postMessageEventExt(this.message);
              }
          }
          catch (error) {
              console.log("In eTS side send message catch error:" + error.code + ", msg:" + error.message);
          }
        })

      Web({ src: $rawfile('index.html'), controller: this.controller })
      .onPageEnd((e)=>{
        console.log("In eTS side message onPageEnd init mesaage channel");
E
echoorchid 已提交
272
        // 1. 创建消息端口
E
echoorchid 已提交
273
        this.ports = this.controller.createWebMessagePorts(true);
E
echoorchid 已提交
274 275 276
        // 2. 发送端口1到HTML5
        this.controller.postMessage("init_web_messageport", [this.ports[1]], "*");
        // 3. 保存端口0到本地
E
echoorchid 已提交
277
        this.nativePort = this.ports[0];
E
echoorchid 已提交
278
        // 4. 设置回调函数
E
echoorchid 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
        this.nativePort.onMessageEventExt((result) => {
            console.log("In eTS side got message");
            try {
                var type = result.getType();
                console.log("In eTS side getType:" + type);
                switch (type) {
                    case web_webview.WebMessageType.STRING: {
                        this.msg1 = "result type:" + typeof (result.getString());
                        this.msg2 = "result getString:" + ((result.getString()));
                        break;
                    }
                    case web_webview.WebMessageType.NUMBER: {
                        this.msg1 = "result type:" + typeof (result.getNumber());
                        this.msg2 = "result getNumber:" + ((result.getNumber()));
                        break;
                    }
                    case web_webview.WebMessageType.BOOLEAN: {
                        this.msg1 = "result type:" + typeof (result.getBoolean());
                        this.msg2 = "result getBoolean:" + ((result.getBoolean()));
                        break;
                    }
                    case web_webview.WebMessageType.ARRAY_BUFFER: {
                        this.msg1 = "result type:" + typeof (result.getArrayBuffer());
                        this.msg2 = "result getArrayBuffer byteLength:" + ((result.getArrayBuffer().byteLength));
                        break;
                    }
                    case web_webview.WebMessageType.ARRAY: {
                        this.msg1 = "result type:" + typeof (result.getArray());
                        this.msg2 = "result getArray:" + result.getArray();
                        break;
                    }
                    case web_webview.WebMessageType.ERROR: {
                        this.msg1 = "result type:" + typeof (result.getError());
                        this.msg2 = "result getError:" + result.getError();
                        break;
                    }
                    default: {
                        this.msg1 = "default break, type:" + type;
                        break;
                    }
                }
            }
            catch (resError) {
                console.log(`log error code: ${resError.code}, Message: ${resError.message}`);
            }
        });
      })
    }
  }
}
E
echoorchid 已提交
329
```
E
echoorchid 已提交
330

331
加载的html文件。
E
echoorchid 已提交
332 333
```html
<!--index.html-->
E
echoorchid 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
<!DOCTYPE html>
<html lang="en-gb">
<head>
    <title>WebView MessagePort Demo</title>
</head>

<body>
<h1>Html5 Send and Receive Message</h1>
<h3 id="msg">Receive string:</h3>
<h3 id="msg2">Receive arraybuffer:</h3>
<div style="font-size: 10pt; text-align: center;">
    <input type="button" value="Send String" onclick="postStringToApp();" /><br/>
</div>
</body>
<script src="index.js"></script>
</html>
E
echoorchid 已提交
350
```
E
echoorchid 已提交
351

E
echoorchid 已提交
352
```js
E
echoorchid 已提交
353 354 355
//index.js
var h5Port;
window.addEventListener('message', function(event) {
E
echoorchid 已提交
356
    if (event.data == 'init_web_messageport') {
E
echoorchid 已提交
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
        if(event.ports[0] != null) {
            h5Port = event.ports[0]; // 1. 保存从ets侧发送过来的端口
            h5Port.onmessage = function(event) {
                console.log("hwd In html got message");
                // 2. 接收ets侧发送过来的消息.
                var result = event.data;
                console.log("In html got message, typeof: ", typeof(result));
                console.log("In html got message, result: ", (result));
                if (typeof(result) == "string") {
                    console.log("In html got message, String: ", result);
                    document.getElementById("msg").innerHTML  =  "String:" + result;
                } else if (typeof(result) == "number") {
                  console.log("In html side got message, number: ", result);
                    document.getElementById("msg").innerHTML = "Number:" + result;
                } else if (typeof(result) == "boolean") {
                    console.log("In html side got message, boolean: ", result);
                    document.getElementById("msg").innerHTML = "Boolean:" + result;
                } else if (typeof(result) == "object") {
                    if (result instanceof ArrayBuffer) {
                        document.getElementById("msg2").innerHTML  =  "ArrayBuffer:" + result.byteLength;
                        console.log("In html got message, byteLength: ", result.byteLength);
                    } else if (result instanceof Error) {
                        console.log("In html error message, err:" + (result));
                        console.log("In html error message, typeof err:" + typeof(result));
                        document.getElementById("msg2").innerHTML  =  "Error:" + result.name + ", msg:" + result.message;
                    } else if (result instanceof Array) {
                        console.log("In html got message, Array");
                        console.log("In html got message, Array length:" + result.length);
                        console.log("In html got message, Array[0]:" + (result[0]));
                        console.log("In html got message, typeof Array[0]:" + typeof(result[0]));
                        document.getElementById("msg2").innerHTML  =  "Array len:" + result.length + ", value:" + result;
                    } else {
                        console.log("In html got message, not any instance of support type");
                        document.getElementById("msg").innerHTML  = "not any instance of support type";
                    }
                } else {
                    console.log("In html got message, not support type");
                    document.getElementById("msg").innerHTML  = "not support type";
                }
            }
            h5Port.onmessageerror = (event) => {
                console.error(`hwd In html Error receiving message: ${event}`);
            };
        }
    }
})

// 使用h5Port往ets侧发送String类型的消息.
function postStringToApp() {
    if (h5Port) {
        console.log("In html send string message");
        h5Port.postMessage("hello");
        console.log("In html send string message end");
    } else {
        console.error("In html h5port is null, please init first");
    }
}
```

L
lixiang 已提交
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
### close

close(): void

关闭该消息端口。在使用close前,请先使用[createWebMessagePorts](#createwebmessageports)创建消息端口。

**系统能力:** SystemCapability.Web.Webview.Core

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  msgPort: web_webview.WebMessagePort[] = null;

  build() {
    Column() {
      // 先使用createWebMessagePorts创建端口。
      Button('createWebMessagePorts')
        .onClick(() => {
          try {
            this.msgPort = this.controller.createWebMessagePorts();
            console.log("createWebMessagePorts size:" + this.msgPort.length)
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Button('close')
        .onClick(() => {
          try {
451
            if (this.msgPort && this.msgPort.length == 2) {
L
lixiang 已提交
452 453 454 455 456 457 458 459 460 461 462 463 464 465
              this.msgPort[1].close();
            } else {
              console.error("msgPort is null, Please initialize first");
            }
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }      
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
466 467
## WebviewController

L
Lei Gao 已提交
468 469 470 471 472 473 474 475 476 477 478 479
通过WebviewController可以控制Web组件各种行为。一个WebviewController对象只能控制一个Web组件,且必须在Web组件和WebviewController绑定后,才能调用WebviewController上的方法(静态方法除外)。

### initializeWebEngine

static initializeWebEngine(): void

在 Web 组件初始化之前,通过此接口加载 Web 引擎的动态库文件,以提高启动性能。

**系统能力:** SystemCapability.Web.Webview.Core

**示例:**

480
本示例以EntryAbility为例,描述了在 Ability 创建阶段完成 Web 组件动态库加载的功能。
L
Lei Gao 已提交
481 482 483

```ts
// xxx.ts
484 485
import UIAbility from '@ohos.app.ability.UIAbility';
import web_webview from '@ohos.web.webview';
L
Lei Gao 已提交
486

487
export default class EntryAbility extends UIAbility {
L
Lei Gao 已提交
488
    onCreate(want, launchParam) {
489
        console.log("EntryAbility onCreate")
L
Lei Gao 已提交
490
        web_webview.WebviewController.initializeWebEngine()
491
        console.log("EntryAbility onCreate done")
L
Lei Gao 已提交
492 493 494
    }
}
```
Y
yuhaoge 已提交
495

496
### setHttpDns<sup>10+</sup>
W
w00477664 已提交
497 498 499 500 501 502 503 504 505 506 507

static setHttpDns(secureDnsMode:SecureDnsMode, secureDnsConfig:string): void

设置Web组件是否使用HTTPDNS解析dns。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名              | 类型    | 必填   |  说明 |
| ------------------ | ------- | ---- | ------------- |
508
| secureDnsMode         |   [SecureDnsMode](#securednsmode10)   | 是   | 使用HTTPDNS的模式。|
W
w00477664 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
| secureDnsConfig       | string | 是 | HTTPDNS server的配置,必须是https协议并且只允许配置一个server。 |

**示例:**

```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) {
        console.log("EntryAbility onCreate")
        try {
            web_webview.WebviewController.setHttpDns(web_webview.SecureDnsMode.Auto, "https://example1.test")
        } catch(error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
        }

        globalThis.abilityWant = want
        console.log("EntryAbility onCreate done")
    }
}
```

533 534 535 536
### setWebDebuggingAccess

static setWebDebuggingAccess(webDebuggingAccess: boolean): void

L
lixiang 已提交
537
设置是否启用网页调试功能。详情请参考[Devtools工具](../../web/web-debugging-with-devtools.md)
538 539 540 541 542 543 544 545 546

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名              | 类型    | 必填   |  说明 |
| ------------------ | ------- | ---- | ------------- |
| webDebuggingAccess | boolean | 是   | 设置是否启用网页调试功能。|

L
1111  
lixiang 已提交
547 548
**示例:**

549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
```ts
// xxx.ets
import web_webview from '@ohos.web.webview';

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

  aboutToAppear():void {
    try {
      web_webview.WebviewController.setWebDebuggingAccess(true);
    } catch(error) {
      console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
    }
  }

  build() {
    Column() {
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
574 575
### loadUrl

Y
yuhaoge 已提交
576
loadUrl(url: string | Resource, headers?: Array\<WebHeader>): void
Y
yuhaoge 已提交
577 578 579

加载指定的URL。

Y
yuhaoge 已提交
580
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
581 582 583

**参数:**

L
laosan_ted 已提交
584 585
| 参数名  | 类型             | 必填 | 说明                  |
| ------- | ---------------- | ---- | :-------------------- |
L
laosan_ted 已提交
586
| url     | string \| Resource | 是   | 需要加载的 URL。      |
Y
yuhaoge 已提交
587
| headers | Array\<[WebHeader](#webheader)> | 否   | URL的附加HTTP请求头。 |
Y
yuhaoge 已提交
588

L
laosan_ted 已提交
589
**错误码:**
Y
yuhaoge 已提交
590

L
1111  
lixiang 已提交
591
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
592 593 594 595 596

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 17100002 | Invalid url.                                                 |
L
laosan_ted 已提交
597
| 17100003 | Invalid resource path or file type.                          |
Y
yuhaoge 已提交
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614

**示例:**

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

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

  build() {
    Column() {
      Button('loadUrl')
        .onClick(() => {
          try {
L
lixiang 已提交
615
            // 需要加载的URL是string类型。
Y
yuhaoge 已提交
616 617 618 619 620 621 622 623 624 625 626
            this.controller.loadUrl('www.example.com');
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

L
1111  
lixiang 已提交
627 628 629 630 631 632 633 634 635 636 637 638 639 640
```ts
// xxx.ets
import web_webview from '@ohos.web.webview'

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

  build() {
    Column() {
      Button('loadUrl')
        .onClick(() => {
          try {
L
lixiang 已提交
641
            // 带参数headers。
L
1111  
lixiang 已提交
642 643 644 645 646 647 648 649 650 651 652
            this.controller.loadUrl('www.example.com', [{headerKey: "headerKey", headerValue: "headerValue"}]);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

653
加载本地网页,加载本地资源文件有三种方式。
L
lixiang 已提交
654

655
1.$rawfile方式。
L
1111  
lixiang 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669
```ts
// xxx.ets
import web_webview from '@ohos.web.webview'

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

  build() {
    Column() {
      Button('loadUrl')
        .onClick(() => {
          try {
L
lixiang 已提交
670
            // 通过$rawfile加载本地资源文件。
671
            this.controller.loadUrl($rawfile('index.html'));
L
1111  
lixiang 已提交
672 673 674 675 676 677 678 679 680
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```
L
lixiang 已提交
681

682
2.resources协议。
L
lixiang 已提交
683 684 685 686 687 688 689 690 691 692 693 694 695 696
```ts
// xxx.ets
import web_webview from '@ohos.web.webview'

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

  build() {
    Column() {
      Button('loadUrl')
        .onClick(() => {
          try {
L
lixiang 已提交
697
            // 通过resource协议加载本地资源文件。
698
            this.controller.loadUrl("resource://rawfile/index.html");
L
lixiang 已提交
699 700 701 702 703 704 705 706 707 708
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

709 710
3.通过沙箱路径加载本地文件,可以参考[web](../arkui-ts/ts-basic-components-web.md#web)加载沙箱路径的示例代码。

711
加载的html文件。
L
1111  
lixiang 已提交
712
```html
713
<!-- index.html -->
L
1111  
lixiang 已提交
714 715 716 717 718 719 720 721
<!DOCTYPE html>
<html>
  <body>
    <p>Hello World</p>
  </body>
</html>
```

Y
yuhaoge 已提交
722 723 724 725 726 727
### loadData

loadData(data: string, mimeType: string, encoding: string, baseUrl?: string, historyUrl?: string): void

加载指定的数据。

Y
yuhaoge 已提交
728
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
729

730
**参数:**
Y
yuhaoge 已提交
731

L
laosan_ted 已提交
732 733 734 735 736 737
| 参数名     | 类型   | 必填 | 说明                                                         |
| ---------- | ------ | ---- | ------------------------------------------------------------ |
| data       | string | 是   | 按照”Base64“或者”URL"编码后的一段字符串。                    |
| mimeType   | string | 是   | 媒体类型(MIME)。                                           |
| encoding   | string | 是   | 编码类型,具体为“Base64"或者”URL编码。                       |
| baseUrl    | string | 否   | 指定的一个URL路径(“http”/“https”/"data"协议),并由Web组件赋值给window.origin。 |
L
laosan_ted 已提交
738
| historyUrl | string | 否   | 用作历史记录所使用的URL。非空时,历史记录以此URL进行管理。当baseUrl为空时,此属性无效。 |
Y
yuhaoge 已提交
739

740 741 742 743 744
> **说明:**
> 
> 若加载本地图片,可以给baseUrl或historyUrl任一参数赋值空格,详情请参考示例代码。
> 加载本地图片场景,baseUrl和historyUrl不能同时为空,否则图片无法成功加载。

L
laosan_ted 已提交
745
**错误码:**
Y
yuhaoge 已提交
746

L
1111  
lixiang 已提交
747
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
748 749 750 751

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
L
laosan_ted 已提交
752
| 17100002 | Invalid url.                                                 |
Y
yuhaoge 已提交
753

754
**示例:**
Y
yuhaoge 已提交
755

Y
yuhaoge 已提交
756
```ts
Y
yuhaoge 已提交
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
// xxx.ets
import web_webview from '@ohos.web.webview'

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

  build() {
    Column() {
      Button('loadData')
        .onClick(() => {
          try {
            this.controller.loadData(
              "<html><body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
              "text/html",
              "UTF-8"
            );
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
Y
yuhaoge 已提交
783
```
Y
yuhaoge 已提交
784

L
lixiang 已提交
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
加载本地资源
```ts
// xxx.ets
import web_webview from '@ohos.web.webview'

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  updataContent: string = '<body><div><image src=resource://rawfile/xxx.png alt="image -- end" width="500" height="250"></image></div></body>'

  build() {
    Column() {
      Button('loadData')
        .onClick(() => {
          try {
            this.controller.loadData(this.updataContent, "text/html", "UTF-8", " ", " ");
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### accessForward
Y
yuhaoge 已提交
813 814 815 816 817

accessForward(): boolean

当前页面是否可前进,即当前页面是否有前进历史记录。

Y
yuhaoge 已提交
818
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
819

820
**返回值:**
Y
yuhaoge 已提交
821 822 823 824 825

| 类型    | 说明                              |
| ------- | --------------------------------- |
| boolean | 可以前进返回true,否则返回false。 |

L
laosan_ted 已提交
826
**错误码:**
Y
yuhaoge 已提交
827

L
1111  
lixiang 已提交
828
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
829 830 831 832 833

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

834
**示例:**
Y
yuhaoge 已提交
835

Y
yuhaoge 已提交
836
```ts
Y
yuhaoge 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
// xxx.ets
import web_webview from '@ohos.web.webview'

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

  build() {
    Column() {
      Button('accessForward')
        .onClick(() => {
          try {
            let result = this.controller.accessForward();
            console.log('result:' + result);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
Y
yuhaoge 已提交
860 861 862 863 864 865 866 867
```

### forward

forward(): void

按照历史栈,前进一个页面。一般结合accessForward一起使用。

Y
yuhaoge 已提交
868
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
869

L
laosan_ted 已提交
870
**错误码:**
Y
yuhaoge 已提交
871

L
1111  
lixiang 已提交
872
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
873 874 875 876 877

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

878
**示例:**
Y
yuhaoge 已提交
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903

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

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

  build() {
    Column() {
      Button('forward')
        .onClick(() => {
          try {
            this.controller.forward();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```
Y
yuhaoge 已提交
904 905 906 907 908 909 910

### accessBackward

accessBackward(): boolean

当前页面是否可后退,即当前页面是否有返回历史记录。

Y
yuhaoge 已提交
911
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
912 913 914 915 916 917 918 919 920

**返回值:**

| 类型    | 说明                             |
| ------- | -------------------------------- |
| boolean | 可以后退返回true,否则返回false。 |

**错误码:**

L
1111  
lixiang 已提交
921
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('accessBackward')
        .onClick(() => {
          try {
            let result = this.controller.accessBackward();
            console.log('result:' + result);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
955 956 957 958 959 960
### backward

backward(): void

按照历史栈,后退一个页面。一般结合accessBackward一起使用。

Y
yuhaoge 已提交
961
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
962

L
laosan_ted 已提交
963
**错误码:**
Y
yuhaoge 已提交
964

L
1111  
lixiang 已提交
965
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
966 967 968 969 970

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

971
**示例:**
Y
yuhaoge 已提交
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997

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

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

  build() {
    Column() {
      Button('backward')
        .onClick(() => {
          try {
            this.controller.backward();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
998 999 1000 1001 1002 1003
### onActive

onActive(): void

调用此接口通知Web组件进入前台激活状态。

Y
yuhaoge 已提交
1004
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1005 1006 1007

**错误码:**

L
1111  
lixiang 已提交
1008
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('onActive')
        .onClick(() => {
          try {
            this.controller.onActive();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### onInactive

onInactive(): void

调用此接口通知Web组件进入未激活状态。

Y
yuhaoge 已提交
1047
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1048 1049 1050

**错误码:**

L
1111  
lixiang 已提交
1051
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('onInactive')
        .onClick(() => {
          try {
            this.controller.onInactive();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### refresh
Y
yuhaoge 已提交
1085
refresh(): void
Y
yuhaoge 已提交
1086 1087 1088

调用此接口通知Web组件刷新网页。

Y
yuhaoge 已提交
1089
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1090 1091 1092

**错误码:**

L
1111  
lixiang 已提交
1093
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('refresh')
        .onClick(() => {
          try {
            this.controller.refresh();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### accessStep

accessStep(step: number): boolean

当前页面是否可前进或者后退给定的step步。

Y
yuhaoge 已提交
1132
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1133 1134 1135

**参数:**

L
laosan_ted 已提交
1136 1137 1138
| 参数名 | 类型 | 必填 | 说明                                   |
| ------ | -------- | ---- | ------------------------------------------ |
| step   | number   | 是   | 要跳转的步数,正数代表前进,负数代表后退。 |
Y
yuhaoge 已提交
1139 1140 1141 1142 1143 1144 1145 1146 1147

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
1148
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
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 1184 1185 1186 1187 1188

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State steps: number = 2;

  build() {
    Column() {
      Button('accessStep')
        .onClick(() => {
          try {
            let result = this.controller.accessStep(this.steps);
            console.log('result:' + result);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### clearHistory

clearHistory(): void

删除所有前进后退记录。

Y
yuhaoge 已提交
1189
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1190 1191 1192

**错误码:**

L
1111  
lixiang 已提交
1193
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('clearHistory')
        .onClick(() => {
          try {
            this.controller.clearHistory();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getHitTest

Y
yuhaoge 已提交
1228
getHitTest(): WebHitTestType
Y
yuhaoge 已提交
1229 1230 1231

获取当前被点击区域的元素类型。

Y
yuhaoge 已提交
1232
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1233 1234 1235 1236 1237

**返回值:**

| 类型                                                         | 说明                   |
| ------------------------------------------------------------ | ---------------------- |
Y
yuhaoge 已提交
1238
| [WebHitTestType](#webhittesttype)| 被点击区域的元素类型。 |
Y
yuhaoge 已提交
1239 1240 1241

**错误码:**

L
1111  
lixiang 已提交
1242
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('getHitTest')
        .onClick(() => {
          try {
            let hitTestType = this.controller.getHitTest();
            console.log("hitTestType: " + hitTestType);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### registerJavaScriptProxy

Y
yuhaoge 已提交
1278
registerJavaScriptProxy(object: object, name: string, methodList: Array\<string>): void
Y
yuhaoge 已提交
1279 1280 1281

注入JavaScript对象到window对象中,并在window对象中调用该对象的方法。注册后,须调用[refresh](#refresh)接口生效。

Y
yuhaoge 已提交
1282
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1283 1284 1285

**参数:**

L
laosan_ted 已提交
1286 1287 1288 1289 1290
| 参数名     | 类型       | 必填 | 说明                                        |
| ---------- | -------------- | ---- | ------------------------------------------------------------ |
| object     | object         | 是   | 参与注册的应用侧JavaScript对象。只能声明方法,不能声明属性 。其中方法的参数和返回类型只能为string,number,boolean |
| name       | string         | 是   | 注册对象的名称,与window中调用的对象名一致。注册后window对象可以通过此名字访问应用侧JavaScript对象。 |
| methodList | Array\<string> | 是   | 参与注册的应用侧JavaScript对象的方法。                       |
Y
yuhaoge 已提交
1291 1292 1293

**错误码:**

L
1111  
lixiang 已提交
1294
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)
Y
yuhaoge 已提交
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

@Entry
@Component
struct Index {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  testObj = {
    test: (data) => {
      return "ArkUI Web Component";
    },
    toString: () => {
      console.log('Web Component toString');
    }
  }

  build() {
    Column() {
L
laosan_ted 已提交
1321 1322 1323 1324 1325 1326 1327 1328
      Button('refresh')
        .onClick(() => {
          try {
            this.controller.refresh();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
Y
yuhaoge 已提交
1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343
      Button('Register JavaScript To Window')
        .onClick(() => {
          try {
            this.controller.registerJavaScriptProxy(this.testObj, "objName", ["test", "toString"]);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
    }
  }
}
```

1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
加载的html文件。
```html
<!-- index.html -->
<!DOCTYPE html>
<html>
    <meta charset="utf-8">
    <body>
        Hello world!
    </body>
    <script type="text/javascript">
    function htmlTest() {
        str = objName.test("test function")
        console.log('objName.test result:'+ str)
    }
</script>
</html>

Y
yuhaoge 已提交
1361 1362 1363 1364 1365 1366
### runJavaScript

runJavaScript(script: string, callback : AsyncCallback\<string>): void

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

Y
yuhaoge 已提交
1367
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1368 1369 1370

**参数:**

L
laosan_ted 已提交
1371 1372 1373
| 参数名   | 类型                 | 必填 | 说明                         |
| -------- | -------------------- | ---- | ---------------------------- |
| script   | string                   | 是   | JavaScript脚本。                                             |
L
laosan_ted 已提交
1374
| callback | AsyncCallback\<string> | 是   | 回调执行JavaScript脚本结果。JavaScript脚本若执行失败或无返回值时,返回null。 |
Y
yuhaoge 已提交
1375 1376 1377

**错误码:**

L
1111  
lixiang 已提交
1378
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
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 1415 1416 1417 1418 1419 1420 1421 1422 1423

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

```ts
import web_webview from '@ohos.web.webview'

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State webResult: string = ''

  build() {
    Column() {
      Text(this.webResult).fontSize(20)
      Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          try {
            this.controller.runJavaScript(
              'test()',
              (error, result) => {
                if (error) {
                  console.info(`run JavaScript error: ` + JSON.stringify(error))
                  return;
                }
                if (result) {
                  this.webResult = result
                  console.info(`The test() return value is: ${result}`)
                }
              });
            console.info('url: ', e.url);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
    }
  }
}
```

1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
加载的html文件。
```html
<!-- index.html -->
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <body>
      Hello world!
  </body>
  <script type="text/javascript">
  function test() {
      console.log('Ark WebComponent')
      return "This value is from index.html"
  }
  </script>
</html>
```

Y
yuhaoge 已提交
1442 1443 1444 1445 1446 1447
### runJavaScript

runJavaScript(script: string): Promise\<string>

异步执行JavaScript脚本,并通过Promise方式返回脚本执行的结果。runJavaScript需要在loadUrl完成后,比如onPageEnd中调用。

Y
yuhaoge 已提交
1448
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1449 1450 1451

**参数:**

L
laosan_ted 已提交
1452 1453 1454
| 参数名 | 类型 | 必填 | 说明         |
| ------ | -------- | ---- | ---------------- |
| script | string   | 是   | JavaScript脚本。 |
Y
yuhaoge 已提交
1455

1456
**返回值:**
Y
yuhaoge 已提交
1457 1458 1459 1460 1461 1462 1463

| 类型            | 说明                                                |
| --------------- | --------------------------------------------------- |
| Promise\<string> | Promise实例,返回脚本执行的结果,执行失败返回null。 |

**错误码:**

L
1111  
lixiang 已提交
1464
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State webResult: string = '';

  build() {
    Column() {
      Text(this.webResult).fontSize(20)
      Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          try {
            this.controller.runJavaScript('test()')
              .then(function (result) {
                console.log('result: ' + result);
              })
              .catch(function (error) {
                console.error("error: " + error);
              })
            console.info('url: ', e.url);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
    }
  }
}
```

1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
加载的html文件。
```html
<!-- index.html -->
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <body>
      Hello world!
  </body>
  <script type="text/javascript">
  function test() {
      console.log('Ark WebComponent')
      return "This value is from index.html"
  }
  </script>
</html>
```
E
echoorchid 已提交
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621

### runJavaScriptExt<sup>10+</sup>

runJavaScriptExt(script: string, callback : AsyncCallback\<JsMessageExt>): void

异步执行JavaScript脚本,并通过回调方式返回脚本执行的结果。runJavaScriptExt需要在loadUrl完成后,比如onPageEnd中调用。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型                 | 必填 | 说明                         |
| -------- | -------------------- | ---- | ---------------------------- |
| script   | string                   | 是   | JavaScript脚本。                                             |
| callback | AsyncCallback\<[JsMessageExt](#jsmessageext10)\> | 是   | 回调执行JavaScript脚本结果。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

```ts
import web_webview from '@ohos.web.webview'

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State msg1: string = ''
  @State msg2: string = ''

  build() {
    Column() {
      Text(this.msg1).fontSize(20)
      Text(this.msg2).fontSize(20)
      Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
          try {
            this.controller.runJavaScriptExt(
              'test()',
              (error, result) => {
                if (error) {
                  console.info(`run JavaScript error: ` + JSON.stringify(error))
                  return;
                }
                if (result) {
                  try {
                      var type = result.getType();
                      switch (type) {
                          case web_webview.JsMessageType.STRING: {
                              this.msg1 = "result type:" + typeof (result.getString());
                              this.msg2 = "result getString:" + ((result.getString()));
                              break;
                          }
                          case web_webview.JsMessageType.NUMBER: {
                              this.msg1 = "result type:" + typeof (result.getNumber());
                              this.msg2 = "result getNumber:" + ((result.getNumber()));
                              break;
                          }
                          case web_webview.JsMessageType.BOOLEAN: {
                              this.msg1 = "result type:" + typeof (result.getBoolean());
                              this.msg2 = "result getBoolean:" + ((result.getBoolean()));
                              break;
                          }
                          case web_webview.JsMessageType.ARRAY_BUFFER: {
                              this.msg1 = "result type:" + typeof (result.getArrayBuffer());
                              this.msg2 = "result getArrayBuffer byteLength:" + ((result.getArrayBuffer().byteLength));
                              break;
                          }
                          case web_webview.JsMessageType.ARRAY: {
                              this.msg1 = "result type:" + typeof (result.getArray());
                              this.msg2 = "result getArray:" + result.getArray();
                              break;
                          }
                          default: {
                              this.msg1 = "default break, type:" + type;
                              break;
                          }
                      }
                  }
                  catch (resError) {
                      console.log(`log error code: ${resError.code}, Message: ${resError.message}`);
                  }
                }
              });
            console.info('url: ', e.url);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
    }
  }
}
1622
```
E
echoorchid 已提交
1623

1624 1625 1626
加载的html文件。
```html
<!-- index.html -->
E
echoorchid 已提交
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 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 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
<!DOCTYPE html>
<html lang="en-gb">
<body>
<h1>run JavaScript Ext demo</h1>
</body>
<script type="text/javascript">
function test() {
  return "hello, world";
}
</script>
</html>
```

### runJavaScriptExt<sup>10+</sup>

runJavaScriptExt(script: string): Promise\<JsMessageExt>

异步执行JavaScript脚本,并通过Promise方式返回脚本执行的结果。runJavaScriptExt需要在loadUrl完成后,比如onPageEnd中调用。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明         |
| ------ | -------- | ---- | ---------------- |
| script | string   | 是   | JavaScript脚本。 |

**返回值:**

| 类型            | 说明                                                |
| --------------- | --------------------------------------------------- |
| Promise\<[JsMessageExt](#jsmessageext10)> | Promise实例,返回脚本执行的结果。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State webResult: string = '';
  @State msg1: string = ''
  @State msg2: string = ''

  build() {
    Column() {
      Text(this.webResult).fontSize(20)
      Text(this.msg1).fontSize(20)
      Text(this.msg2).fontSize(20)
      Web({ src: $rawfile('index.html'), controller: this.controller })
        .javaScriptAccess(true)
        .onPageEnd(e => {
            this.controller.runJavaScriptExt('test()')
              .then((result) => {
                  try {
                      var type = result.getType();
                      switch (type) {
                          case web_webview.JsMessageType.STRING: {
                              this.msg1 = "result type:" + typeof (result.getString());
                              this.msg2 = "result getString:" + ((result.getString()));
                              break;
                          }
                          case web_webview.JsMessageType.NUMBER: {
                              this.msg1 = "result type:" + typeof (result.getNumber());
                              this.msg2 = "result getNumber:" + ((result.getNumber()));
                              break;
                          }
                          case web_webview.JsMessageType.BOOLEAN: {
                              this.msg1 = "result type:" + typeof (result.getBoolean());
                              this.msg2 = "result getBoolean:" + ((result.getBoolean()));
                              break;
                          }
                          case web_webview.JsMessageType.ARRAY_BUFFER: {
                              this.msg1 = "result type:" + typeof (result.getArrayBuffer());
                              this.msg2 = "result getArrayBuffer byteLength:" + ((result.getArrayBuffer().byteLength));
                              break;
                          }
                          case web_webview.JsMessageType.ARRAY: {
                              this.msg1 = "result type:" + typeof (result.getArray());
                              this.msg2 = "result getArray:" + result.getArray();
                              break;
                          }
                          default: {
                              this.msg1 = "default break, type:" + type;
                              break;
                          }
                      }
                  }
                  catch (resError) {
                      console.log(`log error code: ${resError.code}, Message: ${resError.message}`);
                  }
              })
              .catch(function (error) {
                console.error("error: " + error);
              })
        })
    }
  }
}
1737
```
E
echoorchid 已提交
1738

1739 1740 1741
加载的html文件。
```html
<!-- index.html -->
E
echoorchid 已提交
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
<!DOCTYPE html>
<html lang="en-gb">
<body>
<h1>run JavaScript Ext demo</h1>
</body>
<script type="text/javascript">
function test() {
  return "hello, world";
}
</script>
</html>
```

Y
yuhaoge 已提交
1755 1756
### deleteJavaScriptRegister

Y
yuhaoge 已提交
1757
deleteJavaScriptRegister(name: string): void
Y
yuhaoge 已提交
1758 1759 1760

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

Y
yuhaoge 已提交
1761
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1762 1763 1764

**参数:**

L
laosan_ted 已提交
1765 1766 1767
| 参数名 | 类型 | 必填 | 说明  |
| ------ | -------- | ---- | ---- |
| name   | string   | 是   | 注册对象的名称,可在网页侧JavaScript中通过此名称调用应用侧JavaScript对象。 |
Y
yuhaoge 已提交
1768 1769 1770

**错误码:**

L
1111  
lixiang 已提交
1771
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |
| 17100008 | Cannot delete JavaScriptProxy.                               |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State name: string = 'Object';

  build() {
    Column() {
      Button('deleteJavaScriptRegister')
        .onClick(() => {
          try {
            this.controller.deleteJavaScriptRegister(this.name);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### zoom

zoom(factor: number): void

调整当前网页的缩放比例。

Y
yuhaoge 已提交
1812
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1813 1814 1815

**参数:**

L
laosan_ted 已提交
1816
| 参数名 | 类型 | 必填 | 说明 |
Y
yuhaoge 已提交
1817
| ------ | -------- | ---- | ------------------------------------------------------------ |
L
laosan_ted 已提交
1818
| factor | number   | 是   | 基于当前网页所需调整的相对缩放比例,入参要求大于0,当入参为1时为默认加载网页的缩放比例,入参小于1为缩小,入参大于1为放大。 |
Y
yuhaoge 已提交
1819 1820 1821

**错误码:**

L
1111  
lixiang 已提交
1822
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1823 1824 1825 1826

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |
L
laosan_ted 已提交
1827
| 17100004 | Function not enable.                                         |
Y
yuhaoge 已提交
1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State factor: number = 1;

  build() {
    Column() {
      Button('zoom')
        .onClick(() => {
          try {
            this.controller.zoom(this.factor);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### searchAllAsync

searchAllAsync(searchString: string): void

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

Y
yuhaoge 已提交
1863
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1864 1865 1866

**参数:**

L
laosan_ted 已提交
1867 1868 1869
| 参数名       | 类型 | 必填 | 说明       |
| ------------ | -------- | ---- | -------------- |
| searchString | string   | 是   | 查找的关键字。 |
Y
yuhaoge 已提交
1870 1871 1872

**错误码:**

L
1111  
lixiang 已提交
1873
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State searchString: string = "xxx";

  build() {
    Column() {
      Button('searchString')
        .onClick(() => {
          try {
            this.controller.searchAllAsync(this.searchString);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
        .onSearchResultReceive(ret => {
          console.log("on search result receive:" + "[cur]" + ret.activeMatchOrdinal +
          "[total]" + ret.numberOfMatches + "[isDone]" + ret.isDoneCounting);
        })
    }
  }
}
```

### clearMatches

clearMatches(): void

清除所有通过[searchAllAsync](#searchallasync)匹配到的高亮字符查找结果。

Y
yuhaoge 已提交
1917
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1918 1919 1920

**错误码:**

L
1111  
lixiang 已提交
1921
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('clearMatches')
        .onClick(() => {
          try {
            this.controller.clearMatches();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### searchNext

searchNext(forward: boolean): void

滚动到下一个匹配的查找结果并高亮。

Y
yuhaoge 已提交
1960
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
1961 1962 1963

**参数:**

L
laosan_ted 已提交
1964 1965 1966
| 参数名  | 类型 | 必填 | 说明               |
| ------- | -------- | ---- | ---------------------- |
| forward | boolean  | 是   | 从前向后或者逆向查找。 |
Y
yuhaoge 已提交
1967 1968 1969

**错误码:**

L
1111  
lixiang 已提交
1970
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('searchNext')
        .onClick(() => {
          try {
            this.controller.searchNext(true);
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### clearSslCache

clearSslCache(): void

清除Web组件记录的SSL证书错误事件对应的用户操作行为。

Y
yuhaoge 已提交
2009
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2010 2011 2012

**错误码:**

L
1111  
lixiang 已提交
2013
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('clearSslCache')
        .onClick(() => {
          try {
            this.controller.clearSslCache();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### clearClientAuthenticationCache

clearClientAuthenticationCache(): void

清除Web组件记录的客户端证书请求事件对应的用户操作行为。

Y
yuhaoge 已提交
2052
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2053 2054 2055

**错误码:**

L
1111  
lixiang 已提交
2056
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('clearClientAuthenticationCache')
        .onClick(() => {
          try {
            this.controller.clearClientAuthenticationCache();
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### createWebMessagePorts

E
echoorchid 已提交
2091
createWebMessagePorts(isExtentionType?: boolean): Array\<WebMessagePort>
Y
yuhaoge 已提交
2092

E
echoorchid 已提交
2093
创建Web消息端口。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
Y
yuhaoge 已提交
2094

Y
yuhaoge 已提交
2095
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2096

E
echoorchid 已提交
2097 2098 2099 2100
**参数:**

| 参数名 | 类型                   | 必填 | 说明                             |
| ------ | ---------------------- | ---- | :------------------------------|
E
echoorchid 已提交
2101
| isExtentionType<sup>10+</sup>   | boolean     | 否  | 是否使用扩展增强接口,默认false不使用。 从API version 10开始,该接口支持此参数。|
E
echoorchid 已提交
2102

2103
**返回值:**
Y
yuhaoge 已提交
2104 2105 2106

| 类型                   | 说明              |
| ---------------------- | ----------------- |
E
echoorchid 已提交
2107
| Array\<WebMessagePort> | web消息端口列表。 |
Y
yuhaoge 已提交
2108

L
laosan_ted 已提交
2109
**错误码:**
Y
yuhaoge 已提交
2110

L
1111  
lixiang 已提交
2111
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2112 2113 2114 2115 2116

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

2117
**示例:**
Y
yuhaoge 已提交
2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  ports: web_webview.WebMessagePort[];

  build() {
    Column() {
      Button('createWebMessagePorts')
        .onClick(() => {
          try {
            this.ports = this.controller.createWebMessagePorts();
            console.log("createWebMessagePorts size:" + this.ports.length)
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
  ```

### postMessage

postMessage(name: string, ports: Array\<WebMessagePort>, uri: string): void

E
echoorchid 已提交
2150
发送Web消息端口到HTML5。
Y
yuhaoge 已提交
2151

Y
yuhaoge 已提交
2152
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2153 2154 2155

**参数:**

L
laosan_ted 已提交
2156 2157
| 参数名 | 类型                   | 必填 | 说明                             |
| ------ | ---------------------- | ---- | :------------------------------- |
E
echoorchid 已提交
2158 2159
| name   | string                 | 是   | 要发送的消息名称。            |
| ports  | Array\<WebMessagePort> | 是   | 要发送的消息端口。            |
L
laosan_ted 已提交
2160
| uri    | string                 | 是   | 接收该消息的URI。                |
Y
yuhaoge 已提交
2161

L
laosan_ted 已提交
2162
**错误码:**
Y
yuhaoge 已提交
2163

L
1111  
lixiang 已提交
2164
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  ports: web_webview.WebMessagePort[];
E
echoorchid 已提交
2181 2182
  @State sendFromEts: string = 'Send this message from ets to HTML';
  @State receivedFromHtml: string = 'Display received message send from HTML';
Y
yuhaoge 已提交
2183 2184 2185

  build() {
    Column() {
E
echoorchid 已提交
2186 2187 2188 2189 2190 2191 2192 2193
      // 展示接收到的来自HTML的内容
      Text(this.receivedFromHtml)
      // 输入框的内容发送到html
      TextInput({placeholder: 'Send this message from ets to HTML'})
        .onChange((value: string) => {
          this.sendFromEts = value;
      })

Y
yuhaoge 已提交
2194 2195 2196
      Button('postMessage')
        .onClick(() => {
          try {
X
xiongjun_gitee 已提交
2197
            // 1、创建两个消息端口。
Y
yuhaoge 已提交
2198
            this.ports = this.controller.createWebMessagePorts();
X
xiongjun_gitee 已提交
2199 2200
            // 2、在应用侧的消息端口(如端口1)上注册回调事件。
            this.ports[1].onMessageEvent((result: web_webview.WebMessage) => {
2201 2202 2203 2204 2205 2206 2207 2208
              let msg = 'Got msg from HTML:';
              if (typeof(result) == "string") {
                console.log("received string message from html5, string is:" + result);
                msg = msg + result;
              } else if (typeof(result) == "object") {
                if (result instanceof ArrayBuffer) {
                  console.log("received arraybuffer from html5, length is:" + result.byteLength);
                  msg = msg + "lenght is " + result.byteLength;
E
echoorchid 已提交
2209 2210 2211
                } else {
                  console.log("not support");
                }
2212 2213 2214 2215 2216 2217 2218
              } else {
                console.log("not support");
              }
              this.receivedFromHtml = msg;
            })
            // 3、将另一个消息端口(如端口0)发送到HTML侧,由HTML侧保存并使用。
            this.controller.postMessage('__init_port__', [this.ports[0]], '*');
E
echoorchid 已提交
2219 2220 2221 2222 2223 2224 2225 2226 2227
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })

      // 4、使用应用侧的端口给另一个已经发送到html的端口发送消息。
      Button('SendDataToHTML')
        .onClick(() => {
          try {
2228
            if (this.ports && this.ports[1]) {
L
lixiang 已提交
2229
              this.ports[1].postMessageEvent(this.sendFromEts);
2230 2231 2232
            } else {
              console.error(`ports is null, Please initialize first`);
            }
Y
yuhaoge 已提交
2233
          } catch (error) {
X
xiongjun_gitee 已提交
2234
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
Y
yuhaoge 已提交
2235 2236
          }
        })
2237
      Web({ src: $rawfile('index.html'), controller: this.controller })
Y
yuhaoge 已提交
2238 2239 2240 2241 2242
    }
  }
}
```

2243
加载的html文件。
Y
yuhaoge 已提交
2244
```html
2245
<!--index.html-->
Y
yuhaoge 已提交
2246 2247 2248 2249
<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
E
echoorchid 已提交
2250
    <title>WebView Message Port Demo</title>
Y
yuhaoge 已提交
2251 2252
</head>

E
echoorchid 已提交
2253 2254 2255 2256
  <body>
    <h1>WebView Message Port Demo</h1>
    <div>
        <input type="button" value="SendToEts" onclick="PostMsgToEts(msgFromJS.value);"/><br/>
X
xiongjun_gitee 已提交
2257
        <input id="msgFromJS" type="text" value="send this message from HTML to ets"/><br/>
E
echoorchid 已提交
2258 2259 2260 2261
    </div>
    <p class="output">display received message send from ets</p>
  </body>
  <script src="xxx.js"></script>
Y
yuhaoge 已提交
2262 2263 2264 2265 2266 2267
</html>
```

```js
//xxx.js
var h5Port;
E
echoorchid 已提交
2268
var output = document.querySelector('.output');
Y
yuhaoge 已提交
2269 2270 2271
window.addEventListener('message', function (event) {
    if (event.data == '__init_port__') {
        if (event.ports[0] != null) {
E
echoorchid 已提交
2272
            h5Port = event.ports[0]; // 1. 保存从ets侧发送过来的端口
Y
yuhaoge 已提交
2273
            h5Port.onmessage = function (event) {
E
echoorchid 已提交
2274
              // 2. 接收ets侧发送过来的消息.
E
echoorchid 已提交
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
              var msg = 'Got message from ets:';
              var result = event.data;
              if (typeof(result) == "string") {
                console.log("received string message from html5, string is:" + result);
                msg = msg + result;
              } else if (typeof(result) == "object") {
                if (result instanceof ArrayBuffer) {
                  console.log("received arraybuffer from html5, length is:" + result.byteLength);
                  msg = msg + "lenght is " + result.byteLength;
                } else {
                  console.log("not support");
                }
              } else {
                console.log("not support");
              }
E
echoorchid 已提交
2290
              output.innerHTML = msg;
Y
yuhaoge 已提交
2291 2292 2293 2294 2295
            }
        }
    }
})

E
echoorchid 已提交
2296 2297
// 3. 使用h5Port往ets侧发送消息.
function PostMsgToEts(data) {
2298 2299 2300 2301 2302
    if (h5Port) {
      h5Port.postMessage(data);
    } else {
      console.error("h5Port is null, Please initialize first");
    }
Y
yuhaoge 已提交
2303 2304 2305 2306 2307
}
```

### requestFocus

Y
yuhaoge 已提交
2308
requestFocus(): void
Y
yuhaoge 已提交
2309 2310 2311

使当前web页面获取焦点。

Y
yuhaoge 已提交
2312
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2313

L
laosan_ted 已提交
2314
**错误码:**
Y
yuhaoge 已提交
2315

L
1111  
lixiang 已提交
2316
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('requestFocus')
        .onClick(() => {
          try {
            this.controller.requestFocus();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        });
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### zoomIn

zoomIn(): void

调用此接口将当前网页进行放大,比例为20%。

Y
yuhaoge 已提交
2355
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2356

L
laosan_ted 已提交
2357
**错误码:**
Y
yuhaoge 已提交
2358

L
1111  
lixiang 已提交
2359
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 17100004 | Function not enable.                                         |

**示例:**

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

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

  build() {
    Column() {
      Button('zoomIn')
        .onClick(() => {
          try {
            this.controller.zoomIn();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### zoomOut

zoomOut(): void

调用此接口将当前网页进行缩小,比例为20%。

Y
yuhaoge 已提交
2399
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2400

L
laosan_ted 已提交
2401
**错误码:**
Y
yuhaoge 已提交
2402

L
1111  
lixiang 已提交
2403
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 17100004 | Function not enable.                                         |

**示例:**

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

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

  build() {
    Column() {
      Button('zoomOut')
        .onClick(() => {
          try {
            this.controller.zoomOut();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getHitTestValue

getHitTestValue(): HitTestValue

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

Y
yuhaoge 已提交
2443
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2444

Y
yuhaoge 已提交
2445 2446 2447 2448 2449 2450
**返回值:**

| 类型         | 说明                 |
| ------------ | -------------------- |
| [HitTestValue](#hittestvalue) | 点击区域的元素信息。 |

L
laosan_ted 已提交
2451
**错误码:**
Y
yuhaoge 已提交
2452

L
1111  
lixiang 已提交
2453
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getHitTestValue')
        .onClick(() => {
          try {
            let hitValue = this.controller.getHitTestValue();
            console.log("hitType: " + hitValue.type);
            console.log("extra: " + hitValue.extra);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getWebId

getWebId(): number

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

Y
yuhaoge 已提交
2494
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2495

Y
yuhaoge 已提交
2496 2497 2498 2499 2500 2501
**返回值:**

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

L
laosan_ted 已提交
2502
**错误码:**
Y
yuhaoge 已提交
2503

L
1111  
lixiang 已提交
2504
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getWebId')
        .onClick(() => {
          try {
            let id = this.controller.getWebId();
            console.log("id: " + id);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getUserAgent

getUserAgent(): string

获取当前默认用户代理。

Y
yuhaoge 已提交
2544
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2545

Y
yuhaoge 已提交
2546 2547 2548 2549 2550 2551
**返回值:**

| 类型   | 说明           |
| ------ | -------------- |
| string | 默认用户代理。 |

L
laosan_ted 已提交
2552
**错误码:**
Y
yuhaoge 已提交
2553

L
1111  
lixiang 已提交
2554
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getUserAgent')
        .onClick(() => {
          try {
            let userAgent = this.controller.getUserAgent();
            console.log("userAgent: " + userAgent);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

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
支持开发者基于默认的UserAgent去定制UserAgent。
```ts
// xxx.ets
import web_webview from '@ohos.web.webview';

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State ua: string = ""

  aboutToAppear():void {
    web_webview.once('webInited', () => {
      try {
        // 应用侧用法示例,定制UserAgent。
        this.ua = this.controller.getUserAgent() + 'xxx';
      } catch(error) {
        console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
      }
    })
  }

  build() {
    Column() {
      Web({ src: 'www.example.com', controller: this.controller })
        .userAgent(this.ua)
    }
  }
}
```

Y
yuhaoge 已提交
2619 2620 2621 2622
### getTitle

getTitle(): string

L
laosan_ted 已提交
2623
获取当前网页的标题。
Y
yuhaoge 已提交
2624

Y
yuhaoge 已提交
2625
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2626

Y
yuhaoge 已提交
2627 2628 2629 2630
**返回值:**

| 类型   | 说明                 |
| ------ | -------------------- |
L
laosan_ted 已提交
2631
| string | 当前网页的标题。 |
Y
yuhaoge 已提交
2632

L
laosan_ted 已提交
2633
**错误码:**
Y
yuhaoge 已提交
2634

L
1111  
lixiang 已提交
2635
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getTitle')
        .onClick(() => {
          try {
            let title = this.controller.getTitle();
            console.log("title: " + title);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getPageHeight

getPageHeight(): number

获取当前网页的页面高度。

Y
yuhaoge 已提交
2675
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2676

Y
yuhaoge 已提交
2677 2678 2679 2680 2681 2682
**返回值:**

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

L
laosan_ted 已提交
2683
**错误码:**
Y
yuhaoge 已提交
2684

L
1111  
lixiang 已提交
2685
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getPageHeight')
        .onClick(() => {
          try {
            let pageHeight = this.controller.getPageHeight();
            console.log("pageHeight : " + pageHeight);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### storeWebArchive

storeWebArchive(baseName: string, autoName: boolean, callback: AsyncCallback\<string>): void

以回调方式异步保存当前页面。

Y
yuhaoge 已提交
2725
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2726

Y
yuhaoge 已提交
2727 2728
**参数:**

L
laosan_ted 已提交
2729
| 参数名   | 类型              | 必填 | 说明                                                         |
Y
yuhaoge 已提交
2730 2731 2732
| -------- | --------------------- | ---- | ------------------------------------------------------------ |
| baseName | string                | 是   | 文件存储路径,该值不能为空。                                 |
| autoName | boolean               | 是   | 决定是否自动生成文件名。 如果为false,则将baseName作为文件存储路径。 如果为true,则假定baseName是一个目录,将根据当前页的Url自动生成文件名。 |
L
lixiang 已提交
2733
| callback | AsyncCallback\<string> | 是   | 返回文件存储路径,保存网页失败会返回null。                   |
Y
yuhaoge 已提交
2734

L
laosan_ted 已提交
2735
**错误码:**
Y
yuhaoge 已提交
2736

L
1111  
lixiang 已提交
2737
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 17100003 | Invalid resource path or file type.                          |

**示例:**

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

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

  build() {
    Column() {
L
lixiang 已提交
2757
      Button('storeWebArchive')
Y
yuhaoge 已提交
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
        .onClick(() => {
          try {
            this.controller.storeWebArchive("/data/storage/el2/base/", true, (error, filename) => {
              if (error) {
                console.info(`save web archive error: ` + JSON.stringify(error))
                return;
              }
              if (filename != null) {
                console.info(`save web archive success: ${filename}`)
              }
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### storeWebArchive

storeWebArchive(baseName: string, autoName: boolean): Promise\<string>

以Promise方式异步保存当前页面。

Y
yuhaoge 已提交
2785
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2786

Y
yuhaoge 已提交
2787 2788
**参数:**

L
laosan_ted 已提交
2789
| 参数名   | 类型 | 必填 | 说明                                                         |
Y
yuhaoge 已提交
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799
| -------- | -------- | ---- | ------------------------------------------------------------ |
| baseName | string   | 是   | 文件存储路径,该值不能为空。                                 |
| autoName | boolean  | 是   | 决定是否自动生成文件名。 如果为false,则将baseName作为文件存储路径。 如果为true,则假定baseName是一个目录,将根据当前页的Url自动生成文件名。 |

**返回值:**

| 类型            | 说明                                                  |
| --------------- | ----------------------------------------------------- |
| Promise\<string> | Promise实例,保存成功返回文件路径,保存失败返回null。 |

L
laosan_ted 已提交
2800
**错误码:**
Y
yuhaoge 已提交
2801

L
1111  
lixiang 已提交
2802
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |
| 17100003 | Invalid resource path or file type.                          |

**示例:**

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

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

  build() {
    Column() {
L
lixiang 已提交
2822
      Button('storeWebArchive')
Y
yuhaoge 已提交
2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849
        .onClick(() => {
          try {
            this.controller.storeWebArchive("/data/storage/el2/base/", true)
              .then(filename => {
                if (filename != null) {
                  console.info(`save web archive success: ${filename}`)
                }
              })
              .catch(error => {
                console.log('error: ' + JSON.stringify(error));
              })
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getUrl

getUrl(): string

获取当前页面的url地址。

Y
yuhaoge 已提交
2850
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2851

Y
yuhaoge 已提交
2852 2853 2854 2855 2856 2857
**返回值:**

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

L
laosan_ted 已提交
2858
**错误码:**
Y
yuhaoge 已提交
2859

L
1111  
lixiang 已提交
2860
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getUrl')
        .onClick(() => {
          try {
            let url = this.controller.getUrl();
            console.log("url: " + url);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### stop

Y
yuhaoge 已提交
2896
stop(): void
Y
yuhaoge 已提交
2897 2898 2899

停止页面加载。

Y
yuhaoge 已提交
2900
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2901

L
laosan_ted 已提交
2902
**错误码:**
Y
yuhaoge 已提交
2903

L
1111  
lixiang 已提交
2904
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('stop')
        .onClick(() => {
          try {
            this.controller.stop();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        });
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### backOrForward

backOrForward(step: number): void

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

2943 2944
前进或者后退页面时,直接使用已加载过的网页,无需重新加载网页。

Y
yuhaoge 已提交
2945
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
2946

Y
yuhaoge 已提交
2947 2948
**参数:**

L
laosan_ted 已提交
2949 2950 2951
| 参数名 | 类型 | 必填 | 说明               |
| ------ | -------- | ---- | ---------------------- |
| step   | number   | 是   | 需要前进或后退的步长。 |
Y
yuhaoge 已提交
2952

L
laosan_ted 已提交
2953
**错误码:**
Y
yuhaoge 已提交
2954

L
1111  
lixiang 已提交
2955
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  @State step: number = -2;

  build() {
    Column() {
      Button('backOrForward')
        .onClick(() => {
          try {
            this.controller.backOrForward(this.step);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

L
laosan_ted 已提交
2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005
### scrollTo

scrollTo(x:number, y:number): void

将页面滚动到指定的绝对位置。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明               |
| ------ | -------- | ---- | ---------------------- |
| x   | number   | 是   | 绝对位置的水平坐标,当传入数值为负数时,按照传入0处理。 |
| y   | number   | 是   | 绝对位置的垂直坐标,当传入数值为负数时,按照传入0处理。|

**错误码:**

L
1111  
lixiang 已提交
3006
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
L
laosan_ted 已提交
3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('scrollTo')
        .onClick(() => {
          try {
            this.controller.scrollTo(50, 50);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
3033
      Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
3034 3035 3036 3037 3038
    }
  }
}
```

3039
加载的html文件。
L
laosan_ted 已提交
3040
```html
3041
<!--index.html-->
L
laosan_ted 已提交
3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078
<!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>
```

### scrollBy

scrollBy(deltaX:number, deltaY:number): void

将页面滚动指定的偏移量。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明               |
| ------ | -------- | ---- | ---------------------- |
| deltaX | number   | 是   | 水平偏移量,其中水平向右为正方向。 |
| deltaY | number   | 是   | 垂直偏移量,其中垂直向下为正方向。 |

**错误码:**

L
1111  
lixiang 已提交
3079
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
L
laosan_ted 已提交
3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('scrollBy')
        .onClick(() => {
          try {
            this.controller.scrollBy(50, 50);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
3106
      Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
3107 3108 3109 3110 3111
    }
  }
}
```

3112
加载的html文件。
L
laosan_ted 已提交
3113
```html
3114
<!--index.html-->
L
laosan_ted 已提交
3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151
<!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>
```

### slideScroll

slideScroll(vx:number, vy:number): void

按照指定速度模拟对页面的轻扫滚动动作。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型 | 必填 | 说明               |
| ------ | -------- | ---- | ---------------------- |
| vx     | number   | 是   | 轻扫滚动的水平速度分量,其中水平向右为速度正方向。 |
| vy     | number   | 是   | 轻扫滚动的垂直速度分量,其中垂直向下为速度正方向。 |

**错误码:**

L
1111  
lixiang 已提交
3152
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
L
laosan_ted 已提交
3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('slideScroll')
        .onClick(() => {
          try {
            this.controller.slideScroll(500, 500);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
3179
      Web({ src: $rawfile('index.html'), controller: this.controller })
L
laosan_ted 已提交
3180 3181 3182 3183 3184
    }
  }
}
```

3185
加载的html文件。
L
laosan_ted 已提交
3186
```html
3187
<!--index.html-->
L
laosan_ted 已提交
3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207
<!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>
```

C
chensi10 已提交
3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223
### getOriginalUrl

getOriginalUrl(): string

获取当前页面的原始url地址。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
3224
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getOrgUrl')
        .onClick(() => {
          try {
            let url = this.controller.getOriginalUrl();
            console.log("original url: " + url);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getFavicon

getFavicon(): image.PixelMap

获取页面的favicon图标。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型                                   | 说明                            |
| -------------------------------------- | ------------------------------- |
| [PixelMap](js-apis-image.md#pixelmap7) | 页面favicon图标的PixelMap对象。 |

**错误码:**

L
1111  
lixiang 已提交
3274
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

```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();
3290
  @State pixelmap: image.PixelMap = undefined;
C
chensi10 已提交
3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311

  build() {
    Column() {
      Button('getFavicon')
        .onClick(() => {
          try {
            this.pixelmap = this.controller.getFavicon();
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### setNetworkAvailable

setNetworkAvailable(enable: boolean): void

C
chensi10 已提交
3312
设置JavaScript中的window.navigator.onLine属性。
C
chensi10 已提交
3313 3314 3315 3316 3317

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

C
chensi10 已提交
3318 3319 3320
| 参数名 | 类型    | 必填 | 说明                              |
| ------ | ------- | ---- | --------------------------------- |
| enable | boolean | 是   | 是否使能window.navigator.onLine。 |
C
chensi10 已提交
3321 3322 3323

**错误码:**

L
1111  
lixiang 已提交
3324
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('setNetworkAvailable')
        .onClick(() => {
          try {
            this.controller.setNetworkAvailable(true);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### hasImage

L
laosan_ted 已提交
3359
hasImage(callback: AsyncCallback\<boolean>): void
C
chensi10 已提交
3360 3361 3362 3363 3364 3365 3366

通过Callback方式异步查找当前页面是否存在图像。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

C
chensi10 已提交
3367 3368 3369
| 参数名   | 类型                    | 必填 | 说明                       |
| -------- | ----------------------- | ---- | -------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 返回查找页面是否存在图像。 |
C
chensi10 已提交
3370 3371 3372

**错误码:**

L
1111  
lixiang 已提交
3373
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('hasImageCb')
        .onClick(() => {
C
chensi10 已提交
3394
          try {
L
laosan_ted 已提交
3395
            this.controller.hasImage((error, data) => {
3396 3397 3398 3399 3400 3401
              if (error) {
                console.info(`hasImage error: ` + JSON.stringify(error))
                return;
              }
              console.info("hasImage: " + data);
            });
C
chensi10 已提交
3402 3403 3404
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
C
chensi10 已提交
3405 3406 3407 3408 3409 3410 3411 3412 3413
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### hasImage

L
laosan_ted 已提交
3414
hasImage(): Promise\<boolean>
C
chensi10 已提交
3415 3416 3417 3418 3419

通过Promise方式异步查找当前页面是否存在图像。

**系统能力:** SystemCapability.Web.Webview.Core

3420
**返回值:**
C
chensi10 已提交
3421

C
chensi10 已提交
3422 3423 3424
| 类型              | 说明                                    |
| ----------------- | --------------------------------------- |
| Promise\<boolean> | Promise实例,返回查找页面是否存在图像。 |
C
chensi10 已提交
3425 3426 3427

**错误码:**

L
1111  
lixiang 已提交
3428
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

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

  build() {
    Column() {
      Button('hasImagePm')
        .onClick(() => {
C
chensi10 已提交
3449 3450
          try {
            this.controller.hasImage().then((data) => {
3451 3452 3453 3454 3455
              console.info('hasImage: ' + data);
            })
            .catch(function (error) {
              console.error("error: " + error);
            })
C
chensi10 已提交
3456 3457 3458
          } catch (error) {
            console.error(`Errorcode: ${error.code}, Message: ${error.message}`);
          }
C
chensi10 已提交
3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### removeCache

removeCache(clearRom: boolean): void

清除应用中的资源缓存文件,此方法将会清除同一应用中所有webview的缓存文件。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型    | 必填 | 说明                                                     |
| -------- | ------- | ---- | -------------------------------------------------------- |
L
laosan_ted 已提交
3478
| clearRom | boolean | 是   | 设置为true时同时清除rom和ram中的缓存,设置为false时只清除ram中的缓存。 |
C
chensi10 已提交
3479 3480 3481

**错误码:**

L
1111  
lixiang 已提交
3482
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('removeCache')
        .onClick(() => {
          try {
            this.controller.removeCache(false);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530
### pageUp

pageUp(top:boolean): void

将Webview的内容向上滚动半个视框大小或者跳转到页面最顶部,通过top入参控制。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
| top    | boolean | 是   | 是否跳转到页面最顶部,设置为false时将页面内容向上滚动半个视框大小,设置为true时跳转到页面最顶部。 |

**错误码:**

L
1111  
lixiang 已提交
3531
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
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

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('pageUp')
        .onClick(() => {
          try {
            this.controller.pageUp(false);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### pageDown

pageDown(bottom:boolean): void

将Webview的内容向下滚动半个视框大小或者跳转到页面最底部,通过bottom入参控制。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
| bottom | boolean | 是   | 是否跳转到页面最底部,设置为false时将页面内容向下滚动半个视框大小,设置为true时跳转到页面最底部。 |

**错误码:**

L
1111  
lixiang 已提交
3580
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('pageDown')
        .onClick(() => {
          try {
            this.controller.pageDown(false);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

C
chensi10 已提交
3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624
### getBackForwardEntries

getBackForwardEntries(): BackForwardList

获取当前Webview的历史信息列表。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型                                | 说明                        |
| ----------------------------------- | --------------------------- |
C
chensi10 已提交
3625
| [BackForwardList](#backforwardlist) | 当前Webview的历史信息列表。 |
C
chensi10 已提交
3626 3627 3628

**错误码:**

L
1111  
lixiang 已提交
3629
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
C
chensi10 已提交
3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

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

  build() {
    Column() {
      Button('getBackForwardEntries')
        .onClick(() => {
          try {
            let list = this.controller.getBackForwardEntries()
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677
### serializeWebState

serializeWebState(): Uint8Array

将当前Webview的页面状态历史记录信息序列化。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型       | 说明                                          |
| ---------- | --------------------------------------------- |
| Uint8Array | 当前Webview的页面状态历史记录序列化后的数据。 |

**错误码:**

L
1111  
lixiang 已提交
3678
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
3679 3680 3681 3682 3683 3684 3685

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

3686
1.对文件的操作需要导入文件管理模块,详情请参考[文件管理](./js-apis-file-fs.md)。
3687 3688 3689
```ts
// xxx.ets
import web_webview from '@ohos.web.webview';
3690
import fs from '@ohos.file.fs';
3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702

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

  build() {
    Column() {
      Button('serializeWebState')
        .onClick(() => {
          try {
            let state = this.controller.serializeWebState();
L
lixiang 已提交
3703
            // globalThis.cacheDir从EntryAbility.ts中获取。
3704
            let path = globalThis.cacheDir;
3705
            path += '/WebState';
3706 3707 3708 3709
            // 以同步方法打开文件。
            let file = fs.openSync(path, fs.OpenMode.READ_WRITE | fs.OpenMode.CREATE);
            fs.writeSync(file.fd, state.buffer);
            fs.closeSync(file.fd);
3710 3711 3712 3713 3714 3715 3716 3717 3718 3719
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

L
lixiang 已提交
3720
2.修改EntryAbility.ts。
3721 3722 3723 3724 3725 3726
获取应用缓存文件路径。
```ts
// xxx.ts
import UIAbility from '@ohos.app.ability.UIAbility';
import web_webview from '@ohos.web.webview';

L
lixiang 已提交
3727
export default class EntryAbility extends UIAbility {
3728 3729 3730 3731 3732 3733 3734
    onCreate(want, launchParam) {
        // 通过在globalThis对象上绑定cacheDir,可以实现UIAbility组件与Page之间的数据同步。
        globalThis.cacheDir = this.context.cacheDir;
    }
}
```

3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750
### restoreWebState

restoreWebState(state: Uint8Array): void

当前Webview从序列化数据中恢复页面状态历史记录。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型       | 必填 | 说明                         |
| ------ | ---------- | ---- | ---------------------------- |
| state  | Uint8Array | 是   | 页面状态历史记录序列化数据。 |

**错误码:**

L
1111  
lixiang 已提交
3751
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
3752 3753 3754 3755 3756 3757 3758

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

3759
1.对文件的操作需要导入文件管理模块,详情请参考[文件管理](./js-apis-file-fs.md)。
3760 3761 3762
```ts
// xxx.ets
import web_webview from '@ohos.web.webview';
3763
import fs from '@ohos.file.fs';
3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774

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

  build() {
    Column() {
      Button('RestoreWebState')
        .onClick(() => {
          try {
L
lixiang 已提交
3775
            // globalThis.cacheDir从EntryAbility.ts中获取。
3776
            let path = globalThis.cacheDir;
3777
            path += '/WebState';
3778 3779 3780
            // 以同步方法打开文件。
            let file = fs.openSync(path, fs.OpenMode.READ_WRITE);
            let stat = fs.statSync(path);
3781 3782
            let size = stat.size;
            let buf = new ArrayBuffer(size);
3783 3784 3785 3786 3787 3788 3789
            fs.read(file.fd, buf, (err, readLen) => {
              if (err) {
                console.info("mkdir failed with error message: " + err.message + ", error code: " + err.code);
              } else {
                console.info("read file data succeed");
                this.controller.restoreWebState(new Uint8Array(buf.slice(0, readLen)));
                fs.closeSync(file);
3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801
              }
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

L
lixiang 已提交
3802
2.修改EntryAbility.ts。
3803 3804 3805 3806 3807 3808
获取应用缓存文件路径。
```ts
// xxx.ts
import UIAbility from '@ohos.app.ability.UIAbility';
import web_webview from '@ohos.web.webview';

L
lixiang 已提交
3809
export default class EntryAbility extends UIAbility {
3810 3811 3812 3813 3814 3815 3816
    onCreate(want, launchParam) {
        // 通过在globalThis对象上绑定cacheDir,可以实现UIAbility组件与Page之间的数据同步。
        globalThis.cacheDir = this.context.cacheDir;
    }
}
```

Y
yuhaoge 已提交
3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865
### customizeSchemes

static customizeSchemes(schemes: Array\<WebCustomScheme\>): void

配置Web自定义协议请求的权限。建议在任何Web组件初始化之前进行调用。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型    | 必填 | 说明                      |
| -------- | ------- | ---- | -------------------------------------- |
| schemes | Array\<[WebCustomScheme](#webcustomscheme)\> | 是   | 自定义协议配置,最多支持同时配置10个自定义协议。 |

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  responseweb: WebResourceResponse = new WebResourceResponse()
  scheme1: web_webview.WebCustomScheme = {schemeName: "name1", isSupportCORS: true, isSupportFetch: true}
  scheme2: web_webview.WebCustomScheme = {schemeName: "name2", isSupportCORS: true, isSupportFetch: true}
  scheme3: web_webview.WebCustomScheme = {schemeName: "name3", isSupportCORS: true, isSupportFetch: true}

  aboutToAppear():void {
    try {
      web_webview.WebviewController.customizeSchemes([this.scheme1, this.scheme2, this.scheme3])
    } catch(error) {
      console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
    }
  }

  build() {
    Column() {
      Web({ src: 'www.example.com', controller: this.controller })
        .onInterceptRequest((event) => {
          console.log('url:' + event.request.getRequestUrl())
          return this.responseweb
        })
    }
  }
}
```

L
lie 已提交
3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179
### getCertificate<sup>10+</sup>

getCertificate(): Promise<Array<cert.X509Cert>>

获取当前网站的证书信息。使用web组件加载https网站,会进行SSL证书校验,该接口会通过Promise异步返回当前网站的X509格式证书(X509Cert证书类型定义见[X509Cert定义](./js-apis-cert.md)),便于开发者展示网站证书信息。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型       | 说明                                          |
| ---------- | --------------------------------------------- |
| Promise<Array<cert.X509Cert>> | Promise实例,用于获取当前加载的https网站的X509格式证书数组。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

**示例:**

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

function Uint8ArrayToString(dataArray) {
  var dataString = ''
  for (var i = 0; i < dataArray.length; i++) {
    dataString += String.fromCharCode(dataArray[i])
  }
  return dataString
}

function ParseX509CertInfo(x509CertArray) {
  let res: string = 'getCertificate success: len = ' + x509CertArray.length;
  for (let i = 0; i < x509CertArray.length; i++) {
    res += ', index = ' + i + ', issuer name = '
    + Uint8ArrayToString(x509CertArray[i].getIssuerName().data) + ', subject name = '
    + Uint8ArrayToString(x509CertArray[i].getSubjectName().data) + ', valid start = '
    + x509CertArray[i].getNotBeforeTime()
    + ', valid end = ' + x509CertArray[i].getNotAfterTime()
  }
  return res
}

@Entry
@Component
struct Index {
  // outputStr在UI界面显示调试信息
  @State outputStr: string = ''
  webviewCtl: web_webview.WebviewController = new web_webview.WebviewController();

  build() {
    Row() {
      Column() {
        List({space: 20, initialIndex: 0}) {
          ListItem() {
            Button() {
              Text('load bad ssl')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              // 加载一个过期的证书网站,查看获取到的证书信息
              this.webviewCtl.loadUrl('https://expired.badssl.com')
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('load example')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              // 加载一个https网站,查看网站的证书信息
              this.webviewCtl.loadUrl('https://www.example.com')
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('getCertificate Promise')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              try {
                this.webviewCtl.getCertificate().then(x509CertArray => {
                  this.outputStr = ParseX509CertInfo(x509CertArray);
                })
              } catch (error) {
                this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
              }
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('getCertificate AsyncCallback')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              try {
                this.webviewCtl.getCertificate((error, x509CertArray) => {
                  if (error) {
                    this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
                  } else {
                    this.outputStr = ParseX509CertInfo(x509CertArray);
                  }
                })
              } catch (error) {
                this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
              }
            })
            .height(50)
          }
        }
        .listDirection(Axis.Horizontal)
        .height('10%')

        Text(this.outputStr)
          .width('100%')
          .fontSize(10)

        Web({ src: 'https://www.example.com', controller: this.webviewCtl })
          .fileAccess(true)
          .javaScriptAccess(true)
          .domStorageAccess(true)
          .onlineImageAccess(true)
          .onPageEnd((e) => {
            this.outputStr = 'onPageEnd : url = ' + e.url
          })
          .onSslErrorEventReceive((e) => {
            // 忽略ssl证书错误,便于测试一些证书过期的网站,如:https://expired.badssl.com
            e.handler.handleConfirm()
          })
          .width('100%')
          .height('70%')
      }
      .height('100%')
    }
  }
}
```

### getCertificate<sup>10+</sup>

getCertificate(callback: AsyncCallback<Array<cert.X509Cert>>): void

获取当前网站的证书信息。使用web组件加载https网站,会进行SSL证书校验,该接口会通过AsyncCallback异步返回当前网站的X509格式证书(X509Cert证书类型定义见[X509Cert定义](./js-apis-cert.md)),便于开发者展示网站证书信息。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型                         | 必填 | 说明                                     |
| -------- | ---------------------------- | ---- | ---------------------------------------- |
| callback | AsyncCallback<Array<cert.X509Cert>> | 是   | 通过AsyncCallback异步返回当前网站的X509格式证书。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web compoent. |

**示例:**

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

function Uint8ArrayToString(dataArray) {
  var dataString = ''
  for (var i = 0; i < dataArray.length; i++) {
    dataString += String.fromCharCode(dataArray[i])
  }
  return dataString
}

function ParseX509CertInfo(x509CertArray) {
  let res: string = 'getCertificate success: len = ' + x509CertArray.length;
  for (let i = 0; i < x509CertArray.length; i++) {
    res += ', index = ' + i + ', issuer name = '
    + Uint8ArrayToString(x509CertArray[i].getIssuerName().data) + ', subject name = '
    + Uint8ArrayToString(x509CertArray[i].getSubjectName().data) + ', valid start = '
    + x509CertArray[i].getNotBeforeTime()
    + ', valid end = ' + x509CertArray[i].getNotAfterTime()
  }
  return res
}

@Entry
@Component
struct Index {
  // outputStr在UI界面显示调试信息
  @State outputStr: string = ''
  webviewCtl: web_webview.WebviewController = new web_webview.WebviewController();

  build() {
    Row() {
      Column() {
        List({space: 20, initialIndex: 0}) {
          ListItem() {
            Button() {
              Text('load bad ssl')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              // 加载一个过期的证书网站,查看获取到的证书信息
              this.webviewCtl.loadUrl('https://expired.badssl.com')
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('load example')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              // 加载一个https网站,查看网站的证书信息
              this.webviewCtl.loadUrl('https://www.example.com')
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('getCertificate Promise')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              try {
                this.webviewCtl.getCertificate().then(x509CertArray => {
                  this.outputStr = ParseX509CertInfo(x509CertArray);
                })
              } catch (error) {
                this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
              }
            })
            .height(50)
          }

          ListItem() {
            Button() {
              Text('getCertificate AsyncCallback')
                .fontSize(10)
                .fontWeight(FontWeight.Bold)
            }
            .type(ButtonType.Capsule)
            .onClick(() => {
              try {
                this.webviewCtl.getCertificate((error, x509CertArray) => {
                  if (error) {
                    this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
                  } else {
                    this.outputStr = ParseX509CertInfo(x509CertArray);
                  }
                })
              } catch (error) {
                this.outputStr = 'getCertificate failed: ' + error.code + ", errMsg: " + error.message;
              }
            })
            .height(50)
          }
        }
        .listDirection(Axis.Horizontal)
        .height('10%')

        Text(this.outputStr)
          .width('100%')
          .fontSize(10)

        Web({ src: 'https://www.example.com', controller: this.webviewCtl })
          .fileAccess(true)
          .javaScriptAccess(true)
          .domStorageAccess(true)
          .onlineImageAccess(true)
          .onPageEnd((e) => {
            this.outputStr = 'onPageEnd : url = ' + e.url
          })
          .onSslErrorEventReceive((e) => {
            // 忽略ssl证书错误,便于测试一些证书过期的网站,如:https://expired.badssl.com
            e.handler.handleConfirm()
          })
          .width('100%')
          .height('70%')
      }
      .height('100%')
    }
  }
}
```

L
Lei Gao 已提交
4180
### setAudioMuted<sup>10+</sup>
L
Lei Gao 已提交
4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193

setAudioMuted(mute: boolean): void

设置网页静音。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名   | 类型    | 必填 | 说明                      |
| -------- | ------- | ---- | -------------------------------------- |
| mute | boolean | 是   | 表示是否将网页设置为静音状态,true表示设置为静音状态,false表示取消静音状态。 |

L
Lei Gao 已提交
4194 4195 4196 4197 4198 4199 4200 4201
**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                                                     |
| -------- | ------------------------------------------------------------ |
| 17100001 | Init error. The WebviewController must be associated with a Web component. |

L
Lei Gao 已提交
4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225
**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController()
  @State muted: boolean = false
  build() {
    Column() {
      Button("Toggle Mute")
        .onClick(event => {
          this.muted = !this.muted
          this.controller.setAudioMuted(this.muted)
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

Y
yuhaoge 已提交
4226 4227 4228 4229
## WebCookieManager

通过WebCookie可以控制Web组件中的cookie的各种行为,其中每个应用中的所有web组件共享一个WebCookieManager实例。

4230
### getCookie
Y
yuhaoge 已提交
4231 4232 4233 4234 4235

static getCookie(url: string): string

获取指定url对应cookie的值。

Y
yuhaoge 已提交
4236
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4237 4238 4239

**参数:**

L
laosan_ted 已提交
4240 4241
| 参数名 | 类型   | 必填 | 说明                      |
| ------ | ------ | ---- | :------------------------ |
4242
| url    | string | 是   | 要获取的cookie所属的url,建议使用完整的url。 |
Y
yuhaoge 已提交
4243

4244
**返回值:**
Y
yuhaoge 已提交
4245 4246 4247 4248 4249

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

L
laosan_ted 已提交
4250
**错误码:**
Y
yuhaoge 已提交
4251

L
1111  
lixiang 已提交
4252
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
L
laosan_ted 已提交
4253

Y
yuhaoge 已提交
4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273
| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
| 17100002 | Invalid url.                                           |

**示例:**

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

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

  build() {
    Column() {
      Button('getCookie')
        .onClick(() => {
          try {
L
lixiang 已提交
4274
            let value = web_webview.WebCookieManager.getCookie('https://www.example.com');
Y
yuhaoge 已提交
4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285
            console.log("value: " + value);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4286
### setCookie
Y
yuhaoge 已提交
4287 4288 4289 4290 4291

static setCookie(url: string, value: string): void

为指定url设置单个cookie的值。

Y
yuhaoge 已提交
4292
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4293 4294 4295

**参数:**

L
laosan_ted 已提交
4296 4297
| 参数名 | 类型   | 必填 | 说明                      |
| ------ | ------ | ---- | :------------------------ |
4298
| url    | string | 是   | 要设置的cookie所属的url,建议使用完整的url。 |
L
laosan_ted 已提交
4299
| value  | string | 是   | 要设置的cookie的值。      |
Y
yuhaoge 已提交
4300

L
laosan_ted 已提交
4301
**错误码:**
Y
yuhaoge 已提交
4302

L
1111  
lixiang 已提交
4303
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4304 4305 4306 4307

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
| 17100002 | Invalid url.                                           |
L
laosan_ted 已提交
4308
| 17100005 | Invalid cookie value.                                  |
Y
yuhaoge 已提交
4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325

**示例:**

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

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

  build() {
    Column() {
      Button('setCookie')
        .onClick(() => {
          try {
L
lixiang 已提交
4326
            web_webview.WebCookieManager.setCookie('https://www.example.com', 'a=b');
Y
yuhaoge 已提交
4327 4328 4329 4330 4331 4332 4333 4334 4335 4336
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4337
### saveCookieAsync
Y
yuhaoge 已提交
4338

Y
yuhaoge 已提交
4339
static saveCookieAsync(callback: AsyncCallback\<void>): void
Y
yuhaoge 已提交
4340 4341 4342

将当前存在内存中的cookie异步保存到磁盘中。

Y
yuhaoge 已提交
4343
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4344 4345 4346

**参数:**

L
laosan_ted 已提交
4347 4348
| 参数名   | 类型                   | 必填 | 说明                                               |
| -------- | ---------------------- | ---- | :------------------------------------------------- |
4349
| callback | AsyncCallback\<void> | 是   | callback回调,用于获取cookie是否成功保存。 |
Y
yuhaoge 已提交
4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367


**示例:**

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

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

  build() {
    Column() {
      Button('saveCookieAsync')
        .onClick(() => {
          try {
Y
yuhaoge 已提交
4368 4369 4370 4371 4372
            web_webview.WebCookieManager.saveCookieAsync((error) => {
              if (error) {
                console.log("error: " + error);
              }
            })
Y
yuhaoge 已提交
4373 4374 4375 4376 4377 4378 4379 4380 4381 4382
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4383
### saveCookieAsync
Y
yuhaoge 已提交
4384

Y
yuhaoge 已提交
4385
static saveCookieAsync(): Promise\<void>
Y
yuhaoge 已提交
4386 4387 4388

将当前存在内存中的cookie以Promise方法异步保存到磁盘中。

Y
yuhaoge 已提交
4389
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4390

4391
**返回值:**
Y
yuhaoge 已提交
4392 4393 4394

| 类型             | 说明                                      |
| ---------------- | ----------------------------------------- |
Y
yuhaoge 已提交
4395
| Promise\<void> | Promise实例,用于获取cookie是否成功保存。 |
Y
yuhaoge 已提交
4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413

**示例:**

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

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

  build() {
    Column() {
      Button('saveCookieAsync')
        .onClick(() => {
          try {
            web_webview.WebCookieManager.saveCookieAsync()
Y
yuhaoge 已提交
4414 4415
              .then(() => {
                console.log("saveCookieAsyncCallback success!");
Y
yuhaoge 已提交
4416
              })
Y
yuhaoge 已提交
4417
              .catch((error) => {
Y
yuhaoge 已提交
4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429
                console.error("error: " + error);
              });
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4430
### putAcceptCookieEnabled
Y
yuhaoge 已提交
4431 4432 4433 4434 4435

static putAcceptCookieEnabled(accept: boolean): void

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

Y
yuhaoge 已提交
4436
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4437 4438 4439

**参数:**

L
laosan_ted 已提交
4440 4441 4442
| 参数名 | 类型    | 必填 | 说明                                 |
| ------ | ------- | ---- | :----------------------------------- |
| accept | boolean | 是   | 设置是否拥有发送和接收cookie的权限。 |
Y
yuhaoge 已提交
4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470

**示例:**

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

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

  build() {
    Column() {
      Button('putAcceptCookieEnabled')
        .onClick(() => {
          try {
            web_webview.WebCookieManager.putAcceptCookieEnabled(false);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4471
### isCookieAllowed
Y
yuhaoge 已提交
4472 4473 4474 4475 4476

static isCookieAllowed(): boolean

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

Y
yuhaoge 已提交
4477
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4478

4479
**返回值:**
Y
yuhaoge 已提交
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

| 类型    | 说明                             |
| ------- | -------------------------------- |
| boolean | 是否拥有发送和接收cookie的权限,默认为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() {
      Button('isCookieAllowed')
        .onClick(() => {
          let result = web_webview.WebCookieManager.isCookieAllowed();
          console.log("result: " + result);
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4509
### putAcceptThirdPartyCookieEnabled
Y
yuhaoge 已提交
4510 4511 4512 4513 4514

static putAcceptThirdPartyCookieEnabled(accept: boolean): void

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

Y
yuhaoge 已提交
4515
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4516 4517 4518

**参数:**

L
laosan_ted 已提交
4519 4520 4521
| 参数名 | 类型    | 必填 | 说明                                       |
| ------ | ------- | ---- | :----------------------------------------- |
| accept | boolean | 是   | 设置是否拥有发送和接收第三方cookie的权限。 |
Y
yuhaoge 已提交
4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549

**示例:**

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

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

  build() {
    Column() {
      Button('putAcceptThirdPartyCookieEnabled')
        .onClick(() => {
          try {
            web_webview.WebCookieManager.putAcceptThirdPartyCookieEnabled(false);
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4550
### isThirdPartyCookieAllowed
Y
yuhaoge 已提交
4551 4552 4553 4554 4555

static isThirdPartyCookieAllowed(): boolean

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

Y
yuhaoge 已提交
4556
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4557

4558
**返回值:**
Y
yuhaoge 已提交
4559 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

| 类型    | 说明                                   |
| ------- | -------------------------------------- |
| boolean | 是否拥有发送和接收第三方cookie的权限,默认为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() {
      Button('isThirdPartyCookieAllowed')
        .onClick(() => {
          let result = web_webview.WebCookieManager.isThirdPartyCookieAllowed();
          console.log("result: " + result);
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4588
### existCookie
Y
yuhaoge 已提交
4589 4590 4591 4592 4593

static existCookie(): boolean

获取是否存在cookie。

Y
yuhaoge 已提交
4594
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4595

4596
**返回值:**
Y
yuhaoge 已提交
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

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

**示例:**

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

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

  build() {
    Column() {
      Button('existCookie')
        .onClick(() => {
          let result = web_webview.WebCookieManager.existCookie();
          console.log("result: " + result);
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4626
### deleteEntireCookie
Y
yuhaoge 已提交
4627 4628 4629 4630 4631

static deleteEntireCookie(): void

清除所有cookie。

Y
yuhaoge 已提交
4632
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656

**示例:**

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

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

  build() {
    Column() {
      Button('deleteEntireCookie')
        .onClick(() => {
          web_webview.WebCookieManager.deleteEntireCookie();
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

4657
### deleteSessionCookie
Y
yuhaoge 已提交
4658 4659 4660 4661 4662

static deleteSessionCookie(): void

清除所有会话cookie。

Y
yuhaoge 已提交
4663
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697

**示例:**

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

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

  build() {
    Column() {
      Button('deleteSessionCookie')
        .onClick(() => {
          web_webview.WebCookieManager.deleteSessionCookie();
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

## WebStorage

通过WebStorage可管理Web SQL数据库接口和HTML5 Web存储接口,每个应用中的所有Web组件共享一个WebStorage。

### deleteOrigin

static deleteOrigin(origin : string): void

清除指定源所使用的存储。

Y
yuhaoge 已提交
4698
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4699 4700 4701

**参数:**

L
laosan_ted 已提交
4702 4703
| 参数名 | 类型   | 必填 | 说明                     |
| ------ | ------ | ---- | ------------------------ |
L
1111  
lixiang 已提交
4704
| origin | string | 是   | 指定源的字符串索引,来自于[getOrigins](#getorigins)。 |
Y
yuhaoge 已提交
4705 4706 4707

**错误码:**

L
1111  
lixiang 已提交
4708
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4709 4710 4711

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
4712
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('deleteOrigin')
        .onClick(() => {
          try {
            web_webview.WebStorage.deleteOrigin(this.origin);
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOrigins

static getOrigins(callback: AsyncCallback\<Array\<WebStorageOrigin>>) : void

以回调方式异步获取当前使用Web SQL数据库的所有源的信息。

Y
yuhaoge 已提交
4750
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4751 4752 4753

**参数:**

L
laosan_ted 已提交
4754 4755 4756
| 参数名   | 类型                                   | 必填 | 说明                                                   |
| -------- | -------------------------------------- | ---- | ------------------------------------------------------ |
| callback | AsyncCallback\<Array\<[WebStorageOrigin](#webstorageorigin)>> | 是   | 以数组方式返回源的信息,信息内容参考[WebStorageOrigin](#webstorageorigin)。 |
Y
yuhaoge 已提交
4757 4758 4759

**错误码:**

L
1111  
lixiang 已提交
4760
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4761 4762 4763

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
4764
| 17100012 | Invalid web storage origin.                             |
Y
yuhaoge 已提交
4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783

**示例:**

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

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

  build() {
    Column() {
      Button('getOrigins')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOrigins((error, origins) => {
              if (error) {
L
laosan_ted 已提交
4784
                console.log('error: ' + JSON.stringify(error));
Y
yuhaoge 已提交
4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810
                return;
              }
              for (let i = 0; i < origins.length; i++) {
                console.log('origin: ' + origins[i].origin);
                console.log('usage: ' + origins[i].usage);
                console.log('quota: ' + origins[i].quota);
              }
            })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOrigins

static getOrigins() : Promise\<Array\<WebStorageOrigin>>

以Promise方式异步获取当前使用Web SQL数据库的所有源的信息。

Y
yuhaoge 已提交
4811
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4812 4813 4814 4815 4816 4817 4818 4819 4820

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
4821
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4822 4823 4824

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
4825
| 17100012 | Invalid web storage origin.                             |
Y
yuhaoge 已提交
4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851

**示例:**

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

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

  build() {
    Column() {
      Button('getOrigins')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOrigins()
              .then(origins => {
                for (let i = 0; i < origins.length; i++) {
                  console.log('origin: ' + origins[i].origin);
                  console.log('usage: ' + origins[i].usage);
                  console.log('quota: ' + origins[i].quota);
                }
              })
              .catch(e => {
L
laosan_ted 已提交
4852
                console.log('error: ' + JSON.stringify(e));
Y
yuhaoge 已提交
4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871
              })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOriginQuota

static getOriginQuota(origin : string, callback : AsyncCallback\<number>) : void

使用callback回调异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。

Y
yuhaoge 已提交
4872
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4873 4874 4875

**参数:**

L
laosan_ted 已提交
4876 4877 4878 4879
| 参数名   | 类型                  | 必填 | 说明               |
| -------- | --------------------- | ---- | ------------------ |
| origin   | string                | 是   | 指定源的字符串索引 |
| callback | AsyncCallback\<number> | 是   | 指定源的存储配额   |
Y
yuhaoge 已提交
4880 4881 4882

**错误码:**

L
1111  
lixiang 已提交
4883
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4884 4885 4886

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
4887
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getOriginQuota')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOriginQuota(this.origin, (error, quota) => {
              if (error) {
L
laosan_ted 已提交
4908
                console.log('error: ' + JSON.stringify(error));
Y
yuhaoge 已提交
4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930
                return;
              }
              console.log('quota: ' + quota);
            })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOriginQuota

static getOriginQuota(origin : string) : Promise\<number>

以Promise方式异步获取指定源的Web SQL数据库的存储配额,配额以字节为单位。

Y
yuhaoge 已提交
4931
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4932 4933 4934

**参数:**

L
laosan_ted 已提交
4935 4936 4937
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| origin | string | 是   | 指定源的字符串索引 |
Y
yuhaoge 已提交
4938 4939 4940 4941 4942 4943 4944 4945 4946

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
4947
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
4948 4949 4950

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
4951
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getOriginQuota')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOriginQuota(this.origin)
              .then(quota => {
                console.log('quota: ' + quota);
              })
              .catch(e => {
L
laosan_ted 已提交
4975
                console.log('error: ' + JSON.stringify(e));
Y
yuhaoge 已提交
4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994
              })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOriginUsage

static getOriginUsage(origin : string, callback : AsyncCallback\<number>) : void

以回调方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。

Y
yuhaoge 已提交
4995
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
4996 4997 4998

**参数:**

L
laosan_ted 已提交
4999 5000 5001 5002
| 参数名   | 类型                  | 必填 | 说明               |
| -------- | --------------------- | ---- | ------------------ |
| origin   | string                | 是   | 指定源的字符串索引 |
| callback | AsyncCallback\<number> | 是   | 指定源的存储量。   |
Y
yuhaoge 已提交
5003 5004 5005

**错误码:**

L
1111  
lixiang 已提交
5006
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
5007 5008 5009

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
5010
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getOriginUsage')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOriginUsage(this.origin, (error, usage) => {
              if (error) {
L
laosan_ted 已提交
5031
                console.log('error: ' + JSON.stringify(error));
Y
yuhaoge 已提交
5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053
                return;
              }
              console.log('usage: ' + usage);
            })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### getOriginUsage

static getOriginUsage(origin : string) : Promise\<number>

以Promise方式异步获取指定源的Web SQL数据库的存储量,存储量以字节为单位。

Y
yuhaoge 已提交
5054
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5055 5056 5057

**参数:**

L
laosan_ted 已提交
5058 5059 5060
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| origin | string | 是   | 指定源的字符串索引 |
Y
yuhaoge 已提交
5061 5062 5063 5064 5065 5066 5067 5068 5069

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
5070
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
5071 5072 5073

| 错误码ID | 错误信息                                              |
| -------- | ----------------------------------------------------- |
L
laosan_ted 已提交
5074
| 17100011 | Invalid origin.                            |
Y
yuhaoge 已提交
5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getOriginUsage')
        .onClick(() => {
          try {
            web_webview.WebStorage.getOriginUsage(this.origin)
              .then(usage => {
                console.log('usage: ' + usage);
              })
              .catch(e => {
L
laosan_ted 已提交
5098
                console.log('error: ' + JSON.stringify(e));
Y
yuhaoge 已提交
5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117
              })
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }

        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

### deleteAllData

static deleteAllData(): void

清除Web SQL数据库当前使用的所有存储。

Y
yuhaoge 已提交
5118
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153

**示例:**

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

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

  build() {
    Column() {
      Button('deleteAllData')
        .onClick(() => {
          try {
            web_webview.WebStorage.deleteAllData();
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
        .databaseAccess(true)
    }
  }
}
```

## WebDataBase

web组件数据库管理对象。

### getHttpAuthCredentials

Y
yuhaoge 已提交
5154
static getHttpAuthCredentials(host: string, realm: string): Array\<string>
Y
yuhaoge 已提交
5155 5156 5157

检索给定主机和域的HTTP身份验证凭据,该方法为同步方法。

Y
yuhaoge 已提交
5158
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5159 5160 5161

**参数:**

L
laosan_ted 已提交
5162 5163 5164 5165
| 参数名 | 类型   | 必填 | 说明                         |
| ------ | ------ | ---- | ---------------------------- |
| host   | string | 是   | HTTP身份验证凭据应用的主机。 |
| realm  | string | 是   | HTTP身份验证凭据应用的域。   |
Y
yuhaoge 已提交
5166 5167 5168 5169 5170

**返回值:**

| 类型  | 说明                                         |
| ----- | -------------------------------------------- |
Y
yuhaoge 已提交
5171
| Array\<string> | 包含用户名和密码的组数,检索失败返回空数组。 |
Y
yuhaoge 已提交
5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  host: string = "www.spincast.org";
  realm: string = "protected example";
  username_password: string[];

  build() {
    Column() {
      Button('getHttpAuthCredentials')
        .onClick(() => {
          try {
            this.username_password = web_webview.WebDataBase.getHttpAuthCredentials(this.host, this.realm);
            console.log('num: ' + this.username_password.length);
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### saveHttpAuthCredentials

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

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

Y
yuhaoge 已提交
5210
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5211 5212 5213

**参数:**

L
laosan_ted 已提交
5214 5215 5216 5217 5218 5219
| 参数名   | 类型   | 必填 | 说明                         |
| -------- | ------ | ---- | ---------------------------- |
| host     | string | 是   | HTTP身份验证凭据应用的主机。 |
| realm    | string | 是   | HTTP身份验证凭据应用的域。   |
| username | string | 是   | 用户名。                     |
| password | string | 是   | 密码。                       |
Y
yuhaoge 已提交
5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  host: string = "www.spincast.org";
  realm: string = "protected example";

  build() {
    Column() {
      Button('saveHttpAuthCredentials')
        .onClick(() => {
          try {
            web_webview.WebDataBase.saveHttpAuthCredentials(this.host, this.realm, "Stromgol", "Laroche");
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### existHttpAuthCredentials

static existHttpAuthCredentials(): boolean

判断是否存在任何已保存的HTTP身份验证凭据,该方法为同步方法。存在返回true,不存在返回false。

Y
yuhaoge 已提交
5256
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296

**返回值:**

| 类型    | 说明                                                         |
| ------- | ------------------------------------------------------------ |
| boolean | 是否存在任何已保存的HTTP身份验证凭据。存在返回true,不存在返回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() {
      Button('existHttpAuthCredentials')
        .onClick(() => {
          try {
            let result = web_webview.WebDataBase.existHttpAuthCredentials();
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### deleteHttpAuthCredentials

static deleteHttpAuthCredentials(): void

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

Y
yuhaoge 已提交
5297
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329

**示例:**

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

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

  build() {
    Column() {
      Button('deleteHttpAuthCredentials')
        .onClick(() => {
          try {
            web_webview.WebDataBase.deleteHttpAuthCredentials();
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

## GeolocationPermissions

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

X
xiongjun_gitee 已提交
5330 5331 5332 5333
### 需要权限

访问地理位置时需添加权限:ohos.permission.LOCATION、ohos.permission.APPROXIMATELY_LOCATION、ohos.permission.LOCATION_IN_BACKGROUND,具体权限说明请参考[位置服务](./js-apis-geolocation.md)。

Y
yuhaoge 已提交
5334 5335 5336 5337 5338 5339
### allowGeolocation

static allowGeolocation(origin: string): void

允许指定来源使用地理位置接口。

Y
yuhaoge 已提交
5340
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5341 5342 5343

**参数:**

L
laosan_ted 已提交
5344 5345 5346
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| origin | string | 是   |指定源的字符串索引 |
Y
yuhaoge 已提交
5347 5348 5349

**错误码:**

L
1111  
lixiang 已提交
5350
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
L
laosan_ted 已提交
5351

Y
yuhaoge 已提交
5352 5353
| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
5354
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('allowGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.allowGeolocation(this.origin);
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### deleteGeolocation

static deleteGeolocation(origin: string): void

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

Y
yuhaoge 已提交
5390
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5391 5392 5393

**参数:**

L
laosan_ted 已提交
5394 5395 5396
| 参数名 | 类型   | 必填 | 说明               |
| ------ | ------ | ---- | ------------------ |
| origin | string | 是   | 指定源的字符串索引 |
Y
yuhaoge 已提交
5397 5398 5399

**错误码:**

L
1111  
lixiang 已提交
5400
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
5401 5402 5403

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
5404
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('deleteGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.deleteGeolocation(this.origin);
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getAccessibleGeolocation

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

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

Y
yuhaoge 已提交
5440
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5441 5442 5443

**参数:**

L
laosan_ted 已提交
5444 5445 5446 5447
| 参数名   | 类型                   | 必填 | 说明                                                         |
| -------- | ---------------------- | ---- | ------------------------------------------------------------ |
| origin   | string                 | 是   | 指定源的字符串索引                                           |
| callback | AsyncCallback\<boolean> | 是   | 返回指定源的地理位置权限状态。获取成功,true表示已授权,false表示拒绝访问。获取失败,表示不存在指定源的权限状态。 |
Y
yuhaoge 已提交
5448 5449 5450

**错误码:**

L
1111  
lixiang 已提交
5451
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
5452 5453 5454

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
5455
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getAccessibleGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin, (error, result) => {
              if (error) {
                console.log('getAccessibleGeolocationAsync error: ' + JSON.stringify(error));
                return;
              }
              console.log('getAccessibleGeolocationAsync result: ' + result);
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getAccessibleGeolocation

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

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

Y
yuhaoge 已提交
5497
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5498

Y
yuhaoge 已提交
5499 5500
**参数:**

L
laosan_ted 已提交
5501
| 参数名 | 类型 | 必填 | 说明             |
L
laosan_ted 已提交
5502 5503
| ------ | -------- | ---- | -------------------- |
| origin | string   | 是   | 指定源的字符串索引。 |
Y
yuhaoge 已提交
5504 5505 5506 5507 5508 5509 5510 5511 5512

**返回值:**

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

**错误码:**

L
1111  
lixiang 已提交
5513
以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。
Y
yuhaoge 已提交
5514 5515 5516

| 错误码ID | 错误信息                                               |
| -------- | ------------------------------------------------------ |
L
laosan_ted 已提交
5517
| 17100011 | Invalid origin.                             |
Y
yuhaoge 已提交
5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557

**示例:**

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

@Entry
@Component
struct WebComponent {
  controller: web_webview.WebviewController = new web_webview.WebviewController();
  origin: string = "file:///";

  build() {
    Column() {
      Button('getAccessibleGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.getAccessibleGeolocation(this.origin)
              .then(result => {
                console.log('getAccessibleGeolocationPromise result: ' + result);
              }).catch(error => {
              console.log('getAccessibleGeolocationPromise error: ' + JSON.stringify(error));
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getStoredGeolocation

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

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

Y
yuhaoge 已提交
5558
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5559 5560 5561

**参数:**

L
laosan_ted 已提交
5562 5563 5564
| 参数名   | 类型                         | 必填 | 说明                                     |
| -------- | ---------------------------- | ---- | ---------------------------------------- |
| callback | AsyncCallback\<Array\<string>> | 是   | 返回已存储地理位置权限状态的所有源信息。 |
Y
yuhaoge 已提交
5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605

**示例:**

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

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

  build() {
    Column() {
      Button('getStoredGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.getStoredGeolocation((error, origins) => {
              if (error) {
                console.log('getStoredGeolocationAsync error: ' + JSON.stringify(error));
                return;
              }
              let origins_str: string = origins.join();
              console.log('getStoredGeolocationAsync origins: ' + origins_str);
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### getStoredGeolocation

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

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

Y
yuhaoge 已提交
5606
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5607

Y
yuhaoge 已提交
5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652
**返回值:**

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

**示例:**

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

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

  build() {
    Column() {
      Button('getStoredGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.getStoredGeolocation()
              .then(origins => {
                let origins_str: string = origins.join();
                console.log('getStoredGeolocationPromise origins: ' + origins_str);
              }).catch(error => {
              console.log('getStoredGeolocationPromise error: ' + JSON.stringify(error));
            });
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

### deleteAllGeolocation

static deleteAllGeolocation(): void

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

Y
yuhaoge 已提交
5653
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680

**示例:**

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

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

  build() {
    Column() {
      Button('deleteAllGeolocation')
        .onClick(() => {
          try {
            web_webview.GeolocationPermissions.deleteAllGeolocation();
          } catch (error) {
            console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```
Y
yuhaoge 已提交
5681
## WebHeader
Y
yuhaoge 已提交
5682 5683
Web组件返回的请求/响应头对象。

Y
yuhaoge 已提交
5684 5685
**系统能力:** SystemCapability.Web.Webview.Core

L
laosan_ted 已提交
5686 5687 5688 5689
| 名称        | 类型   | 可读 | 可写 |说明                 |
| ----------- | ------ | -----|------|------------------- |
| headerKey   | string | 是 | 是 | 请求/响应头的key。   |
| headerValue | string | 是 | 是 | 请求/响应头的value。 |
Y
yuhaoge 已提交
5690

Y
yuhaoge 已提交
5691
## WebHitTestType
Y
yuhaoge 已提交
5692

Y
yuhaoge 已提交
5693 5694
**系统能力:** SystemCapability.Web.Webview.Core

L
laosan_ted 已提交
5695 5696 5697 5698 5699 5700 5701 5702 5703 5704
| 名称          | 值 | 说明                                      |
| ------------- | -- |----------------------------------------- |
| EditText      | 0 |可编辑的区域。                            |
| Email         | 1 |电子邮件地址。                            |
| HttpAnchor    | 2 |超链接,其src为http。                     |
| HttpAnchorImg | 3 |带有超链接的图片,其中超链接的src为http。 |
| Img           | 4 |HTML::img标签。                           |
| Map           | 5 |地理地址。                                |
| Phone         | 6 |电话号码。                                |
| Unknown       | 7 |未知内容。                                |
Y
yuhaoge 已提交
5705 5706 5707 5708 5709

##  HitTestValue

提供点击区域的元素信息。示例代码参考getHitTestValue。

Y
yuhaoge 已提交
5710 5711
**系统能力:** SystemCapability.Web.Webview.Core

L
laosan_ted 已提交
5712 5713
| 名称 | 类型 | 可读 | 可写 | 说明|
| ---- | ---- | ---- | ---- |---- |
Y
yuhaoge 已提交
5714
| type | [WebHitTestType](#webhittesttype) | 是 | 否 | 当前被点击区域的元素类型。|
L
laosan_ted 已提交
5715
| extra | string        | 是 | 否 |点击区域的附加参数信息。若被点击区域为图片或链接,则附加参数信息为其url地址。 |
Y
yuhaoge 已提交
5716

E
echoorchid 已提交
5717 5718 5719 5720
## WebMessage

用于描述[WebMessagePort](#webmessageport)所支持的数据类型。

5721 5722
**系统能力:** SystemCapability.Web.Webview.Core

E
echoorchid 已提交
5723 5724 5725 5726 5727
| 类型       | 说明                                     |
| -------- | -------------------------------------- |
| string   | 字符串类型数据。 |
| ArrayBuffer   | 二进制类型数据。 |

E
echoorchid 已提交
5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781
## JsMessageType<sup>10+</sup>

[runJavaScirptExt](#runjavascriptext10)接口脚本执行后返回的结果的类型。

**系统能力:** SystemCapability.Web.Webview.Core

| 名称         | 值 | 说明                              |
| ------------ | -- |--------------------------------- |
| NOT_SUPPORT  | 0 |不支持的数据类型。|
| STRING       | 1 |字符串类型。|
| NUMBER       | 2 |数值类型。|
| BOOLEAN      | 3 |布尔类型。|
| ARRAY_BUFFER | 4 |原始二进制数据缓冲区。|
| ARRAY        | 5 |数组类型|


## WebMessageType<sup>10+</sup>

[webMessagePort](#webmessageport)接口所支持的数据类型。

**系统能力:** SystemCapability.Web.Webview.Core

| 名称         | 值 | 说明                            |
| ------------ | -- |------------------------------- |
| NOT_SUPPORT  | 0 |不支持的数据类型。|
| STRING       | 1 |字符串类型。|
| NUMBER       | 2 |数值类型。|
| BOOLEAN      | 3 |布尔类型。|
| ARRAY_BUFFER | 4 |原始二进制数据缓冲区。|
| ARRAY        | 5 |数组类型。|
| ERROR        | 6 |错误类型。|

## JsMessageExt<sup>10+</sup>

[runJavaScirptExt](#runjavascriptext10)接口执行脚本返回的数据对象。

### getType<sup>10+</sup>

getType(): JsMessageType

获取数据对象的类型。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明                                                      |
| --------------| --------------------------------------------------------- |
| [JsMessageType](#jsmessagetype10) | [runJavaScirptExt](#runjavascriptext10)接口脚本执行后返回的结果的类型。 |

### getString<sup>10+</sup>

getString(): string

E
echoorchid 已提交
5782
获取数据对象的字符串类型数据。完整示例代码参考[runJavaScriptExt](#runjavascriptext10)。
E
echoorchid 已提交
5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| string | 返回字符串类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the result. |


### getNumber<sup>10+</sup>

getNumber(): number

E
echoorchid 已提交
5805
获取数据对象的数值类型数据。完整示例代码参考[runJavaScriptExt](#runjavascriptext10)。
E
echoorchid 已提交
5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| number | 返回数值类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the result. |

### getBoolean<sup>10+</sup>

getBoolean(): boolean

E
echoorchid 已提交
5827
获取数据对象的布尔类型数据。完整示例代码参考[runJavaScriptExt](#runjavascriptext10)。
E
echoorchid 已提交
5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| boolean | 返回布尔类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the result. |


### getArrayBuffer<sup>10+</sup>

getArrayBuffer(): ArrayBuffer

E
echoorchid 已提交
5850
获取数据对象的原始二进制数据。完整示例代码参考[runJavaScriptExt](#runjavascriptext10)。
E
echoorchid 已提交
5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870
**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| ArrayBuffer | 返回原始二进制数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the result. |

### getArray<sup>10+</sup>

getArray(): Array\<string | number | boolean\>

E
echoorchid 已提交
5871
获取数据对象的数组类型数据。完整示例代码参考[runJavaScriptExt](#runjavascriptext10)。
E
echoorchid 已提交
5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| Array\<string | number | boolean\> | 返回数组类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the result. |


## WebMessageExt<sup>10+</sup>

[webMessagePort](#webmessageport)接口接收、发送的的数据对象。

### getType<sup>10+</sup>

getType(): WebMessageType

获取数据对象的类型。

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明                                                      |
| --------------| --------------------------------------------------------- |
| [WebMessageType](#webmessagetype10) | [webMessagePort](#webmessageport)接口所支持的数据类型。 |


### getString<sup>10+</sup>

getString(): string

E
echoorchid 已提交
5913
获取数据对象的字符串类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| string | 返回字符串类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |


### getNumber<sup>10+</sup>

getNumber(): number

E
echoorchid 已提交
5936
获取数据对象的数值类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| number | 返回数值类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |


### getBoolean<sup>10+</sup>

getBoolean(): boolean

E
echoorchid 已提交
5959
获取数据对象的布尔类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| boolean | 返回布尔类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |


### getArrayBuffer<sup>10+</sup>

getArrayBuffer(): ArrayBuffer

E
echoorchid 已提交
5982
获取数据对象的原始二进制数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002
**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| ArrayBuffer | 返回原始二进制数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### getArray<sup>10+</sup>

getArray(): Array\<string | number | boolean\>

E
echoorchid 已提交
6003
获取数据对象的数组类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| Array\<string | number | boolean\> | 返回数组类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### getError<sup>10+</sup>

getError(): Error

E
echoorchid 已提交
6025
获取数据对象的错误类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067

**系统能力:** SystemCapability.Web.Webview.Core

**返回值:**

| 类型           | 说明          |
| --------------| ------------- |
| Error | 返回错误对象类型的数据。 |

**错误码:**

以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |


### setType<sup>10+</sup>

setType(type: WebMessageType): void

设置数据对象的类型。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| type  | [WebMessageType](#webmessagetype10) | 是   | [webMessagePort](#webmessageport)接口所支持的数据类型。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setString<sup>10+</sup>

setString(message: string): void

E
echoorchid 已提交
6068
设置数据对象的字符串类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | string | 是   | 字符串类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setNumber<sup>10+</sup>

setNumber(message: number): void

E
echoorchid 已提交
6088
设置数据对象的数值类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | number | 是   | 数值类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setBoolean<sup>10+</sup>

setBoolean(message: boolean): void

E
echoorchid 已提交
6108
设置数据对象的布尔类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | boolean | 是   | 布尔类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setArrayBuffer<sup>10+</sup>

setArrayBuffer(message: ArrayBuffer): void

E
echoorchid 已提交
6128
设置数据对象的原始二进制数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | ArrayBuffer | 是   | 原始二进制类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setArray<sup>10+</sup>

setArray(message: Array\<string | number | boolean\>): void

E
echoorchid 已提交
6148
设置数据对象的数组类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | Array\<string \| number \| boolean\> | 是   | 数组类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |

### setError<sup>10+</sup>

setError(message: Error): void

E
echoorchid 已提交
6168
设置数据对象的错误对象类型数据。完整示例代码参考[onMessageEventExt](#onmessageeventext10)。
E
echoorchid 已提交
6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | -------------------- |
| message  | Error | 是   | 错误对象类型数据。 |

**错误码:**

| 错误码ID | 错误信息                              |
| -------- | ------------------------------------- |
| 17100014 | The type does not match with the value of the web message. |


Y
yuhaoge 已提交
6185 6186 6187 6188
## WebStorageOrigin

提供Web SQL数据库的使用信息。

Y
yuhaoge 已提交
6189
**系统能力:** SystemCapability.Web.Webview.Core
Y
yuhaoge 已提交
6190

L
laosan_ted 已提交
6191 6192 6193 6194
| 名称   | 类型   | 可读 | 可写 | 说明 |
| ------ | ------ | ---- | ---- | ---- |
| origin | string | 是  | 否 | 指定源的字符串索引。 |
| usage  | number | 是  | 否 | 指定源的存储量。     |
C
chensi10 已提交
6195 6196 6197 6198 6199 6200 6201 6202
| quota  | number | 是  | 否 | 指定源的存储配额。   |

## BackForwardList

当前Webview的历史信息列表。

**系统能力:** SystemCapability.Web.Webview.Core

6203 6204 6205 6206
| 名称         | 类型   | 可读 | 可写 | 说明                                                         |
| ------------ | ------ | ---- | ---- | ------------------------------------------------------------ |
| currentIndex | number | 是   | 否   | 当前在页面历史列表中的索引。                                 |
| size         | number | 是   | 否   | 历史列表中索引的数量,最多保存50条,超过时起始记录会被覆盖。 |
C
chensi10 已提交
6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221

### getItemAtIndex

getItemAtIndex(index: number): HistoryItem

获取历史列表中指定索引的历史记录项信息。

**系统能力:** SystemCapability.Web.Webview.Core

**参数:**

| 参数名 | 类型   | 必填 | 说明                   |
| ------ | ------ | ---- | ---------------------- |
| index  | number | 是   | 指定历史列表中的索引。 |

6222
**返回值:**
C
chensi10 已提交
6223 6224 6225

| 类型                        | 说明         |
| --------------------------- | ------------ |
C
chensi10 已提交
6226
| [HistoryItem](#historyitem) | 历史记录项。 |
C
chensi10 已提交
6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239

**示例:**

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

C
chensi10 已提交
6241 6242 6243 6244 6245 6246 6247
  build() {
    Column() {
      Button('getBackForwardEntries')
        .onClick(() => {
          try {
            let list = this.controller.getBackForwardEntries();
            let historyItem = list.getItemAtIndex(list.currentIndex);
6248 6249
            console.log("HistoryItem: " + JSON.stringify(historyItem));
            this.icon = historyItem.icon;
C
chensi10 已提交
6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272
          } catch (error) {
            console.error(`ErrorCode: ${error.code},  Message: ${error.message}`);
          }
        })
      Web({ src: 'www.example.com', controller: this.controller })
    }
  }
}
```

## HistoryItem

页面历史记录项。

**系统能力:** SystemCapability.Web.Webview.Core

| 名称          | 类型                                   | 可读 | 可写 | 说明                         |
| ------------- | -------------------------------------- | ---- | ---- | ---------------------------- |
| icon          | [PixelMap](js-apis-image.md#pixelmap7) | 是   | 否   | 历史页面图标的PixelMap对象。 |
| historyUrl    | string                                 | 是   | 否   | 历史记录项的url地址。        |
| historyRawUrl | string                                 | 是   | 否   | 历史记录项的原始url地址。    |
| title         | string                                 | 是   | 否   | 历史记录项的标题。           |

Y
yuhaoge 已提交
6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283
## WebCustomScheme

自定义协议配置。

**系统能力:** SystemCapability.Web.Webview.Core

| 名称           | 类型       | 可读 | 可写 | 说明                         |
| -------------- | --------- | ---- | ---- | ---------------------------- |
| schemeName     | string    | 是   | 是   | 自定义协议名称。最大长度为32,其字符仅支持小写字母、数字、'.'、'+'、'-'。        |
| isSupportCORS  | boolean   | 是   | 是   | 是否支持跨域请求。    |
| isSupportFetch | boolean   | 是   | 是   | 是否支持fetch请求。           |
W
w00477664 已提交
6284

6285
## SecureDnsMode<sup>10+</sup>
W
w00477664 已提交
6286 6287 6288 6289 6290 6291 6292

Web組件使用HTTPDNS的模式。

**系统能力:** SystemCapability.Web.Webview.Core

| 名称          | 值 | 说明                                      |
| ------------- | -- |----------------------------------------- |
L
lixiang 已提交
6293 6294 6295 6296 6297 6298
| Off<sup>(deprecated)</sup>           | 0 |不使用HTTPDNS, 可以用于撤销之前使用的HTTPDNS配置。<br>从API version 10开始不再维护,建议使用OFF代替。|
| Auto<sup>(deprecated)</sup>          | 1 |自动模式,用于解析的设定dns服务器不可用时,可自动回落至系统DNS。<br>从API version 10开始不再维护,建议使用AUTO代替。|
| SecureOnly<sup>(deprecated)</sup>    | 2 |强制使用设定的HTTPDNS服务器进行域名解析。<br>从API version 10开始不再维护,建议使用SECURE_ONLY代替。|
| OFF                                  | 0 |不使用HTTPDNS, 可以用于撤销之前使用的HTTPDNS配置。|
| AUTO                                 | 1 |自动模式,用于解析的设定dns服务器不可用时,可自动回落至系统DNS。|
| SECURE_ONLY                          | 2 |强制使用设定的HTTPDNS服务器进行域名解析。|