当前位置:   article > 正文

Flutter 与 JavaScript进行通信_ts中window.flutter_inappwebview.callhandler

ts中window.flutter_inappwebview.callhandler

flutter 采用的插件是flutter_inappwebview

1 APP调用js的函数

  1. //h5
  2. window.appCallJs = function(args){
  3. console.log(args)
  4. }
  5. //app端
  6. webView.injectScriptCode("window.appCallJs('hello world')");

2 js调用APP的方法

  1. // 代码
  2. window.flutter_inappbrowser.callHandler('authSuccess','success',1234).then(function(result) {
  3. console.log(result, typeof result);
  4. });
  5. //app代码
  6. webView.addJavaScriptHandler('authSuccess', (args) {
  7. print("收到来自web的消息");
  8. });
  9. //这样写,App端没有问题。但是web端存在问题,“{message: Uncaught TypeError: Cannot read property 'callHandler' of undefined, messageLevel: 3}”。
  10. 需要对callHandler进行处理,即:
  11. <script>
  12. var message = "success";
  13. if (window.flutter_inappwebview.callHandler) {
  14. window.flutter_inappwebview.callHandler('authSuccess', message);
  15. } else {
  16. window.flutter_inappwebview._callHandler('authSuccess', setTimeout(function(){}), JSON.stringify([message]));
  17. }
  18. </script>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/341720
推荐阅读
相关标签
  

闽ICP备14008679号