在下面的代码中,我检索了一个Firebase存储映像的下载链接,使用该链接下载了该映像并保存到了临时存储(缓存)中。图像文件未按要求加载。网络小部件。重新启动应用程序时,它仅从缓存中获取文件。为什么应用程序需要重新启动才能更新缓存内容?为什么我几乎不能立即访问缓存中的下载文件?
return FutureBuilder(
future: FirebaseStorage.instance
.ref()
.child(snapshot.data["sellerID"])
.child(snapshot.data["image"])
.getDownloadURL(),
builder: (context, snap) {
if (snap.hasData) {
writeToFile(snapshot.data);
return Image.network(snap.data);
}
return Image.file(
File(
"${MyApp.baseDirGlobal}/${snapshot.data["image"]}"),
fit: BoxFit.cover);
},
);
writeTofile函数在下面定义
void writeToFile(DocumentSnapshot snapshot) async {
final File file = File('${MyApp.baseDirGlobal}/${snapshot.data["image"]}');
if (await file.exists()) {
print("THE FILE EXISTS");
} else {
FirebaseStorage.instance
.ref()
.child(snapshot.data["sellerID"])
.child(snapshot.data["image"])
.writeToFile(file);
}
}
答案 0 :(得分:0)
writeToFile是异步的,因此您需要等待,然后返回Image.network。