在下载app更新包的时候,如果手机断网或者切换网络 此时会走success回调,在华为系统上如果锁屏也会走success回调
const downloadTask = uni.downloadFile({
url: this.url,
success: fileResult => {
uni.hideLoading();
uni.showModal({
content: '下载成功,是否现在重启APP并安装吗?',
confirmText: '重启',
success: function (modalResult) {
if (modalResult.confirm) {
plus.runtime.install(
fileResult.tempFilePath, {
force: true
},
function () {
uni.showLoading({
title: '更新成功,重启中...',
mask: true
})
plus.runtime.restart();
}
)
} else {
uni.hideLoading();
uni.showToast({
title: "取消更新将无法正常使用app",
icon: "none"
})
}
}
})
},
fail: err => {
uni.hideLoading();
uni.showToast({
title: '下载失败,请检查你的网络情况!',
icon: 'none'
})
}
})
downloadTask.onProgressUpdate(res => {
this.progress = res.progress || 1
})
0 个回复