我正在尝试实现“删除旧子节点”云功能示例(https://github.com/firebase/functions-samples/tree/master/delete-old-child-nodes)。写入目录后,应删除所有2小时以上的节点。但是,无论什么情况,它只会删除所有节点。
我发现this StackOverflow post描述了相同的问题。但是,我相信原因是不同的。用户以秒为单位存储其时间戳,而截止时间以毫秒为单位。在我的代码中,两者都以毫秒为单位。
这是当前的index.js代码,它与Firebase示例完全相同,除了我将时间戳称为“ lastUpdated”而不是“ timestamp”。
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
const CUT_OFF_TIME = 2 * 60 * 60 * 1000;
exports.deleteOldItems = functions.database.ref('/decks/{pushId}').onWrite(async (change) => {
var ref = change.after.ref.parent;
const now = Date.now();
const cutoff = now - CUT_OFF_TIME;
const oldItemsQuery = ref.orderByChild('lastUpdated').endAt(cutoff);
const snapshot = await oldItemsQuery.once('value');
const updates = {};
ref = ref.parent.child('deckLocs')
snapshot.forEach(child => {
updates[child.key] = null;
});
return ref.update(updates);
});
这是我的数据库结构
"xxxx-9d272" {
"decks" : {
"randomID12345" : {
"lastUpdated" : 1558460300472
},
"randomID67890" : {
"lastUpdated" : 1558460300472
}
},
"deckLocs" : {
"randomID12345" : {},
"randomID67890" :{}
}
}
谢谢。
答案 0 :(得分:0)
问题是我试图将更新应用到另一个目录,而行ref = ref.parent.child('deckLocs')
引起了问题。如果消失了,它将按预期工作。