云功能“event =>”文档

时间:2017-10-05 10:14:34

标签: android node.js firebase google-cloud-functions

我是Cloud Functions的新手,我觉得它们很酷。我已经搜索了“事件”可以调用的完整方法列表的文档以及如何使用它们但我找不到任何方法。下面的代码中的示例用于调用data.current.child等。有人可以帮我找到“事件”下的方法文档。

 exports.getPath = functions.database.ref('/Transaction/{id}')
.onWrite(event => {
  // Grab the current value of what was written to the Realtime Database.
  const trans = event.data.current.child('Request').val();

1 个答案:

答案 0 :(得分:2)

Cloud Function Event界面的文档为provided here

事件中的数据取决于事件类型。每个都有类:

  • AnalyticsEvent用于Google Analytics活动
  • UserRecord用于Auth事件。
  • DeltaSnapshot用于实时数据库事件。
  • Message用于发布/订阅活动。
  • ObjectMetadata用于存储事件