获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- wx.downloadFile 有些文件会报错,报错看不懂?
downloadTask = uni.downloadFile({ url: `${downurl.value}&forced=1`, // filePath: downflpth, timeout: 1000 * 60 * 60 * 60 * 24, success: (res) => { console.log('downloadTask.success:', res) }, fail: err => { console.log('downloadTask.fail:', err) } 有些文件正常下载。 某些文件报错:msg:downloadFile:fail The first argument must be of type string or an instance of Buffer, ArrayBuffer, or Array or an Array-like Object. Received null 看着是参数错误?可是文档的例子不也这么写的吗 [图片]
09-04 - wx.downloadFile能否通过 http range 支持一下断点续传?
wx.downloadFile({}) 能否通过 http range 支持一下断点续传 急需该需求,而且也不麻烦不是吗
08-25