我已成功按照以下说明从云存储目录中获取了项目列表,但是我无法确定如何获取项目名称。例如,如果“ my_dir2”包含文件“ myfile1.txt”和“ myfile2.txt”,我希望将这些文件名打印出来。
const storage = firebase.storage();
const storageRef = storage.ref();
storageRef
.child("my_dir1/mydir_2")
.listAll()
.then(res => {
res.items.forEach(item => console.log(item)); // I tried item.name() but "name is not a function"
});
我计算出该名称是一种吸气剂方法,因此不需要括号:
const storage = firebase.storage();
const storageRef = storage.ref();
storageRef
.child("my_dir1/mydir_2")
.listAll()
.then(res => {
res.items.forEach(item => console.log(item.name));
});