HarmonyOS web组件 加载web页面异常?

1、A页面通过Navigation组件 跳转到B页面 B页面中是一个web组件加载web页面

2、启动应用,第一次用户点击A页面中的某入口跳转到B页面 B页面展示web页面展示正常, B页面返回到A页面 再次进入B页面 web页面异常(页面顶部内容被遮挡 页面错乱)

@Entry
@Component
struct Login {

  pageStack: NavPathStack = new NavPathStack()
  build() {
Navigation(this.pageStack) {
Text('服务协议')
.onClick(() => {
this.pageStack.pushPath({ name: "webview" })
})
}.title('登录')
.hideTitleBar(true)




//WebView.ets

import { webview } from '@kit.ArkWeb'

// 跳转页面入口函数
@Builder
export function WebViewBuilder() {
WebView()
}

@Component
struct WebView {

webviewController: webview.WebviewController = new webview.WebviewController()

build() {
NavDestination() {
Column() {
Web({ src: 'www.huawei.com', controller: this.webviewController })
}
}
.title('服务协议')
}
}


route_map.json

{
  "routerMap": [
  {
    "name": "webview",
  "pageSourceFile": "src/main/ets/pages/WebView.ets",
  "buildFunction": "WebViewBuilder"
  }
  ]
}
阅读 456
1 个回答

需要给web设置一个具体的高度来解决,可以通过getRectangleById方法获取到整个NavDestination的高度,来动态设置web的高度。可以使用以下demo验证下:

//WebView.ets
import { webview } from '@kit.ArkWeb'
import componentUtils from '@ohos.arkui.componentUtils'

// 跳转页面入口函数
@Builder
export function WebViewBuilder() {
  WebView()
}

@Component
struct WebView {
  webviewController: webview.WebviewController = new webview.WebviewController()
  @State webHeight:number=0;

  build() {
    NavDestination() {
      Web({ src: 'www.huawei.com', controller: this.webviewController})
        .height(this.webHeight)
    }
    .title('服务协议')
    .hideTitleBar(false)
    .width('100%')
    .height('100%')
    .id('NavDestination')
    .onShown(()=>{
      let info = componentUtils.getRectangleById('NavDestination') //通过id获取整个NavDestination区域的大小
      this.webHeight = px2vp(info.size.height)
      console.log('高度:'+this.webHeight.toString())
    })
  }
}
logo
HarmonyOS
子站问答
访问
宣传栏