gpt4 book ai didi

javascript - 如何使用javascript删除firestore上的所有文档

转载 作者:行者123 更新时间:2023-12-02 22:41:27 24 4
gpt4 key购买 nike

我在我的项目中尝试了此代码,但在 doc.reference.delete() 上不起作用

 btnSubmit.addEventListener('click', e => {
db.collection("ruangIGD")
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
// doc.data() is never undefined for query doc snapshots

doc.reference.delete()
});
})
.catch(function(error) {
console.log("Error getting documents: ", error);
});

如何解决这个问题?

最佳答案

试试这个,db 必须是 const !我觉得有问题

const db = new Firestore({
projectId: "projectId",
keyFilename: "./key.json"
});
db.collection("collectionName")
.get()
.then(res => {
res.forEach(element => {
element.ref.delete();
});
});

关于javascript - 如何使用javascript删除firestore上的所有文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58571745/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com