gpt4 book ai didi

javascript - 使用 Cloud Functions for Firebase 检查名称是否存在

转载 作者:行者123 更新时间:2023-11-30 15:12:48 30 4
gpt4 key购买 nike

如何使用 Cloud Functions for Firebase 检查名称是否存在?

我有以下数据结构:

screenshot

这个伪代码:

exports.addIt = functions.database.ref('/messages/{pushId}')
.onWrite(event => {

if(creationDate does not exist)
event.data.adminRef.update({"creationDate":Date.now()})

else // do not update anything

})

我想检查“creationDate”是否已经存在。我该如何实现?

最佳答案

像这样的:-

exports.addIt = functions.database.ref('/messages/{pushId}')
.onWrite(event => {
if(typeof event.data.val().creationDate != 'undefined')
return event.data.adminRef.update({"creationDate":Date.now()})

else // do not update anything

})

关于javascript - 使用 Cloud Functions for Firebase 检查名称是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44872136/

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