开启封面广告后,真机测试,不会进入文件下载进度onProgressUpdate回调!
在开启封面广告后永远不会进入onProgressUpdate回调,关闭正常,开发者工具中打开关闭封面广告都正常,只有真机会出现这个bug。 const DownloadTask = uni.downloadFile({
url: url,
timeout: 12000,
filePath: filePath,
success: async (res) => {}
)}
DownloadTask.onProgressUpdate(res => {
//在开启封面广告后永远不会进入onProgressUpdate回调,关闭正常,开发者工具中打开关闭封面广告都正常。
console.log(res.progress)
})