From a1fa3fea796a5813717ab3ef553b4a778f24ac43 Mon Sep 17 00:00:00 2001 From: lixiang Date: Thu, 18 May 2023 17:23:27 +0800 Subject: [PATCH] add Description when using loaddata API to loading local images Signed-off-by: lixiang --- zh-cn/application-dev/reference/apis/js-apis-webview.md | 5 +++++ .../reference/arkui-ts/ts-basic-components-web.md | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) 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 65633cba17..bc65307aae 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 7de4f1197d..9be5a42b57 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 }) } } -- GitLab