如何使用Cloud Functions for Firebase更新firebase实时数据库中的值

时间:2017-04-18 12:05:14

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

我使用Firebase文档来使用Cloud Functions for Firebase更新实时数据库中的值,但我无法理解。

我的数据库结构是

{   
 "user" : {
    "-KdD1f0ecmVXHZ3H3abZ" : {
      "email" : "ksdsd@sdsd.com",
      "first_name" : "John",
      "last_name" : "Smith",
      "isVerified" : false
    },
    "-KdG4iHEYjInv7ljBhgG" : {
      "email" : "superttest@sds213123d.com",
      "first_name" : "Max1",
      "last_name" : "Rosse13131313l",
      "isVerified" : false
    },
    "-KdGAZ8Ws6weXWo0essF" : {
      "email" : "superttest@sds213123d.com",
      "first_name" : "Max1",
      "last_name" : "Rosse13131313l",
      "isVerified" : false
    } 
}

我想使用数据库触发器云功能更新isVerified。我不知道如何使用云函数(语言:Node.JS)更新数据库值

我编写了一个代码,用于自动更新密钥' isVerified'的值。用户是通过使用数据库触发器onWrite创建的。我的代码是

const functions = require('firebase-functions');

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

exports.userVerification = functions.database.ref('/users/{pushId}')
    .onWrite(event => {
    // Grab the current value of what was written to the Realtime Database.
    var eventSnapshot = event.data;

    if (event.data.previous.exists()) {
        return;
    }

    eventSnapshot.update({
        "isVerified": true
    });
});

但是当我部署代码并将用户添加到数据库时,云功能日志显示以下错误

TypeError: eventSnapshot.child(...).update is not a function
    at exports.userVerification.functions.database.ref.onWrite.event (/user_code/index.js:10:36)
    at /user_code/node_modules/firebase-functions/lib/cloud-functions.js:35:20
    at process._tickDomainCallback (internal/process/next_tick.js:129:7)

1 个答案:

答案 0 :(得分:12)

您正尝试在DeltaSnapshot对象上调用update()。在这种类型的对象上没有这样的方法。

var eventSnapshot = event.data;
eventSnapshot.update({
    "isVerified": true
});

event.dataDeltaSnapshot。如果要更改此对象所表示的更改位置的数据。使用其ref属性来获取Reference对象:

var ref = event.data.ref;
ref.update({
    "isVerified": true
});

此外,如果您正在函数中读取或写入数据库,则应always return a Promise指示更改何时完成:

return ref.update({
    "isVerified": true
});

我建议从评论中提取Frank的建议,并研究现有的sample codedocumentation,以便更好地了解Cloud Functions的工作原理。