使用Web组件加载本地网页时,如何在本地网页中调用ArkTS中的函数

使用Web组件加载本地网页时,如何在本地网页中调用ArkTS中的函数

HarmonyOS
2024-01-21 13:50:40
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
lifestudio

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>
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.

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%') 
  } 
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.

已于2024-1-31 11:54:08修改
分享
微博
QQ
微信
回复
2024-01-22 15:57:55
相关问题
鸿蒙应用进行http本地网络访问
3432浏览 • 1回复 待解决
使用Web组件加载网页,显示空白。
642浏览 • 1回复 待解决
HarmonyOS Web加载网页白屏
664浏览 • 1回复 待解决
HarmonyOS web组件如何加载本地字库?
439浏览 • 1回复 待解决
Web组件网页图片长按出现蒙层
995浏览 • 1回复 待解决