当前位置: 首页 > news >正文

uniapp在线下载安装包更新app

首先用getSystemInfo判断平台、 再通过json文件模拟接口 判断版本号是否一致 不一致则下载服务器apk进行更新
外加网络波动导致失败重新下载更新包

 uni.getSystemInfo({success: function (e) {// #ifndef H5// 获取手机系统版本const system = e.system.toLowerCase();const platform = e.platform.toLowerCase();// 判断是否为ios设备if (platform.indexOf("ios") != -1 &&(system.indexOf("ios") != -1 || system.indexOf("macos") != -1)) {Vue.prototype.SystemPlatform = "apple";} else if (platform.indexOf("android") != -1 && system.indexOf("android") != -1) {Vue.prototype.SystemPlatform = "android";uni.request({url: "https://xxxxxxx.love/0.json", // JSON 文件地址success: (res) => {if (res.statusCode === 200) {const version = res.data.version; // 获取 版本字段if (version != "1.0.1") {uni.showModal({title: "更新提示",content: "有新的版本可用,是否立即更新?",success: (result) => {if (result.confirm) {const downloadTask = uni.downloadFile({url: "https://xxxxxxx.love/lock.apk", // 更新包地址success: (downloadResult) => {if (downloadResult.statusCode === 200) {const tempFilePath = downloadResult.tempFilePath;// 保存文件到持久目录uni.saveFile({tempFilePath: tempFilePath,success: (saveResult) => {console.log("文件保存成功,路径:",saveResult.savedFilePath);uni.openDocument({filePath: saveResult.savedFilePath,success: function (res) {console.log(res, "打开安装包");},});return;// 提示用户去文件管理器中安装uni.showModal({title: "下载完成",content:"更新包下载完成,请在文件管理器中找到并安装更新包。",showCancel: false,success: () => {uni.hideLoading(); // 隐藏进度条},});},fail: (err) => {console.error("保存文件失败", err);uni.hideLoading(); // 隐藏进度条},});}},fail: (err) => {console.error("下载失败", err);uni.hideLoading(); // 隐藏进度条},});uni.showLoading({title: "正在下载更新包",mask: true,});let lastProgress = 0;let lastUpdateTime = new Date().getTime();const updateInterval = 1500;downloadTask.onProgressUpdate((res) => {const currentTime = new Date().getTime();if (res.progress - lastProgress >= 5 ||currentTime - lastUpdateTime >= updateInterval) {lastProgress = res.progress;lastUpdateTime = currentTime;uni.showLoading({title: `下载中... ${res.progress}%`,mask: true,});}});}},});}}},fail: (err) => {console.error("请求失败", err);},});} else {Vue.prototype.SystemPlatform = "devtools";}// #endif},});

在这里插入图片描述


http://www.mrgr.cn/news/1853.html

相关文章:

  • FastICENet:一种用于航空遥感河流冰图像的实时精确语义分割模型
  • 数值计算引擎:搭建远程容器开发环境
  • 【数据结构】关于冒泡排序,选择排序,插入排序,希尔排序,堆排序你到底了解多少???(超详解)
  • 蒟蒻的尊严被打得一败涂地17
  • QT翻金币小游戏(含音频图片文件资源)
  • 探索数字媒体产业园区的未来之路
  • 每日OJ_牛客_反转部分单向链表
  • 二叉树详解(1)
  • [星瞳科技]OpenMV有哪些合适的配件?
  • 【网络】UDP和TCP之间的差别和回显服务器
  • VSCode插件离线安装
  • 负载均衡详解
  • SDK游戏盾有什么作用?APP被攻击使用游戏盾SDK如何防护?
  • Spring Security之登录跳转
  • 【1.0】vue3的创建
  • LMA——基于 LM 的游戏和挑战代理架构探索
  • 设计模式-中介者模式
  • Monaco Editor组件使用详解
  • 记录一次搭建uniapp-vue3的基础项目
  • HCIE冲刺-----------论述解析