HarmonyOS Web组件如何加载html字符串

HarmonyOS  Web组件如何加载html字符串。

HarmonyOS
2024-09-04 11:39:58
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

可以使用loaddata

参考官方文档:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-webview-V5#loaddata

// xxx.ets 
import web_webview from '@ohos.web.webview'; 
import business_error from '@ohos.base'; 
 
@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) { 
            let e: business_error.BusinessError = error as business_error.BusinessError; 
            console.error(`ErrorCode: ${e.code}, Message: ${e.message}`); 
          } 
        }) 
      Web({ src: 'www.huawei.com', controller: this.controller }) 
    } 
  } 
}
分享
微博
QQ
微信
回复
2024-09-04 17:41:04
相关问题
Web如何使用loadData加载复杂Html字符串
2105浏览 • 1回复 待解决
HarmonyOS List上展示html字符串
238浏览 • 1回复 待解决
如何加载字符串形式H5数据
1956浏览 • 1回复 待解决
HarmonyOS Web组件加载html文件异常
321浏览 • 1回复 待解决
如何实现ArkUI组件字符串变量拼接?
302浏览 • 1回复 待解决
如何实现ArkUI组件字符串变量拼接
2673浏览 • 1回复 待解决
List上展示服务端下发的HTML字符串
89浏览 • 1回复 待解决
字符串如何转为ArrayBuffer?
406浏览 • 1回复 待解决
HarmonyOS字符串替换问题
472浏览 • 1回复 待解决
HarmonyOS 字符串显示异常
286浏览 • 1回复 待解决
web组件html文件的加载
654浏览 • 1回复 待解决
HarmonyOS 如何解析json字符串
59浏览 • 1回复 待解决
检查字符串是否以给定的字符串结尾
282浏览 • 1回复 待解决
检查字符串是否以给定的字符串开头
354浏览 • 1回复 待解决
如何生成UUID的字符串
2065浏览 • 1回复 待解决
如何实现字符串编解码
2419浏览 • 1回复 待解决