h5和uniapp通信

混合开发中,uniapp嵌套h5页面的情况下,想进行双方通信,怎么办呢?

uniapp中,整个项目都是写在h5中的,相当于uniapp只是一个壳子,这样开发的话,就可以热更新:

一、h5→uniapp

①h5页面,需要在index.html中引入文件,在使用页面中就可以用postMessage把信息传过去。 index.html

js 复制代码
<script type="text/javascript" src="./src/utils/uniwebview.js"></script>
<script>
document.addEventListener('UniAppJSBridgeReady', function() {
  uni.webView.getEnv(function(res) {
    console.log('当前环境:' + JSON.stringify(res));
  });
});

</script>

②h5使用页面:

js 复制代码
const onPrint = async (item) => {
  const imageAddress = await projectApi.getPayQR(item.id);
  
  uni.postMessage({
    data: {
      code: '5',
      info: item.producerName,
      time: dayjs().format('YYYY-MM-DD HH:mm'),
      imageAddress: imageAddress,
    }
  });
}

③uniapp页面,在backMeaasge中获得h5传递过来的信息 h5→uniapp

js 复制代码
<template>
  <view class="content">
   <web-view   
      src="http://192.168.xx.xxx:3000"
      @message="backMessage"
    ></web-view>
  </view>
  
</template>

<script>
      backMessage(event) {
        console.log('h5传回来的----', event.detail.data[0].code);
        if(event.detail.data[0].code === 5) {
          console.log('打印了', event.detail.data[0].info)
        }
      },
</script>

二、uniapp→h5

①uniapp中,

js 复制代码
    const currentWebview = that.$scope.$getAppWebview();
    const html = currentWebview.children()[0];
    html.evalJS(`blueresult(${JSON.stringify(list[i])})`);

②h5中,uniapp中的evalJs中的名字和window.后面的名字要一致。

js 复制代码
window.blueresult = function(device) {
    deviceList.value.push(device)
    console.log("蓝牙传设备回来了:", deviceList.value);
  }
相关推荐
Bruce_Liuxiaowei26 分钟前
构建macOS命令速查手册:基于Flask的轻量级Web应用实践
前端·macos·flask
Python私教1 小时前
安装electron项目是为什么要执行postinstall script
前端·javascript·electron
shmily_yyA1 小时前
Nextjs15 实战 - React Notes之SidebarNoteList优化和Suspense的使用
前端·react.js·前端框架
知识分享小能手1 小时前
CSS3学习教程,从入门到精通, 化妆品网站 HTML5 + CSS3 完整项目(26)
前端·javascript·css·学习·css3·html5·媒体
了不起的码农1 小时前
ES6对函数参数的新设计
前端·ecmascript·es6
XH2762 小时前
Android 通知用法详解
前端
陈随易2 小时前
盘点23个Nodejs的替代品Bun的实用功能
前端·后端·程序员
uhakadotcom2 小时前
兄弟们,炸裂了!llama 4发布了!又有哪些创业公司被颠覆了?
前端·算法·面试
uhakadotcom2 小时前
EventEmitter3:高性能事件发射器的使用与优势
前端·javascript·面试
XH2762 小时前
Android Bitmap.createBitmap() 用法全解析
前端·设计