使用downloadFile下载文件后,为什么在手机上无法找到这个文件?代码如下:
uni.downloadFile({
url: 'http://bbswater-fd.zol-img.com.cn/t_s800x5000/g5/M00/07/09/ChMkJ1Z4F52IAW42AACeE47phQQAAGdjwNjXxEAAJ4r204.png',
success: (res) => {
console.log(res);
if (res.statusCode === 200) {
uni.saveFile({
tempFilePath: res.tempFilePath,
success: function (res) {
console.log(res);
uni.showToast({ title: '文件保存成功' });
}
});
}
}
});
4 个回复
2***@qq.com
一样写法找不到
1***@qq.com
我也找不到,两个手机都找不到
1***@qq.com
我也找不到
口区 - 惹
uni.saveFile保存成功应该是用uni.getSavedFileList才能看到保存的文件吧,如果是想要把图片保存到相册应该是用uni.saveImageToPhotosAlbum