HarmonyOS 前端页面调用应用侧函数registerJavaScriptProxy没有挂载在window上

​在使用HarmonyOS web组件时,会加载以前的其他端写的web页面,同时原生和web页面有交互,需要使用js方法来调用原生,但是之前在其他端的写法是

webView.addJavascriptInterface

这个方法会把js对象挂载到web的window里面,然后调用widnwo.jsobj.func,但是在HarmonyOS的registerJavaScriptProxy使用里,在前端是不需要调用window的,而是jsobj.func,这对前端的老页面复用和兼容提出了挑战。

请问是否有兼容方案?​


HarmonyOS
2024-11-07 10:40:45
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

​可以调用window.jsobj.func。

可以参考:​https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs/faqs-arkweb-kit-V5#使用web组件加载本地网页时如何在本地网页中调用arkts中的函数api-9

1.准备一个html文件,例如:​

<!DOCTYPE html> 
  <html lang="en"> 
  <head> 
  <meta charset="UTF-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
  <title>Document</title> 
  </head> 
  <body> 
  <h1>标题</h1> 
  <h5 id="h5"></h5> 
  <h5 id = "h6"></h5> 
  <button onclick="handleFromH5">调用Arkts的方法</button> 
  <script type="text/javascript"> 
  function handleFromH5(){ 
    let result = window.objName.test(); 
    document.getElementById('h6').innerHTML = result; 
  } 
  </script> 
  </body> 
  </html>

2.在ArkTs中使用JavaScriptProxy方法将ArkTS里的对象注册到H5的window对象中,然后在h5中使用window对象调用该方法。比如下面例子,在ArkTS中将testObj这个对象以别名objName注册到h5的window对象上,在上面的h5中就可以使用window.objName去访问这个对象。

// xxx.ets 
import { webview } from '@kit.ArkWeb' 
 
class TestObj { 
  constructor() { 
  } 
  test(data1: string, data2: string, data3: string): string { 
    console.log("data1:" + data1) 
    console.log("data2:" + data2) 
    console.log("data3:" + data3) 
    return "AceString" 
  } 
  toString(): void { 
    console.log('toString' + "interface instead.") 
  } 
} 
 
@Entry 
@Component 
struct Index { 
  @State message: string = 'Hello World' 
  controller: webview.WebviewController = new webview.WebviewController() 
  testObj = new TestObj(); 
  build() { 
    Row() { 
      Column() { 
        Web({ src:$rawfile('index.html'), controller:this.controller }) 
          .javaScriptAccess(true) 
          .javaScriptProxy({ 
            object: this.testObj, 
            name: "objName", 
            methodList: ["test", "toString"], 
            controller: this.controller, 
          }) 
      } 
      .width('100%') 
    } 
    .height('100%') 
  } 
}
分享
微博
QQ
微信
回复
2024-11-07 17:34:50
相关问题
Native调用ArkTS函数
935浏览 • 1回复 待解决
页面中如何获取window实例?
322浏览 • 1回复 待解决
HarmonyOS WebView组件前端页面调试
210浏览 • 1回复 待解决
Native调用ArkTS的全局普通方法
882浏览 • 1回复 待解决
TS如何批量传递函数到native
942浏览 • 1回复 待解决
HarmonyOS @Watch函数调用问题
385浏览 • 1回复 待解决