我可以按如下方式生成pushId
var myRef = firebase.database().ref().push();
var key = myRef.key();
在普通的前端firebase javascript函数中。但我想在firebase的云功能中生成pushId。有没有办法做到这一点?
答案 0 :(得分:2)
尝试以下
var db = admin.database();
var ref = db.ref("YOUR_RELEVANT_PATH");
var newPostRef = ref.push();
var postId = newPostRef.key;
请参阅documentation。