diff --git a/zh-cn/application-dev/reference/apis/js-apis-webview.md b/zh-cn/application-dev/reference/apis/js-apis-webview.md index 722eecfb467b5ea754f9c9a6d241e9a5273c571c..b2a7db32bbb72ba6851e5bc6800bffd1e9b6578f 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-webview.md +++ b/zh-cn/application-dev/reference/apis/js-apis-webview.md @@ -208,7 +208,6 @@ postMessageEventExt(message: WebMessageExt): void | -------- | ------------------------------------- | | 17100010 | Can not post message using this port. | - ### onMessageEventExt10+ onMessageEventExt(callback: (result: WebMessageExt) => void): void @@ -4347,7 +4346,6 @@ static saveCookieAsync(callback: AsyncCallback\): void | -------- | ---------------------- | ---- | :------------------------------------------------- | | callback | AsyncCallback\ | 是 | callback回调,用于获取cookie是否成功保存。 | - **示例:** ```ts @@ -5739,7 +5737,6 @@ Web组件返回的请求/响应头对象。 | ARRAY_BUFFER | 4 |原始二进制数据缓冲区。| | ARRAY | 5 |数组类型| - ## WebMessageType10+ [webMessagePort](#webmessageport)接口所支持的数据类型。 @@ -5796,7 +5793,6 @@ getString(): string | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the result. | - ### getNumber10+ getNumber(): number @@ -5841,7 +5837,6 @@ getBoolean(): boolean | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the result. | - ### getArrayBuffer10+ getArrayBuffer(): ArrayBuffer @@ -5885,7 +5880,6 @@ getArray(): Array\ | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the result. | - ## WebMessageExt10+ [webMessagePort](#webmessageport)接口接收、发送的的数据对象。 @@ -5904,7 +5898,6 @@ getType(): WebMessageType | --------------| --------------------------------------------------------- | | [WebMessageType](#webmessagetype10) | [webMessagePort](#webmessageport)接口所支持的数据类型。 | - ### getString10+ getString(): string @@ -5927,7 +5920,6 @@ getString(): string | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the web message. | - ### getNumber10+ getNumber(): number @@ -5950,7 +5942,6 @@ getNumber(): number | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the web message. | - ### getBoolean10+ getBoolean(): boolean @@ -5973,7 +5964,6 @@ getBoolean(): boolean | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the web message. | - ### getArrayBuffer10+ getArrayBuffer(): ArrayBuffer @@ -6039,7 +6029,6 @@ getError(): Error | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the web message. | - ### setType10+ setType(type: WebMessageType): void @@ -6180,7 +6169,6 @@ setError(message: Error): void | -------- | ------------------------------------- | | 17100014 | The type does not match with the value of the web message. | - ## WebStorageOrigin 提供Web SQL数据库的使用信息。 diff --git a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md index 3612e6044ca1bcb7d5a9c2ca4f04f465b9e4432a..a12dd8e38236deab2beda8766ef72e7f89117209 100755 --- a/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md +++ b/zh-cn/application-dev/reference/arkui-ts/ts-basic-components-web.md @@ -670,12 +670,16 @@ verticalScrollBarAccess(verticalScrollBar: boolean) ``` -### password +### password(deprecated) password(password: boolean) 设置是否应保存密码。该接口为空接口。 +> **说明:** +> +> 从API version 10开始废弃,并且不再提供新的接口作为替代。 + ### cacheMode cacheMode(cacheMode: CacheMode) @@ -991,7 +995,6 @@ minLogicalFontSize(size: number) } ``` - ### webFixedFont9+ webFixedFont(family: string) @@ -1242,18 +1245,26 @@ forceDarkAccess(access: boolean) } ``` -### tableData +### tableData(deprecated) tableData(tableData: boolean) 设置是否应保存表单数据。该接口为空接口。 -### wideViewModeAccess +> **说明:** +> +> 从API version 10开始废弃,并且不再提供新的接口作为替代。 + +### wideViewModeAccess(deprecated) wideViewModeAccess(wideViewModeAccess: boolean) 设置web是否支持html中meta标签的viewport属性。该接口为空接口。 +> **说明:** +> +> 从API version 10开始废弃,并且不再提供新的接口作为替代。 + ### pinchSmooth9+ pinchSmooth(isEnabled: boolean) @@ -1384,7 +1395,6 @@ mediaOptions(options: WebMediaOptions) **示例:** - ```ts // xxx.ets import web_webview from '@ohos.web.webview' @@ -1939,7 +1949,6 @@ onHttpErrorReceive(callback: (event?: { request: WebResourceRequest, response: W onPageBegin(callback: (event?: { url: string }) => void) - 网页开始加载时触发该回调,且只在主frame触发,iframe或者frameset的内容加载时不会触发此回调。 **参数:** @@ -1974,7 +1983,6 @@ onPageBegin(callback: (event?: { url: string }) => void) onPageEnd(callback: (event?: { url: string }) => void) - 网页加载完成时触发该回调,且只在主frame触发。 **参数:** @@ -3668,7 +3676,6 @@ Web组件返回的请求/响应头对象。 | headerKey | string | 请求/响应头的key。 | | headerValue | string | 请求/响应头的value。 | - ## WebResourceResponse web组件资源响应对象。示例代码参考[onHttpErrorReceive事件](#onhttperrorreceive)。