HarmonyOS this.controller.accessBackward() 返回值一直返回false

升级到api 12以后,判断当前网页是否可以返回方法一直返回false

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

setCustomUserAgent设置后与web页面的跳转时序是web跳转后才设置UserAgent,这就导致页面跳转了但新agent关联的页面堆栈数仍只有一个,webviewController.accessBackward()总是返回false。

参考链接:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-webview-V5#setcustomuseragent10

建议在setCustomUserAgent方法后,调用loadUrl,且使用onControllerAttached替换onLoadIntercept进行applyCustomUserAgent方法的调用,参考demo如下:

import { webview } from '@kit.ArkWeb'

@Entry
@Component
export struct PageWeb {
  readonly webUrl: string | Resource = 'www.myURL.com'
  readonly controller: WebviewController = new webview.WebviewController()
  userAgentAlreadySet: boolean = false
  @State customUserAgent?: string = undefined
  build() {
    if (this.customUserAgent){
      Web({ src:'', controller: this.controller })
        .size({ width: '100%', height: '100%' })
        .javaScriptAccess(true)
        .fileAccess(true)
        .domStorageAccess(true)
        .databaseAccess(true)
        .mixedMode(MixedMode.Compatible)
        .zoomAccess(true)
        .geolocationAccess(true)
        .multiWindowAccess(false)
        .overviewModeAccess(false)
        .darkMode(WebDarkMode.Auto)
        .pinchSmooth(true)
        .onControllerAttached(() => {
          this.applyCustomUserAgent()
        })}
  }


  aboutToAppear(): void {
    // 模拟异步构建 customUserAgent 过程
    setTimeout(() => this.customUserAgent = 'ua/value', 200)
  }


  applyCustomUserAgent(): void {
    if (this.userAgentAlreadySet || !this.customUserAgent) return
    this.userAgentAlreadySet = true
    let defaultUserAgent = this.controller.getUserAgent()
    this.controller.setCustomUserAgent(defaultUserAgent + ' ' + this.customUserAgent)
    this.controller.loadUrl(this.webUrl)
  }


  onBackPress(): boolean | void {
    if (this.controller.accessBackward()) {
      this.controller.backward()
      return true
    }
  }
}
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS TextPickerDialog返回值问题
339浏览 • 1回复 待解决
HarmonyOS Promise函数返回值问题
8浏览 • 1回复 待解决
求助:关于HTTP返回值的问题
2828浏览 • 1回复 待解决
event.data.isRequestGesture()返回值问题
860浏览 • 1回复 待解决
HarmonyOS 使用电池状态返回值问题
433浏览 • 1回复 待解决
HarmonyOS router.back()如何获取返回值
38浏览 • 1回复 待解决
HarmonyOS crypto-js加密没有返回值
32浏览 • 1回复 待解决
错误rowCount返回值-1如何处理?
1259浏览 • 1回复 待解决
HarmonyOS获取图片旋转一直报错
467浏览 • 1回复 待解决
HarmonyOS 获取副卡服务商无返回值
43浏览 • 1回复 待解决