中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何使用Web组件加载一段html代码片段?
微信扫码分享
import web_webview from '@ohos.web.webview'; @Component export struct ArkWebView { controller: web_webview.WebviewController = new web_webview.WebviewController(); build() { Column() { Button("加载html").onClick(() => { this.controller.loadData( "<html><body>Hello HarmonyOS</body></html>", "text/html", "UTF-8" ); }) Web({ src: $rawfile("Hello.html"), controller: this.controller }) .width("100%") .height("100%") } .width("100%") .height("100%") } }