index.vue
onShow(){
checkUpdate();
if (uni.getStorageSync("downloadFilePath")) {
uni.setStorageSync('IsDownload', false)
plus.runtime.install(uni.getStorageSync("downloadFilePath"), {
force: false
},
(result : PlusRuntimeWidgetInfo) => {
console.error('install success', JSON.stringify(result))
uni.setStorageSync('isInstall', false)
uni.setStorageSync('IsDownload', true)
uni.setStorageSync('downloadFilePath', '')
// #ifdef APP-PLUS
plus.runtime.restart();
// #endif
}
),
(result : any) => {
uni.setStorageSync('isInstall', false)
uni.setStorageSync('downloadFilePath', '')
};
} else {
uni.setStorageSync('IsDownload', true)
}
}
/*
* check-update的内容
*/
import toast from '@/utils/function/toast';
import callCheckVersion from './call-check-version'
// isDebug为true测试环境 为false生产环境
const isDebug:boolean = false;
// 推荐再App.vue中使用
const PACKAGE_INFO_KEY = '__package_info__';
let downLoadPath:string = '';
let downLoadTask:any = null;
export default function () {
return new Promise((resolve, reject) => {
callCheckVersion().then(async (e: any) => {
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有
uni.getNetworkType(
{success:(res) => {
let netWork =isDebug? (res.networkType == "4g"||res.networkType == "5g"
|| res.networkType == 'wifi'): (res.networkType == "4g"||res.networkType == "5g" );
if (netWork
) {
if (is_silently && uni.getStorageSync("IsDownload")) {
downLoadTask= uni.downloadFile({
url: e.result.url,
success: res => {
console.log(res,'IsDownload')
if (res.statusCode == 200) {
uni.setStorageSync('IsDownload', false)
uni.setStorageSync('downloadFilePath', res.tempFilePath)
uni.setStorageSync('isInstall', true)
}
},
fail: (err) => {
uni.setStorageSync('IsDownload', true)
console.log(err, 3000)
}
});
downLoadTask.onProgressUpdate((res)=>{
console.log(res, 'onProgressUpdate')
})
return ;
}
} else {
downLoadTask.abort();
downLoadTask = null;
uni.setStorageSync('IsDownload', true)
}
}, fail:(res)=>{
downLoadTask.abort();
downLoadTask = null;
uni.setStorageSync('IsDownload', true)
}}
);
/**
* 提示升级二
* 官方适配的升级弹窗,可自行替换资源适配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)
// },
// success: (res) =>{
// console.log(res, 'will')
// }
// })
// return
} else if (code < 0) {
// TODO 云函数报错处理
console.error(message)
return reject(e)
}
return resolve(e)
}).catch(err => {
// TODO 云函数报错处理
console.error(err)
reject(err)
})
});
}
0 个回复