HarmonyOS 接入
使用 Web 组件加载全屏聊天页面。
typescript
// ChatPage.ets (ArkTS)
import web_webview from '@ohos.web.webview'
@Entry @Component
struct ChatPage {
controller: web_webview.WebviewController = new web_webview.WebviewController()
build() {
Column() {
Web({
src: 'https://widget.webnav.ai/widget/mobile.html',
controller: this.controller
})
.javaScriptAccess(true)
.domStorageAccess(true)
.width('100%')
.layoutWeight(1)
}
.width('100%')
.height('100%')
}
}