【uni-app】App与webview双向实时通信

server/2024/12/16 20:59:02/

uni-app】App与webview双向实时通信

在 Uniapp 中,App 与 里面嵌入的 webview 进行双向的实时通信

vue2 , 模拟器

主要分为两部分

  • webview 向 app 发送信息

  • app 向 webview 发送信息

以下是实现方式,用一个例子来说明

(文章最后我会放这个例子的github地址)

webview 向 app 发送信息

示例: webview 里面向 app 发送 图片的 base64 , app 保存图片到系统相册;

此处分为, app 和 webview 部分:

  • app 注册事件

  • webview 触发 app 的事件

app部分
  1. 保存到系统相册功能(功能具体细节不重要)

    // utils/appMessageHandler.js
    // 这里代码都在app下执行
    function appSaveImgFile(params) {const { base64, downloadName } = paramsconst bitmap = new plus.nativeObj.Bitmap("test");bitmap.loadBase64Data(base64,function () {const url = "_doc/" + downloadName + ".png"; // url为时间戳命名方式bitmap.save(url,{overwrite: true, // 是否覆盖// quality: 'quality'  // 图片清晰度},(i) => {plus.gallery.save(i.target,function () {uni.showToast({title: "APP图片保存至相册",icon: "none",});bitmap.clear();},function (e) {uni.showToast({title: "APP图片保存至相册失败:" + JSON.stringify(e),icon: "none",});bitmap.clear();});},(e) => {uni.showToast({title: "图片保存失败1:" + JSON.stringify(e),icon: "none",});bitmap.clear();});},(e) => {uni.showToast({title: "图片保存失败2:" + JSON.stringify(e),icon: "none",});bitmap.clear();});
    }export {appSaveImgFile,
    }
    
  2. 在App.vue中注册事件;将 appMessageHandle.js 里面所有导出的事件进行注册;注意需要条件编译

    // App.vue
    <script>
    import * as appPlusMessageHandler from "./utils/appMessageHandler";export default {data() {return {appRegisterMap: undefined,};},onLaunch: function () {console.log("App Launch");// #ifdef APP-PLUS// 注册事件plus.globalEvent.addEventListener("plusMessage", this.plusMessageHandler);// #endif},methods: {/*** 将所有导出的 app 事件* 用 map 建立 函数名 - 函数 的联系* 返回 map*/registerAppPlusMap() {if (this.appRegisterMap) {return this.appRegisterMap;}let map = new Map();Object.keys(appPlusMessageHandler).forEach((item) => {map.set(item, appPlusMessageHandler[item]);});this.appRegisterMap = map;return map;},/*** 用 action 获取的函数名* 通过 map 获取到函数,调用执行*/plusMessageHandler(msg) {let map = this.registerAppPlusMap();if (msg.data.args.data.arg?.action) {let handler = map.get(msg.data.args.data.arg?.action);let params = msg.data.args.data.arg?.params;handler && handler(params);}},},
    };
    </script>
    
webview 部分

通过使用 uni.webview.js (文末附录放源码,我做了些许修改,逻辑没改,是一些变量调整了下) 的功能 postMessage , 向 app 发送图片生成的 base64;

  1. main.js 中挂载 uWeb (uni.webview.js)

    // main.js
    // 全局添加uWeb
    // #ifdef H5
    import uWeb from "@/utils/uni.webview.js";
    // #endif// #ifdef H5
    Vue.prototype.$uWeb = uWeb;
    // #endif
    
  2. 生成的图片base64,通过以下方式发送给 app

    此处 action 与 上面 plusMessageHandler方法的 action 是对应的

    appSaveImgFile 与 appMessageHandler.js 里的函数名是对应的

    // 某个页面或者js
    this.$uWeb.postMessage({data: {action: "appSaveImgFile",params: {base64: imgBase64,downloadName,},},});
    

至此,webview 能随时向 app 发送消息了

在这里插入图片描述

App 向 webview 发送消息

使用 evalJS

分两步:

  1. webview 在 window 注册事件

  2. app 使用 evalJs 触发 webview 的事件

注意: 确保webview 先注册好事件之后,app发送的事件才能被 webview 接收到

具体实现,utils下新建appToWebview.js; appSendMessage 是给 App 用的;webviewGetMessage 是给 webview 注册用的

// appToWebview.js
// 发送信息之前,先要有 webviewGetMessage
function appSendMessage(_this, action, params) {const self = _this;self.currentWebview = self.$scope?.$getAppWebview()?.children()[0];//传递大量数据self.currentWebview?.evalJS(`${action}(${JSON.stringify(params)})`);
}function webviewGetMessage(action, callback) {// #ifdef H5window[action] = (data) => {let params = JSON.parse(JSON.stringify(data));callback(params);};// #endif
}export { appSendMessage, webviewGetMessage };
webview 部分

用 webviewGetMessage 注册一个 msgFromApp 名字的事件,给 App 调用;

  // 某个 webview 页面,created() {webviewGetMessage("msgFromApp", (params) => {console.log("getAppParams", params);this.appMsg = params;});},
App

用 appSendMessage 发送一个信息给 webview

  // 某个有 webview 的 app 页面,mounted() {setTimeout(() => {appSendMessage(this, "msgFromApp", { msgFromApp: 233 });}, 5000);},

在这里插入图片描述

至此,完成了 app 向 webview 发送信息

GitHub 地址

GitHub - adcGG/uniapp-app-webview: Communication between app and webview

这里 uniapp 项目,app 和 用到的 h5 地址是同一个项目下的

app/index 用到的 webview 的 url 为 webviewUrl: “http://192.168.1.16:8080/#/pages/h5/index”,

在这里插入图片描述

附录

uni.webview.js
!(function (e, n) {"object" == typeof exports && "undefined" != typeof module? (module.exports = n()): "function" == typeof define && define.amd? define(n): ((e = e || self).webUni = n());
})(this, function () {"use strict";try {var e = {};Object.defineProperty(e, "passive", {get: function () {!0;},}),window.addEventListener("test-passive", null, e);} catch (e) {}var n = Object.prototype.hasOwnProperty;function t(e, t) {return n.call(e, t);}var i = [],a = function (e, n) {var t = {options: {timestamp: +new Date(),},name: e,arg: n,};if (window.__dcloud_weex_postMessage || window.__dcloud_weex_) {if ("postMessage" === e) {var a = {data: [n],};return window.__dcloud_weex_postMessage? window.__dcloud_weex_postMessage(a): window.__dcloud_weex_.postMessage(JSON.stringify(a));}var o = {type: "WEB_INVOKE_APPSERVICE",args: {data: t,webviewIds: i,},};window.__dcloud_weex_postMessage? window.__dcloud_weex_postMessageToService(o): window.__dcloud_weex_.postMessageToService(JSON.stringify(o));}if (!window.plus)return window.parent.postMessage({type: "WEB_INVOKE_APPSERVICE",data: t,pageId: "",},"*");if (0 === i.length) {var r = plus.webview.currentWebview();if (!r) throw new Error("plus.webview.currentWebview() is undefined");var d = r.parent(),s = "";(s = d ? d.id : r.id), i.push(s);}if (plus.webview.getWebviewById("__uniapp__service"))plus.webview.postMessageToUniNView({type: "WEB_INVOKE_APPSERVICE",args: {data: t,webviewIds: i,},},"__uniapp__service");else {var w = JSON.stringify(t);plus.webview.getLaunchWebview().evalJS('UniPlusBridge.subscribeHandler("'.concat("WEB_INVOKE_APPSERVICE", '",').concat(w, ",").concat(JSON.stringify(i), ");"));}},o = {navigateTo: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {},n = e.url;a("navigateTo", {url: encodeURI(n),});},navigateBack: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {},n = e.delta;a("navigateBack", {delta: parseInt(n) || 1,});},switchTab: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {},n = e.url;a("switchTab", {url: encodeURI(n),});},reLaunch: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {},n = e.url;a("reLaunch", {url: encodeURI(n),});},redirectTo: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {},n = e.url;a("redirectTo", {url: encodeURI(n),});},getEnv: function (e) {window.plus? e({plus: !0,}): e({h5: !0,});},postMessage: function () {var e =arguments.length > 0 && void 0 !== arguments[0] ? arguments[0] : {};a("postMessage", e.data || {});},},r = /uni-app/i.test(navigator.userAgent),d = /Html5Plus/i.test(navigator.userAgent),s = /complete|loaded|interactive/;var w = window.my && navigator.userAgent.indexOf("AlipayClient") > -1;var u =window.swan && window.swan.webView && /swan/i.test(navigator.userAgent);var c =window.qq &&window.qq.miniProgram &&/QQ/i.test(navigator.userAgent) &&/miniProgram/i.test(navigator.userAgent);var g =window.tt &&window.tt.miniProgram &&/toutiaomicroapp/i.test(navigator.userAgent);var v =window.wx &&window.wx.miniProgram &&/micromessenger/i.test(navigator.userAgent) &&/miniProgram/i.test(navigator.userAgent);var p = window.qa && /quickapp/i.test(navigator.userAgent);for (var l,_ = function () {(window.UniAppJSBridge = !0),document.dispatchEvent(new CustomEvent("UniAppJSBridgeReady", {bubbles: !0,cancelable: !0,}));},f = [function (e) {if (r || d)return (window.__dcloud_weex_postMessage || window.__dcloud_weex_? document.addEventListener("DOMContentLoaded", e): window.plus && s.test(document.readyState)? setTimeout(e, 0): document.addEventListener("plusready", e),o);},function (e) {if (v)return (window.WeixinJSBridge && window.WeixinJSBridge.invoke? setTimeout(e, 0): document.addEventListener("WeixinJSBridgeReady", e),window.wx.miniProgram);},function (e) {if (c)return (window.QQJSBridge && window.QQJSBridge.invoke? setTimeout(e, 0): document.addEventListener("QQJSBridgeReady", e),window.qq.miniProgram);},function (e) {if (w) {document.addEventListener("DOMContentLoaded", e);var n = window.my;return {navigateTo: n.navigateTo,navigateBack: n.navigateBack,switchTab: n.switchTab,reLaunch: n.reLaunch,redirectTo: n.redirectTo,postMessage: n.postMessage,getEnv: n.getEnv,};}},function (e) {if (u)return (document.addEventListener("DOMContentLoaded", e),window.swan.webView);},function (e) {if (g)return (document.addEventListener("DOMContentLoaded", e),window.tt.miniProgram);},function (e) {if (p) {window.QaJSBridge && window.QaJSBridge.invoke? setTimeout(e, 0): document.addEventListener("QaJSBridgeReady", e);var n = window.qa;return {navigateTo: n.navigateTo,navigateBack: n.navigateBack,switchTab: n.switchTab,reLaunch: n.reLaunch,redirectTo: n.redirectTo,postMessage: n.postMessage,getEnv: n.getEnv,};}},function (e) {return document.addEventListener("DOMContentLoaded", e), o;},],m = 0;m < f.length && !(l = f[m](_));m++);l || (l = {});var E = "undefined" != typeof webUni ? webUni : {};if (!E.navigateTo) for (var b in l) t(l, b) && (E[b] = l[b]);return (E.webView = l), E;
});

http://www.ppmy.cn/server/150722.html

相关文章

Spring Web文件上传下载注意点

我们使用如下的Controller来上传下载文件&#xff1a; RestController RequestMapping("/hello") Slf4j public class FileController {GetMapping("/upload")public void uploadFile(RequestParam("file") MultipartFile file) {log.info(&quo…

Linux 支持多个spi-nor flash

1. 需求 通常在嵌入式开发过程中可能会遇到需要再同一个SPI总线上挂载多个spi nor flash才能满足存储需求。 2. 技术简介 对于spi-nor flash驱动通常不需要驱动开发人员手搓&#xff0c;一般内核会有一套固定的驱动&#xff0c;而且走的是内核的MTD子系统那一套&#xff0c;市…

开发EDA工具常用的三方开源

EDA软件是制造芯片重要工具&#xff0c;是现在举国的大难题。这个工具难在哪里&#xff0c;几句话说不清&#xff0c;但它确实也有一些非常通用的功能&#xff0c;这些功能依赖一些成熟的轮子&#xff0c;这些轮子&#xff0c;就是三方的开源项目&#xff0c;下面列举一些常用的…

前端页面导出word

html-docx-js bug: vite使用html-docx.js会报错&#xff0c;点击下载上方文件替换即可 正文 npm install html-docx-js -S npm install file-saver -S<template><div id"managerReport">word内容......</div> </template><script>&l…

HTTP域RPC

HTTP&#xff08;超文本传输协议&#xff09;和RPC&#xff08;远程过程调用&#xff09;是两种不同的通信协议&#xff0c;它们在网络通信中扮演着重要的角色。以下是HTTP和RPC的区别和关系的表格展示&#xff1a; 特性HTTPRPC定义一种用于传输超文本的应用层协议&#xff0c…

文件上传之黑名单检测

一般情况下&#xff0c;代码文件里会有一个数组或者列表&#xff0c;该数组或者列表里会包含一些非法的字符或者字符串&#xff0c;当数据包中含有符合该列表的字符串时&#xff0c;即认定该数据包是非法的。 ​​ 一.如何判断是否为黑名单检测 黑名单是有限的&#xff0c;可以…

Python 3 和 JSON 数据格式

Python 3 和 JSON 数据格式 Python 3 是一种广泛使用的编程语言&#xff0c;以其简洁明了的语法和强大的功能而闻名。JSON&#xff08;JavaScript Object Notation&#xff09;是一种轻量级的数据交换格式&#xff0c;易于人阅读和编写&#xff0c;同时也易于机器解析和生成。…

AIGC 013-CoT用思维链挖掘自回归语言模型的潜在能力

AIGC 013-CoT用思维链挖掘自回归语言模型的潜在能力 文章目录 0 论文工作1 论文方法2 实验结果 0 论文工作 纯自回归式语言模型&#xff0c;本来并不具备优秀推理能力&#xff0c;特别是在数学问题的推理。但是现在的生成模型是能实现一些数学的推理的。研究者认为当模型足够大…