1***@qq.com
1***@qq.com
  • 发布:2023-10-18 11:25
  • 更新:2023-10-18 11:25
  • 阅读:210

downloadFile 断网 或者锁屏后 不管下载是否完成都会走success回调

分类:uni-app

在下载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  
        })
2023-10-18 11:25 负责人:无 分享
已邀请:

要回复问题请先登录注册