Cloud Storage for Firebase ช่วยให้คุณแสดงเนื้อหาของที่เก็บข้อมูล Cloud Storage ได้ SDK จะแสดงทั้งรายการและคำนำหน้าของออบเจ็กต์ภายใต้การอ้างอิง Cloud Storage ปัจจุบัน
โปรเจ็กต์ที่ใช้ List API ต้องมีCloud Storage for Firebase กฎเวอร์ชัน 2 หากมีโปรเจ็กต์ Firebase อยู่แล้ว ให้ทำตามขั้นตอนในคู่มือกฎการรักษาความปลอดภัย
list()
ใช้
Google Cloud Storage List API
ใน Cloud Storage for Firebase เราใช้ /
เป็นตัวคั่น ซึ่งช่วยให้เรา
จำลองความหมายของระบบไฟล์ได้ List API จะแสดงคำนำหน้าและรายการแยกกันเพื่อให้การข้ามผ่านCloud Storageที่เก็บข้อมูลแบบลำดับชั้นขนาดใหญ่เป็นไปอย่างมีประสิทธิภาพ
เช่น หากคุณอัปโหลดไฟล์ 1 ไฟล์ /images/uid/file1
root.child('images').listAll()
จะแสดงผล/images/uid
เป็นคำนำหน้าroot.child('images/uid').listAll()
จะแสดงไฟล์เป็นรายการ
Cloud Storage for Firebase SDK ไม่แสดงเส้นทางของออบเจ็กต์ที่มี /
2 รายการติดต่อกันหรือลงท้ายด้วย /.
ตัวอย่างเช่น ลองพิจารณาที่เก็บข้อมูลที่มีออบเจ็กต์ต่อไปนี้
correctPrefix/happyItem
wrongPrefix//sadItem
lonelyItem/
การดำเนินการกับรายการในที่เก็บข้อมูลนี้จะให้ผลลัพธ์ต่อไปนี้
- การดำเนินการกับรายการที่รูทจะแสดงการอ้างอิงถึง
correctPrefix
,wrongPrefix
และlonelyItem
เป็นprefixes
- การดำเนินการกับรายการที่
correctPrefix/
จะแสดงผลการอ้างอิงถึงcorrectPrefix/happyItem
เป็นitems
- การดำเนินการกับรายการที่
wrongPrefix/
ไม่แสดงการอ้างอิงใดๆ เนื่องจากwrongPrefix//sadItem
มี/
2 รายการติดต่อกัน - การดำเนินการกับรายการที่
lonelyItem/
ไม่แสดงการอ้างอิงใดๆ เนื่องจากออบเจ็กต์lonelyItem/
ลงท้ายด้วย/
แสดงรายการไฟล์ทั้งหมด
คุณใช้ listAll
เพื่อดึงผลลัพธ์ทั้งหมดสำหรับไดเรกทอรีได้
วิธีนี้เหมาะที่สุดสำหรับไดเรกทอรีขนาดเล็กเนื่องจากระบบจะบัฟเฟอร์ผลลัพธ์ทั้งหมดไว้ในหน่วยความจำ
นอกจากนี้ การดำเนินการอาจไม่แสดงสแนปชอตที่สอดคล้องกันหากมีการเพิ่มหรือนำออบเจ็กต์ออกในระหว่างกระบวนการ
สำหรับรายการขนาดใหญ่ ให้ใช้เมธอด list()
ที่แบ่งหน้า เนื่องจาก listAll()
จะบัฟเฟอร์ผลลัพธ์ทั้งหมด
ในหน่วยความจำ
ตัวอย่างต่อไปนี้แสดง listAll
Web
import { getStorage, ref, listAll } from "firebase/storage"; const storage = getStorage(); // Create a reference under which you want to list const listRef = ref(storage, 'files/uid'); // Find all the prefixes and items. listAll(listRef) .then((res) => { res.prefixes.forEach((folderRef) => { // All the prefixes under listRef. // You may call listAll() recursively on them. }); res.items.forEach((itemRef) => { // All the items under listRef. }); }).catch((error) => { // Uh-oh, an error occurred! });
Web
// Create a reference under which you want to list var listRef = storageRef.child('files/uid'); // Find all the prefixes and items. listRef.listAll() .then((res) => { res.prefixes.forEach((folderRef) => { // All the prefixes under listRef. // You may call listAll() recursively on them. }); res.items.forEach((itemRef) => { // All the items under listRef. }); }).catch((error) => { // Uh-oh, an error occurred! });
แบ่งหน้าผลลัพธ์ของรายการ
list()
API จะจำกัดจำนวนผลลัพธ์ที่แสดง list()
ให้การดูหน้าเว็บที่สอดคล้องกันและแสดง pageToken ที่ช่วยให้ควบคุมได้ว่าจะดึงผลการค้นหาเพิ่มเติมเมื่อใด
pageToken จะเข้ารหัสเส้นทางและเวอร์ชันของรายการสุดท้ายที่แสดงผลใน ผลลัพธ์ก่อนหน้า ในคำขอที่ตามมาซึ่งใช้ pageToken ระบบจะแสดงรายการที่อยู่ หลัง pageToken
ตัวอย่างต่อไปนี้แสดงการแบ่งหน้าผลการค้นหาโดยใช้ async/await
Web
import { getStorage, ref, list } from "firebase/storage"; async function pageTokenExample(){ // Create a reference under which you want to list const storage = getStorage(); const listRef = ref(storage, 'files/uid'); // Fetch the first page of 100. const firstPage = await list(listRef, { maxResults: 100 }); // Use the result. // processItems(firstPage.items) // processPrefixes(firstPage.prefixes) // Fetch the second page if there are more elements. if (firstPage.nextPageToken) { const secondPage = await list(listRef, { maxResults: 100, pageToken: firstPage.nextPageToken, }); // processItems(secondPage.items) // processPrefixes(secondPage.prefixes) } }
Web
async function pageTokenExample(){ // Create a reference under which you want to list var listRef = storageRef.child('files/uid'); // Fetch the first page of 100. var firstPage = await listRef.list({ maxResults: 100}); // Use the result. // processItems(firstPage.items) // processPrefixes(firstPage.prefixes) // Fetch the second page if there are more elements. if (firstPage.nextPageToken) { var secondPage = await listRef.list({ maxResults: 100, pageToken: firstPage.nextPageToken, }); // processItems(secondPage.items) // processPrefixes(secondPage.prefixes) } }
จัดการข้อผิดพลาด
list()
และ listAll()
จะแสดงผล Promise ที่ถูกปฏิเสธหากคุณยังไม่ได้อัปเกรด
กฎความปลอดภัยเป็นเวอร์ชัน 2 อัปเกรดกฎความปลอดภัยหากเห็นข้อผิดพลาดต่อไปนี้
Listing objects in a bucket is disallowed for rules_version = "1".
Please update storage security rules to rules_version = "2" to use list.
ข้อผิดพลาดอื่นๆ ที่อาจเกิดขึ้นอาจบ่งบอกว่าผู้ใช้ไม่มีสิทธิ์ที่เหมาะสม ดูข้อมูลเพิ่มเติมเกี่ยวกับข้อผิดพลาดได้ในส่วนจัดการข้อผิดพลาด