热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

child_removed并不总是在firebase上开火-child_removeddoesn'talwaysfireonfirebase

Imrunningtwotestsinfirebase.Oneversionpasses,theotherdoesnot.Thechild_removedcallbac

I'm running two tests in firebase. One version passes, the other does not. The child_removed callback works fine if it's attached before the child is actually added. It does not fire when attached after the insert.

我在firebase中运行了两个测试。一个版本通过,另一个版本不通过。如果在实际添加子项之前附加了child_removed回调,则它可以正常工作。插入后连接时不会触发。

Version that passes the test:

通过测试的版本:

it("A) listens to child_removed raw (Before Insert)", function (done) {
  this.timeout(5000);

  let ref = DataServices.database.ref();
  let pushRef = ref.child('test/testChildRemovedA').push();
  let newKey = pushRef.key;
  let insertPath = 'test/testChildRemovedA/' + newKey;

  let callback = (snapshot) => { done(); }
  DataServices.database.ref('test/testChildRemovedA/').on("child_removed", callback);

  let updates = {};
  updates[insertPath] = 'hi';
  DataServices.database.ref().update(updates).then(() => {
      updates[insertPath] = null;
      DataServices.database.ref().update(updates);
    });
});

Version that fails the test:

未通过测试的版本:

it("B) listens to child_removed raw (After Insert)", function (done) {
  this.timeout(10000);

  let ref = DataServices.database.ref();
  let pushRef = ref.child('test/testChildRemovedB').push();
  let newKey = pushRef.key;
  let insertPath = 'test/testChildRemovedB/' + newKey;

  let callback = (snapshot) => { done(); }
  let updates = {};
  updates[insertPath] = 'hi';
  DataServices.database.ref().update(updates).then(() => {
      DataServices.database.ref('test/testChildRemovedB/').on("child_removed", callback);
      updates[insertPath] = null;
      DataServices.database.ref().update(updates);
    });
});

The only difference is where the child_removed event is attached, but both are attached before the data is actually deleted. In both cases, the data is indeed removed from firebase.

唯一的区别是附加了child_removed事件,但在实际删除数据之前都附加了这两个事件。在这两种情况下,确实从firebase中删除了数据。

Is there a race condition when adding the child_removed listener?

添加child_removed监听器时是否存在竞争条件?

1 个解决方案

#1


0  

I don't think you need any callback. The code should be pretty simple.

我认为你不需要任何回调。代码应该非常简单。

Retrieve Data on the Web

在Web上检索数据

The child_removed event is triggered when an immediate child is removed. It is typically used in conjunction with the child_added and child_changed events. The snapshot passed to the event event contains the data for the removed child.

删除直接子项时会触发child_removed事件。它通常与child_added和child_changed事件一起使用。传递给事件事件的快照包含已删除子项的数据。

The child_changed event is triggered any time a child node is modified. This includes any modifications to descendants of the child node. It is typically used in conjunction with the child_added and child_removed events to respond to changes to a list of items. The snapshot passed to the event listener contains the updated data for the child.

每次修改子节点时都会触发child_changed事件。这包括对子节点后代的任何修改。它通常与child_added和child_removed事件一起使用,以响应对项列表的更改。传递给事件侦听器的快照包含子级的更新数据。

var commentsRef = firebase.database().ref('post-comments/' + postId);
commentsRef.on('child_added', function(data) {
  addCommentElement(postElement, data.key, data.val().text, data.val().author);
});

commentsRef.on('child_changed', function(data) {
  setCommentValues(postElement, data.key, data.val().text, data.val().author);
});

commentsRef.on('child_removed', function(data) {
  deleteComment(postElement, data.key);
});

推荐阅读
  • 本文探讨了如何在 Google Sheets 中通过自定义函数实现 AJAX 调用。具体介绍了编写脚本的方法,以便在电子表格中发起 AJAX 请求,从而实现数据的动态获取与更新。这种方法不仅简化了数据处理流程,还提高了工作效率。 ... [详细]
  • Flutter 2.* 路由管理详解
    本文详细介绍了 Flutter 2.* 中的路由管理机制,包括路由的基本概念、MaterialPageRoute 的使用、Navigator 的操作方法、路由传值、命名路由及其注册、路由钩子等。 ... [详细]
  • DAO(Data Access Object)模式是一种用于抽象和封装所有对数据库或其他持久化机制访问的方法,它通过提供一个统一的接口来隐藏底层数据访问的复杂性。 ... [详细]
  • 解决Bootstrap DataTable Ajax请求重复问题
    在最近的一个项目中,我们使用了JQuery DataTable进行数据展示,虽然使用起来非常方便,但在测试过程中发现了一个问题:当查询条件改变时,有时查询结果的数据不正确。通过FireBug调试发现,点击搜索按钮时,会发送两次Ajax请求,一次是原条件的请求,一次是新条件的请求。 ... [详细]
  • 在本文中,我们将探讨如何在Docker环境中高效地管理和利用数据库。首先,需要安装Docker Desktop以确保本地环境准备就绪。接下来,可以从Docker Hub中选择合适的数据库镜像,并通过简单的命令将其拉取到本地。此外,我们还将介绍如何配置和优化这些数据库容器,以实现最佳性能和安全性。 ... [详细]
  • C++ 异步编程中获取线程执行结果的方法与技巧及其在前端开发中的应用探讨
    本文探讨了C++异步编程中获取线程执行结果的方法与技巧,并深入分析了这些技术在前端开发中的应用。通过对比不同的异步编程模型,本文详细介绍了如何高效地处理多线程任务,确保程序的稳定性和性能。同时,文章还结合实际案例,展示了这些方法在前端异步编程中的具体实现和优化策略。 ... [详细]
  • 本文将继续探讨 JavaScript 函数式编程的高级技巧及其实际应用。通过一个具体的寻路算法示例,我们将深入分析如何利用函数式编程的思想解决复杂问题。示例中,节点之间的连线代表路径,连线上的数字表示两点间的距离。我们将详细讲解如何通过递归和高阶函数等技术实现高效的寻路算法。 ... [详细]
  • 本文详细探讨了JavaScript中数组去重的各种方法,并通过实际代码示例进行了深入解析。文章首先介绍了几种常见的去重技术,包括使用Set对象、过滤方法和双重循环等。每种方法都附有具体的实现代码,帮助读者更好地理解和应用这些技术。此外,文中还讨论了不同方法在性能上的优劣,为开发者提供了实用的参考。 ... [详细]
  • 在处理木偶评估函数时,我发现可以顺利传递本机对象(如字符串、列表和数字),但每当尝试将JSHandle或ElementHandle作为参数传递时,函数会拒绝接受这些对象。这可能是由于这些句柄对象的特殊性质导致的,建议在使用时进行适当的转换或封装,以确保函数能够正确处理。 ... [详细]
  • 在 Angular Google Maps 中实现图片嵌入信息窗口的功能,可以通过使用 `@agm/core` 库来实现。该库提供了丰富的 API 和组件,使得开发者可以轻松地在地图上的信息窗口中嵌入图片。本文将详细介绍如何配置和使用这些组件,以实现动态加载和显示图片的功能。此外,还将探讨一些常见的问题和解决方案,帮助开发者更好地集成这一功能。 ... [详细]
  • 本篇内容主要讲解“JavaScript在网页设计中的嵌入应用方法是什么”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小 ... [详细]
  • Thisquestionalreadyhasananswerhere:这个问题已经有了答案:HowcanIdisplayaJavaScriptobje ... [详细]
  • Ihavethefollowingonhtml我在html上有以下内容<html><head><scriptsrc..3003_Tes ... [详细]
  • IjustinheritedsomewebpageswhichusesMooTools.IneverusedMooTools.NowIneedtoaddsomef ... [详细]
  • 本文介绍了在满足特定条件时如何在输入字段中使用默认值的方法和相应的代码。当输入字段填充100或更多的金额时,使用50作为默认值;当输入字段填充有-20或更多(负数)时,使用-10作为默认值。文章还提供了相关的JavaScript和Jquery代码,用于动态地根据条件使用默认值。 ... [详细]
author-avatar
蒋小宁蒋小羊
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有