作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何将上传的图像存储到 firebase 存储中的两个不同路径/位置?我试过了,但不起作用
const { currentUser } = firebase.auth();
const ref = firebase.storage().ref().child(`images/${currentUser.uid}`);
const ref = firebase.storage().ref().child('photos')
const snapshot = await ref.put(blob);
blob.close();
最佳答案
好吧,首先,你不能重新声明这样的变量(const ref = ...;
然后 const ref = ....;
就在下面它)。其次,您需要对每个引用执行 put
。所以应该看起来像这样:
const { currentUser } = firebase.auth();
const ref1 = firebase.storage().ref().child(`images/${currentUser.uid}`);
const ref2 = firebase.storage().ref().child('photos')
const snapshot1 = await ref1.put(blob);
const snapshot2 = await ref2.put(blob);
blob.close();
或者如果您想要更优化的代码:
const { currentUser } = firebase.auth();
const ref = firebase.storage().ref();
const imagesUpload = await ref.child(`images/${currentUser.uid}`).put(blob);
const photosUpload = await ref.child('photos').put(blob);
blob.close();
如果您想更深入地了解这一点并且只有一个上传任务,请在此处阅读更多信息:https://cloud.google.com/storage/docs/json_api/v1/how-tos/batch
关于javascript - 如何将图像上传到 firebase 中的两个不同路径/位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56859788/
我是一名优秀的程序员,十分优秀!