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 65633cba176d1277dbff1cfb5462321551a2ba7d..bc65307aae694a922e94fe62865cefa2e62f973d 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-webview.md +++ b/zh-cn/application-dev/reference/apis/js-apis-webview.md @@ -739,6 +739,11 @@ loadData(data: string, mimeType: string, encoding: string, baseUrl?: string, his | baseUrl | string | 否 | 指定的一个URL路径(“http”/“https”/"data"协议),并由Web组件赋值给window.origin。 | | historyUrl | string | 否 | 用作历史记录所使用的URL。非空时,历史记录以此URL进行管理。当baseUrl为空时,此属性无效。 | +> **说明:** +> +> 若加载本地图片,可以给baseUrl或historyUrl任一参数赋值空格,详情请参考示例代码。 +> 加载本地图片场景,baseUrl和historyUrl不能同时为空,否则图片无法成功加载。 + **错误码:** 以下错误码的详细介绍请参见[webview错误码](../errorcodes/errorcode-webview.md)。 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 7de4f1197d77644725b9bd06607d161f8f14d296..9be5a42b57ccfd96a84fd44a58d924acd6b84bbd 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 @@ -408,7 +408,7 @@ zoomAccess(zoomAccess: boolean) overviewModeAccess(overviewModeAccess: boolean) -设置是否使用概览模式加载网页,默认使用该方式。 +设置是否使用概览模式加载网页,默认使用该方式。当前仅支持移动设备。 **参数:** @@ -1174,7 +1174,7 @@ webCursiveFont(family: string) darkMode(mode: WebDarkMode) -设置Web深色模式,默认关闭。当深色模式开启时,Web将启用媒体查询prefer-color-scheme中网页所定义的深色样式,若网页未定义深色样式,则保持原状。如需开启强制深色模式,建议配合[forceDarkAccess](#forcedarkaccess9)使用。 +设置Web深色模式,默认关闭。当深色模式开启时,Web将启用媒体查询prefers-color-scheme中网页所定义的深色样式,若网页未定义深色样式,则保持原状。如需开启强制深色模式,建议配合[forceDarkAccess](#forcedarkaccess9)使用。 **参数:** @@ -2467,7 +2467,6 @@ onSslErrorEventReceive(callback: (event: { handler: SslErrorHandler, error: SslE event.handler.handleCancel() } }) - return true }) } } @@ -2522,7 +2521,6 @@ onClientAuthenticationRequest(callback: (event: {handler : ClientAuthenticationH event.handler.ignore() } }) - return true }) } }