//缓存图像
const downloadTask = uni.downloadFile({
url: ‘https://ss0.baidu.com/73F1bjeh1BF3odCf/it/u=4057284762,841902705&fm=85&s=4A23218858F2BC86C8A418C403007090’,
success: function(res) {
if (res.statusCode === 200) {
var tempFilePath = res.tempFilePath;
uni.saveFile({
tempFilePath: tempFilePath,
success: function(re) {
var savedFilePath = re.savedFilePath;
console.log(savedFilePath);
}
});
}
}
});
小程序打印地址【无错误,可以显示】:http://store/touristappid.o6zAJs8cibQmpW4ON_sz5bVRZg3Y.WGs5DYRHgj2c2a3e95c4853013303873438342b399ad.jpeg
app打印的地址【不显示】,手机里面也没有这个目录和图片
unifile://save_1538899897689.jpg
这是什么原因呢? 在线登!!
柯南彬 (作者)
哈哈,原来是软件BUG,谢谢回复,搞了一下午,还以为是我问题,坐等更新!
2018-10-07 16:31