aliyun / aliyun-oss-react-native

MIT License
148 stars 99 forks source link

AliyunOSS.asyncDownload 下载文件问题 #78

Open tentechgroup opened 4 years ago

tentechgroup commented 4 years ago

在调用AliyunOSS.asyncDownload方法下载文件时。有时可以正常下载,有时不行,并且没有消息。监听进度也无效。 方法如下 const downloadProgress = p => console.log(p.currentSize / p.totalSize); AliyunOSS.addEventListener('downloadProgress', downloadProgress); let soundFile = await AliyunOSS.asyncDownload("**", url); console.log("下载音频成功"); console.log(soundFile);