赞
踩
参考链接:
uniapp官方开发的App版本更新的插件,基于unicloud的后端服务
因为是开源的,通过修改源码可以实现请求java等其他后端服务,后续的源码解析章节会介绍
升级中心分为两个部分:
前台检测更新: uni-upgrade-center-app
后台管理系统:
uni-admin >= 1.9.3
:uni-admin 已内置 升级中心,直接使用即可。并且云函数 upgrade-center
废弃,使用 uni-upgrade-center
云函数。简单来说,如果是新版的uni-admin,直接用升级中心即可
使用我觉得并不难,跟着官方文档走即可
简单来说,就是你的app项目安装 uni-upgrade-center-app这个插件,同时你需要另外新建一个uni-admin
项目,用来上传并管理app项目的更新包,app项目通过unicloud请求更新包
但是如果不想使用unicloud,想换成java等其他后端服务,或者想了解app检查更新与升级的代码是如何编写的,阅读uni-upgrade-center
源码是十分有必要的。
uni-upgrade-center
源码阅读十分推荐阅读uni-upgrade-center
源码
通过一步步阅读uni-upgrade-center
源码,基本能完全学会如何写app检查更新与升级的代码
源码前端功能实现主要分为三个文件,依次阅读
utils/call-check-version.js
utils/call-check-version.js
pages/upgrade-popup.vue
utils/call-check-version.js
代码很简单,通过h5+ api获取应用信息,把应用信息传递给uniCloud云函数
同理,如果不使用云函数,传给java等后端服务的话,替换云函数部分代码就可以了
export default function () { // #ifdef APP-PLUS return new Promise((resolve, reject) => { // 根据当前应用的appid,获取appid对应的应用信息 plus.runtime.getProperty(plus.runtime.appid, function (widgetInfo) { const data = { action: 'checkVersion', appid: plus.runtime.appid, appVersion: plus.runtime.version, wgtVersion: widgetInfo.version } console.log("data: ", data); // 如果传给java等后端服务,改下方代码 uniCloud.callFunction({ name: 'uni-upgrade-center', data, success: (e) => { console.log("e: ", e); resolve(e) }, fail: (error) => { reject(error) } }) }) }) // #endif // #ifndef APP-PLUS return new Promise((resolve, reject) => { reject({ message: '请在App中使用' }) }) // #endif }
当前应用的APPID
String 类型 只读属性
注意,如果是在HBuilder真机运行获取的是固定值"HBuilder",需要提交App云端打包后运行才能获取真实的APPID值
获取指定APPID对应的应用信息
// 获取应用信息 function getAppInfo() { plus.runtime.getProperty( plus.runtime.appid, function ( wgtinfo ) { //appid属性 var wgtStr = "appid:"+wgtinfo.appid; //version属性 wgtStr += "<br/>version:"+wgtinfo.version; //name属性 wgtStr += "<br/>name:"+wgtinfo.name; //description属性 wgtStr += "<br/>description:"+wgtinfo.description; //author属性 wgtStr += "<br/>author:"+wgtinfo.author; //email属性 wgtStr += "<br/>email:"+wgtinfo.email; //features 属性 wgtStr += "<br/>features:"+wgtinfo.features; console.log( wgtStr ); } ); }
utils/call-check-version.js
官方实现了两种方式,静默更新和提示更新
import callCheckVersion from './call-check-version' // 推荐在App.vue中使用 const PACKAGE_INFO_KEY = '__package_info__' export default function() { // #ifdef APP-PLUS return new Promise((resolve, reject) => { callCheckVersion().then(async (e) => { if (!e.result) return; const { code, message, is_silently, // 是否静默更新 url, // 安装包下载地址 platform, // 安装包平台 type // 安装包类型 } = e.result; // 此处逻辑仅为实例,可自行编写 if (code > 0) { // 腾讯云和阿里云下载链接不同,需要处理一下,阿里云会原样返回 const { fileList } = await uniCloud.getTempFileURL({ fileList: [url] }); if (fileList[0].tempFileURL) e.result.url = fileList[0].tempFileURL; resolve(e) // 静默更新,只有wgt有 if (is_silently) { uni.downloadFile({ url: e.result.url, success: res => { if (res.statusCode == 200) { // 下载好直接安装,下次启动生效 plus.runtime.install(res.tempFilePath, { force: false }); } } }); return; } /** * 提示升级一 * 使用 uni.showModal */ // return updateUseModal(e.result) /** * 提示升级二 * 官方适配的升级弹窗,可自行替换资源适配UI风格 */ uni.setStorageSync(PACKAGE_INFO_KEY, e.result) uni.navigateTo({ url: `/uni_modules/uni-upgrade-center-app/pages/upgrade-popup?local_storage_key=${PACKAGE_INFO_KEY}`, fail: (err) => { console.error('更新弹框跳转失败', err) uni.removeStorageSync(PACKAGE_INFO_KEY) } }) return } else if (code < 0) { // TODO 云函数报错处理 console.error(message) return reject(e) } return resolve(e) }).catch(err => { // TODO 云函数报错处理 console.error(err.message) reject(err) }) }); // #endif } /** * 使用 uni.showModal 升级 */ function updateUseModal(packageInfo) { const { title, // 标题 contents, // 升级内容 is_mandatory, // 是否强制更新 url, // 安装包下载地址 platform, // 安装包平台 type // 安装包类型 } = packageInfo; let isWGT = type === 'wgt' let isiOS = !isWGT ? platform.includes('iOS') : false; let confirmText = isiOS ? '立即跳转更新' : '立即下载更新' return uni.showModal({ title, content: contents, showCancel: !is_mandatory, confirmText, success: res => { if (res.cancel) return; // 安装包下载 if (isiOS) { plus.runtime.openURL(url); return; } uni.showToast({ title: '后台下载中……', duration: 1000 }); // wgt 和 安卓下载更新 downloadTask = uni.downloadFile({ url, success: res => { if (res.statusCode !== 200) { console.error('下载安装包失败', err); return; } // 下载好直接安装,下次启动生效 plus.runtime.install(res.tempFilePath, { force: false }, () => { if (is_mandatory) { //更新完重启app plus.runtime.restart(); return; } uni.showModal({ title: '安装成功是否重启?', success: res => { if (res.confirm) { //更新完重启app plus.runtime.restart(); } } }); }, err => { uni.showModal({ title: '更新失败', content: err .message, showCancel: false }); }); } }); } }); }
可以看出静默更新分为三步:
uni.downloadFile
该url地址plus.runtime.install
安装更新包// 静默更新,只有wgt有
if (is_silently) {
uni.downloadFile({
url: e.result.url,
success: res => {
if (res.statusCode == 200) {
// 下载好直接安装,下次启动生效
plus.runtime.install(res.tempFilePath, {
force: false
});
}
}
});
return;
}
首先,我们需要知道的是,plus.runtime.install
成功后就已经安装完更新包了,用户下次打开app就会是最新版的app,这里强制更新的意思是是否立刻重启app,强制用户立刻使用最新版app
plus.runtime.install
后有三种应用场景,这里官方写的很好,三种场景都处理了:
// 安装下载的安装包,下次启动生效 plus.runtime.install(res.tempFilePath, { force: false }, () => { // is_mandatory是后端返回的控制是否强制更新的变量 // 强制更新就是强制重启app,否则就是用户下次打开app才会更新 // 强制更新体验不好,还是下次打开更新会好很多 if (is_mandatory) { // 更新完重启app plus.runtime.restart(); return; } uni.showModal({ title: '安装成功是否重启?', success: res => { if (res.confirm) { // 更新完重启app plus.runtime.restart(); } } }); }, err => { uni.showModal({ title: '更新失败', content: err .message, showCancel: false }); });
wgt
,如果不是,判断安装包平台是否包含iOS
,调用第三方程序打开url安装iOS
更新包,iOS
是跳转更新,其他是下载更新plus.runtime.openURL
表示调用第三方程序打开url进行安装,即跳转应用商店功能
function updateUseModal(packageInfo) { const { title, // 标题 contents, // 升级内容 is_mandatory, // 是否强制更新 url, // 安装包下载地址 platform, // 安装包平台 type // 安装包类型 } = packageInfo; let isWGT = type === 'wgt' let isiOS = !isWGT ? platform.includes('iOS') : false; let confirmText = isiOS ? '立即跳转更新' : '立即下载更新' return uni.showModal({ title, content: contents, showCancel: !is_mandatory, confirmText, success: res => { if (res.cancel) return; // 安装包下载 if (isiOS) { plus.runtime.openURL(url); return; } ... } }); }
https://uniapp.dcloud.net.cn/api/request/network-file.html#downloadfile
var downloadTask = uni.downloadFile({
url: 'https://www.example.com/file/test', //仅为示例,并非真实接口地址。
complete: ()=> {}
});
downloadTask.abort();
一、更改项目manifest.json
中的应用版本名称与应用版本号
二、HBuilderX>发行>原生App-制作应用wgt包>确定
三、开发测试的时候,记得再改回原先的应用版本名称与应用版本号,不然版本跟线上的相同,安装更新包的时候就会出现WGT安装包中manifest.json文件的version版本不匹配
,本地测试不了更新效果
wgt包生成后会是.wgt
后缀名,更改其后缀名为.zip
,再解压,就可以查看manifest.json
了
manifest.json
中的版本大于等于了线上的版本,自行排查即可
是因为admin账户是旧的,跟appid对不上,删除旧的admin账户,重新创建