我正在尝试从 firebase 存储获取目录中的图像列表。示例我想获取users/userid/images 中的所有图像,但它不起作用并弹出函数未定义的错误。const listRef = storageRef.child('users/userid/images');listRef.listAll().then(res=>{ res.items.forEach(itemRef=>{ // console.log(itemRef); });}).catch(e =>{});
2 回答
红糖糍粑
TA贡献1815条经验 获得超6个赞
现在我们也可以做到了,感谢react-native-firebase团队成员。
const reference = storage().ref('images');
const getListOfImages = async (){
const res = await reference.child('profileimages').list();
return await Promise.all(res.items.map(i => i.getDownloadURL()));
}
添加回答
举报
0/150
提交
取消