Firebase Cloud Functions 在写入后立即删除数据

Posted

技术标签:

【中文标题】Firebase Cloud Functions 在写入后立即删除数据【英文标题】:Firebase Cloud Functions is deleting data immediately after write 【发布时间】:2019-12-18 09:56:28 【问题描述】:

我已实现 Firebase Cloud Functions 以从 Firebase 数据库中删除数据。我的每个孩子都有一个时间戳,所以我想在数据超过 2 小时时删除数据,而不是在 2 小时后删除,而是在写入数据库后立即删除孩子。

这是 Cloud Functions 代码:

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

// Cut off time. Child nodes older than this will be deleted.
const CUT_OFF_TIME = 2 * 60 * 60 * 1000; // 2 Hours in milliseconds.

/**
 * This database triggered function will check for child nodes that are older than the
 * cut-off time. Each child needs to have a `timestamp` attribute.
 */
exports.deleteOldItems = functions.database.ref('/database/pushId').onWrite(async (change) => 
  const ref = change.after.ref.parent; // reference to the parent
  const now = Date.now();
  const cutoff = now - CUT_OFF_TIME;
  const oldItemsQuery = ref.orderByChild('timeStamp').endAt(cutoff);
  const snapshot = await oldItemsQuery.once('value');
  // create a map with all children that need to be removed
  const updates = ;
  snapshot.forEach(child => 
    updates[child.key] = null;
  );
  // execute all updates in one go and return the result to end the function
  return ref.update(updates);
);

  "app_title" : "app",
  "database" : 
    "-Lm3gJ16yk5ZNdt8z2PJ" : 
      "message" : "ok",
      "timeStamp" : "1565594302830",
      "userModel" : 
        "email" : "abcd@yahoo.com",
        "name" : "Microsoft",
        "photo" : "https://graph.facebook.com/"
      
    
  


我已经多次搜索此解决方案,但没有从任何地方得到它。 谁能帮帮我。

【问题讨论】:

您数据库中的时间戳很可能与此函数预期的格式不同。请编辑您的问题以在/database 下包含 JSON 的 sn-p(作为文本,无屏幕截图)。您可以通过单击Firebase Database console 上溢出菜单 (⠇) 中的“导出 JSON”链接来获取此信息。 我已经添加了 json 结构,我的数据库看起来如何我有时间戳。@FrankvanPuffelen 您的时间戳存储为字符串,而代码假定它是一个数字。 【参考方案1】:

您的时间戳存储为字符串,而代码假定它是一个数字。我强烈建议修复编写时间戳的代码,以便将其存储为数字。

但与此同时,您可以通过以下方式查询字符串:

const oldItemsQuery = ref.orderByChild('timeStamp').endAt(""+cutoff);

【讨论】:

以上是关于Firebase Cloud Functions 在写入后立即删除数据的主要内容,如果未能解决你的问题,请参考以下文章

在 iOS 中为 Firebase 使用 Cloud Functions

Cloud Functions for Firebase 超时

Firebase Cloud Functions https.onCall 完成状态码:204

Cloud Functions for Firebase onWrite 超时

Easy Firebase Cloud Functions 组织

在 Firebase Cloud Functions 中创建 PDF