H5调用应用侧方法可参考以下demo:index.ets Web()//注册方法 .javaScriptProxy({ object: this.testObj, name: "testObjName", methodList: ["getLocationTS"], controller: this.webController }) class testClass { constructor() { } async getLocationTS(): Promise<string> { //应用侧方法逻辑 } H5页面 <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css"> <meta charset="UTF-8"> <title>获取定位信息</title> <style> #prize { border-radius: 16px 16px 16px 16px; background-image: linear-gradient(180deg, #A2DAFF 0%, #EAF5FF 100%); margin-left: 1.82%; margin-top: 1.43%; width: 96.5%; height: 96.7%; } </style> </head> <body> <div style="width:1000px;height:500px"> <input style="width:1000px;height:100px;font-size:30px" id="inputText"/> <p style="width:1000px;height:100px;font-size:30px" id="demo">p1</p> <button style="width:1000px;height:100px" onclick="getLocation()"> <span style="font-size:30px">获取定位</span> </button> </div> <script> function getLocation() { <!-- ArtTS侧返回的如果是 promise对象,使用改方法处理 --> <!-- 具体可参考前端页面调用应用侧函数API,包含简单类型和复杂类型--> <!-- https://developer.huawei.com/consumer/cn/doc/harmonyos-guides/web-in-page-app-function-invoking-0000001844832802--> <!-- H5侧方法调用 --> testObjName.getLocationTS() .then((param)=>{ document.getElementById("demo").innerHTML = "testObjName.getLocationTS()--"+JSON.stringify(param) }) .catch((param)=>{ document.getElementById("demo").innerHTML = "testObjName.getLocationTS()--"+JSON.stringify(param) }) } </script> </body> </html> }
H5调用应用侧方法可参考以下demo: