使用云功能添加孩子?

时间:2017-07-01 17:41:54

标签: javascript firebase firebase-realtime-database google-cloud-functions

如何在.onWrite使用云功能后添加孩子?

enter image description here

代码框架:

exports.addNewValue = functions.database.ref('/messages/{pushId}')
.onWrite(event => {
// add child newValue: "randomValue" to the newly added key above

1 个答案:

答案 0 :(得分:0)

如果要使用某个键/值对更新发生更改的位置的数据库:

event.data.adminRef.update({key:"value"})

我建议您也熟悉使用JavaScript API处理database triggershow to write to Realtime Database的文档。