DownloadTask.onProgressUpdate 安卓真机调试无法监听下载进度变化事件
const downloadTask = wx.downloadFile({
url: 'http://example.com/audio/123',
success (res) {
wx.playVoice({
filePath: res.tempFilePath
})
}
})
downloadTask.onProgressUpdate((res) => {
console.log("aaaa")
console.log('下载进度', res.progress)
console.log('已经下载的数据长度', res.totalBytesWritten)
console.log('预期需要下载的数据总长度', res.totalBytesExpectedToWrite)
})
downloadTask.abort() // 取消下载任务
类似这种,问题是在真机调试的时候没有downloadTask.onProgressUpdate监听不了下载进度变化事件("downloadTask.onProgressUpdate"里面的内容没有被打印出来)