10

我只是在尝试 Cloud Functions for Firebase,以便将我的firebase-queue工作人员转移到云功能上。每当我在给定的 ref 创建一个新节点时,我添加了一个简单的函数来添加最后更新的时间戳。该函数如下所示:

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

admin.initializeApp(functions.config().firebase);

exports.setLastUpdatedTimestamp = functions.database.ref('/nodes/{nodeId}')
  .onWrite(event => {
    const original = event.data.val();
    console.log('Adding lastUpdatedTimestamp to node ', original.name);
    return event.data.ref.child('lastUpdatedAtFromFC').set(Date.now());
  });

我部署了这个云功能并从我的应用程序中添加了一个节点。我去了 Firebase Functions 仪表板,发现该函数已被调用 169 次,但我不知道为什么。当我查看日志时,我会看到类似将函数附加到所有过去节点的日志。

是否onWrite会表现得有点像child_added并为所有现有实体运行该函数?

每次我再次更改和部署该功能时,是否会重复此操作?

我期待它只为新添加的节点运行一次。

4

3 回答 3

10

这是编写处理数据库写入的函数时的常见错误。当您在某个位置处理初始写入的事件,然后再次写回同一位置时,第二次写入将触发另一个事件,该事件将再次运行该函数,依此类推,这将是一个无限循环。

您的函数中需要一些逻辑来确定第二个写入事件是否不应重新写入数据库。这将停止循环。在您的情况下,您不需要设置上次更新时间的功能。您可以在客户端使用特殊值来告诉服务器将当前时间插入到字段中。

https://firebase.google.com/docs/reference/js/firebase.database.ServerValue#.TIMESTAMP

于 2017-03-16T16:08:47.013 回答
10

道格是正确的。此外,最好知道如果您有一个函数陷入无限循环,让它停止的方法是重新部署您的函数(使用firebase deploy)并修复循环,或者完全删除该函数(通过从你的index.js和运行中删除它firebase deploy)。

于 2017-03-16T17:54:12.383 回答
2

我有这个确切的问题。这里有两个问题。如何在无限循环开始后停止它。已经回答了。但真正的问题是如何使用 Firebase Cloud Function 触发器将 lastUpdated 日期字段添加到您的对象。

onWrite()这是我处理循环问题的尝试。

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


exports.onWriteFeatherUpdateSummary = functions.database.ref('/messages/{id}')
    .onWrite((change, context) => {
      // Grab the current value of what was written to the Realtime Database.
      let updated = change.after.val();
      // Grab the previous value of what was written to the Realtime Database.
      const previous = change.before.val();
      let isChanged = true;
      let isCreated = (previous === null); // object 'created'

      // Only when the object gets updated
      if (!isCreated) {
        // An object should never directly change the lastUpdated value, this is for trhe trigger only
        isChanged = (updated.lastUpdated === previous.lastUpdated);
      }

      console.log(`isChanged: ${isChanged} ; isCreated: ${isCreated}`);

      if(isChanged) {
        // Insert whatever extra data you wnat on the update trigger
        const summary = `This is an update!`;

        // Add a 'createdDate' field on the first trigger
        if (isCreated) {
          // Make sure your object has a createdDate (Date) before the lastUpdated (Date)!
          Object.assign(updated,
              {
                createdDate : admin.database.ServerValue.TIMESTAMP
              }
            );
        }

        // Add lastUpdated Date field on very update trigger (but not when you just changed it with the trigger!)
        Object.assign(updated,
            {
              summary : summary,
              lastUpdated : admin.database.ServerValue.TIMESTAMP
            }
          );
      }

      return change.after.ref.set(updated);
    });
于 2018-06-24T11:45:05.043 回答