我正在阅读节点项目的代码,其中包含以下内容:
var firebase = new Firebase(...);
var ref = firebase.child('path');
// more code
// then there's a function that gets called as a result of a POST request
function doSomething() {
ref.once('value', function() { // notice how the callback doesn't get any parameter
// do something
});
}
我对firebase的理解是相当基本的,但我不太清楚为什么有人会在不关心结果的情况下要求特定路径的firebase快照。
有没有理由这样做我想不到(疯狂的事件循环技巧,也许)?