gpt4 book ai didi

firebase - 错误 : no entity to update: app - Firestore Cloud Function

转载 作者:行者123 更新时间:2023-12-04 17:07:12 27 4
gpt4 key购买 nike

这是我非常基本的云功能:

const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
const db = admin.firestore()

exports.createdNewAccount = functions.auth.user().onCreate(event => {
return db.collection('users').doc(event.data.uid).update({
"creationDate" : Date.now()
})
})

我得到了错误

Error: no entity to update: app



我的代码有什么问题?

最佳答案

最有可能的是 event.data.uid 的文档不存在。 update() 的文档指出:

The update will fail if applied to a document that does not exist.



使用 set()相反。

关于firebase - 错误 : no entity to update: app - Firestore Cloud Function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46676376/

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