我尝试在Cloud功能中使用Firestore,但我遇到了错误
db.collection(...)。doc(...)。collection(...)。doc(...)。add不是Promise的函数
我阅读了这些主题first,second等。但是id并没有帮助我。 package.json看起来
"firebase": "^4.3.1",
"firebase-admin": "^5.5.1",
"firebase-functions": "^0.7.5",
云功能之一
const admin = require('firebase-admin');
var db = admin.firestore();
此功能代码
const currentUserMatchProm = db.collection('userMatches').doc(currentUserID).collection('test').doc(matchID).add({
'matchID': matchID,
'matchedUserID': eventUserID,
'timestamp': timestamp,
'isActive': false
});
const eventUserMatchProm = db.collection('userMatches').doc(eventUserID).collection('test').doc(matchID).add({
'matchID': matchID,
'matchedUserID': currentUserID,
'timestamp': timestamp,
'isActive': false
});
我该如何解决?
答案 0 :(得分:12)
doc
是文档,add
函数仅用于收集。要将数据写入文档,请使用set
函数:
doc(matchID).set({ ... })