HarmonyOS Web组件某些网页页面打不开?

请问Web是需要配置什么属性才可以吗?

阅读 584
1 个回答

demo参考:添加 .domStorageAccess(true)。

import { webview } from '@kit.ArkWeb'

@Entry
@Component
struct Index {
  private webviewController: WebviewController = new webview.WebviewController();
  build() {
    Column(){
      Web({ controller: this.webviewController, src: "xxx" })
        .domStorageAccess(true)
    }
  }
}