鸿蒙Next学习-webview原生与JS交互通信

打印 上一主题 下一主题

主题 1015|帖子 1015|积分 3045

应用侧调用前端页面函数

应用侧可以通过runJavaScript()和runJavaScriptExt()方法调用前端页面的JavaScript相干函数。
runJavaScript()和runJavaScriptExt()在参数范例上有些差异。runJavaScriptExt()入参范例不仅支持string还支持ArrayBuffer(从文件中获取JavaScript脚本数据),另外可以通过AsyncCallback的方式获取实行结果。
在下面的示例中,点击应用侧的“runJavaScript”按钮时,来触发前端页面的htmlTest()方法。


  • 前端页面代码。
  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <button type="button" onclick="callArkTS()">Click Me!</button>
  6. <h1 id="text">这是一个测试信息,默认字体为黑色,调用runJavaScript方法后字体为绿色,调用runJavaScriptCodePassed方法后字体为红色</h1>
  7. <script>
  8.     // 调用有参函数时实现。
  9.     var param = "param: JavaScript Hello World!";
  10.     function htmlTest(param) {
  11.         document.getElementById('text').style.color = 'green';
  12.         console.log(param);
  13.     }
  14.     // 调用无参函数时实现。
  15.     function htmlTest() {
  16.         document.getElementById('text').style.color = 'green';
  17.     }
  18.     // Click Me!触发前端页面callArkTS()函数执行JavaScript传递的代码。
  19.     function callArkTS() {
  20.         changeColor();
  21.     }
  22. </script>
  23. </body>
  24. </html>
复制代码
 应用侧代码。
  1. // xxx.ets
  2. import { webview } from '@kit.ArkWeb';
  3. @Entry
  4. @Component
  5. struct WebComponent {
  6.   webviewController: webview.WebviewController = new webview.WebviewController();
  7.   aboutToAppear() {
  8.     // 配置Web开启调试模式
  9.     webview.WebviewController.setWebDebuggingAccess(true);
  10.   }
  11.   build() {
  12.     Column() {
  13.       Button('runJavaScript')
  14.         .onClick(() => {
  15.           // 前端页面函数无参时,将param删除。
  16.           this.webviewController.runJavaScript('htmlTest(param)');
  17.         })
  18.       Button('runJavaScriptCodePassed')
  19.         .onClick(() => {
  20.           // 传递runJavaScript侧代码方法。
  21.           this.webviewController.runJavaScript(`function changeColor(){document.getElementById('text').style.color = 'red'}`);
  22.         })
  23.       Web({ src: $rawfile('index.html'), controller: this.webviewController })
  24.     }
  25.   }
  26. }
复制代码


前端页面调用应用侧函数

开发者利用Web组件将应用侧代码注册到前端页面中,注册完成之后,前端页面中利用注册的对象名称就可以调用应用侧的函数,实如今前端页面中调用应用侧方法。
注册应用侧代码有两种方式,一种在Web组件初始化调用,利用javaScriptProxy()接口。另外一种在Web组件初始化完成后调用,利用registerJavaScriptProxy()接口。
在下面的示例中,将test()方法注册在前端页面中, 该函数可以在前端页面触发运行。


  • javaScriptProxy()接口利用示例如下。
  1. // xxx.ets
  2. import { webview } from '@kit.ArkWeb';
  3. class testClass {
  4.   constructor() {
  5.   }
  6.   test(): string {
  7.     return 'ArkTS Hello World!';
  8.   }
  9. }
  10. @Entry
  11. @Component
  12. struct WebComponent {
  13.   webviewController: webview.WebviewController = new webview.WebviewController();
  14.   // 声明需要注册的对象
  15.   @State testObj: testClass = new testClass();
  16.   build() {
  17.     Column() {
  18.       // Web组件加载本地index.html页面
  19.       Web({ src: $rawfile('index.html'), controller: this.webviewController})
  20.         // 将对象注入到web端
  21.         .javaScriptProxy({
  22.           object: this.testObj,
  23.           name: "testObjName",
  24.           methodList: ["test"],
  25.           controller: this.webviewController,
  26.           // 可选参数
  27.           asyncMethodList: [],
  28.           permission: '{"javascriptProxyPermission":{"urlPermissionList":[{"scheme":"resource","host":"rawfile","port":"","path":""},' +
  29.                       '{"scheme":"e","host":"f","port":"g","path":"h"}],"methodList":[{"methodName":"test","urlPermissionList":' +
  30.                       '[{"scheme":"https","host":"xxx.com","port":"","path":""},{"scheme":"resource","host":"rawfile","port":"","path":""}]},' +
  31.                       '{"methodName":"test11","urlPermissionList":[{"scheme":"q","host":"r","port":"","path":"t"},' +
  32.                       '{"scheme":"u","host":"v","port":"","path":""}]}]}}'
  33.         })
  34.     }
  35.   }
  36. }
复制代码
 应用侧利用registerJavaScriptProxy()接口注册。
  1. // xxx.ets
  2. import { webview } from '@kit.ArkWeb';
  3. import { BusinessError } from '@kit.BasicServicesKit';
  4. class testClass {
  5.   constructor() {
  6.   }
  7.   test(): string {
  8.     return "ArkUI Web Component";
  9.   }
  10.   toString(): void {
  11.     console.log('Web Component toString');
  12.   }
  13. }
  14. @Entry
  15. @Component
  16. struct Index {
  17.   webviewController: webview.WebviewController = new webview.WebviewController();
  18.   @State testObj: testClass = new testClass();
  19.   build() {
  20.     Column() {
  21.       Button('refresh')
  22.         .onClick(() => {
  23.           try {
  24.             this.webviewController.refresh();
  25.           } catch (error) {
  26.             console.error(`ErrorCode: ${(error as BusinessError).code},  Message: ${(error as BusinessError).message}`);
  27.           }
  28.         })
  29.       Button('Register JavaScript To Window')
  30.         .onClick(() => {
  31.           try {
  32.             this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName", ["test", "toString"],
  33.                     // 可选参数, asyncMethodList
  34.                     [],
  35.                     // 可选参数, permission
  36.                     '{"javascriptProxyPermission":{"urlPermissionList":[{"scheme":"resource","host":"rawfile","port":"","path":""},' +
  37.                     '{"scheme":"e","host":"f","port":"g","path":"h"}],"methodList":[{"methodName":"test","urlPermissionList":' +
  38.                     '[{"scheme":"https","host":"xxx.com","port":"","path":""},{"scheme":"resource","host":"rawfile","port":"","path":""}]},' +
  39.                     '{"methodName":"test11","urlPermissionList":[{"scheme":"q","host":"r","port":"","path":"t"},' +
  40.                     '{"scheme":"u","host":"v","port":"","path":""}]}]}}'
  41.             );
  42.           } catch (error) {
  43.             console.error(`ErrorCode: ${(error as BusinessError).code},  Message: ${(error as BusinessError).message}`);
  44.           }
  45.         })
  46.       Web({ src: $rawfile('index.html'), controller: this.webviewController })
  47.     }
  48.   }
  49. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

西河刘卡车医

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表