listRef.listAll()函数未定义(react-native-firebase)

时间:2019-07-24 20:00:19

标签: javascript firebase react-native firebase-storage react-native-firebase

我正在尝试从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 个答案:

答案 0 :(得分:1)

直到version 6.1.0 of the JavaScript SDK才添加列出存储桶中文件的功能。因此,请确保您的SDK是最新的。

答案 1 :(得分:0)

现在,我们也可以做到这一点,向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()));
}