“cara menghapus koleksi firebase” Kode Jawaban

Firestore JavaScript Delete Document

// define document location (Collection Name > Document Name > Collection Name >)
var docRef = Firebase.firestore().collection("Rooms").doc("bsYNIwEkjP237Ela6fUp").collection("Messages");

// delete the document
docRef.doc("lKjNIwEkjP537Ela6fhJ").delete();
blue dev

cara menghapus koleksi firebase

this.db
  .collection('cart')
  .get()
  .toPromise()
  .then((querySnapshot) => {
  querySnapshot.forEach((doc) => {
    doc.ref.delete();
  });
});
Cherry berry

Jawaban yang mirip dengan “cara menghapus koleksi firebase”

Pertanyaan yang mirip dengan “cara menghapus koleksi firebase”

Lebih banyak jawaban terkait untuk “cara menghapus koleksi firebase” di TypeScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya