我想提供一個功能,用戶可以查看他們上傳的所有圖像。在我的firebase存儲中,它包含/$uid/image
文件夾中的用戶圖像。如何下載包含圖像的文件?
/$uid/image/imageA.png
/$uid/image/imageB.png
/$uid/image/imageC.png
但是,我不知道如何獲取完整用戶文件的參考。 我試了下面的代碼來下載它,但我得到了一個storage/object-not-found
錯誤代碼。
var imageRef = storageRef.child('UserImage/'+ user.uid + '/image');
我只想得到一個圖像的JSON格式下載網址列表。 例如,
{$uid/image:[
'https://firebasestorage.googleapis.com/v0/b/XXXXXXXXXXXXXXXXXXXX1',
'https://firebasestorage.googleapis.com/v0/b/XXXXXXXXXXXXXXXXXXXX2',
'https://firebasestorage.googleapis.com/v0/b/XXXXXXXXXXXXXXXXXXXX3'
]}
目前還沒有API從火力地堡的存儲文件夾中的所有文件。看到http://stackoverflow.com/questions/37335102/how-to-get-an-array-with-all-pictures/37337436#37337436 –