gpt4 book ai didi

javascript - 如何在 Firebase 中监听多个特定位置的数据更改?

转载 作者:可可西里 更新时间:2023-11-01 02:01:03 25 4
gpt4 key购买 nike

我正在使用 Firebase 作为我正在开发的移动应用程序(JS Web SDK)的实时数据库,结构如下截图所示,key = email,每个 key 都有移动用户信息,和 GPS 坐标节点内的移动位置=“路径”

如何收听所有电子邮件(用户)的所有“路径”?

enter image description here

最佳答案

直接来自 Firebase documents :

value: Read and listen for changes to the entire contents of a path.

var ref = firebase.database().ref("users");
firebase.database().ref().on('value', function(snapshot) {
// Do whatever
});

该函数在启动时会运行一次,路径下的数据每次发生变化都会运行一次。 snapshot 将返回 user/ 的所有内容,这是每次更改都要返回的大量数据。您可以相应地更改 ref

关于javascript - 如何在 Firebase 中监听多个特定位置的数据更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38308493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com