Firestore:"添加不是功能"

时间:2017-12-21 13:51:13

标签: node.js firebase google-cloud-firestore firebase-admin

我尝试在Cloud功能中使用Firestore,但我遇到了错误

  

db.collection(...)。doc(...)。collection(...)。doc(...)。add不是Promise的函数

我阅读了这些主题firstsecond等。但是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
        });

我该如何解决?

1 个答案:

答案 0 :(得分:12)

doc是文档,add函数仅用于收集。要将数据写入文档,请使用set函数:

doc(matchID).set({ ... })