【发布时间】:2017-07-05 18:29:37
【问题描述】:
我在 angularjs 1.5 中使用 firebase 3 启动了我的 Web 应用程序。我现在想为我的 Web 应用程序创建一个 IOS 应用程序。该应用程序是一个时钟系统,用户可以在其中签入或签出他的工作时间。
为了简单起见,我喜欢 firebase 中的这张表:
worktimes
-Kd4swkAQJTRjCbD0CCy
+ ----- IN | '2017-02-16 10:00:00'
+ ----- OUT | '2017-02-16 13:00:00'
案例:
- 如果用户有一个“OUT”值,创建一个新的工作时间。
- 如果用户在“OUT”中没有值,例如 NULL,我想更新 “OUT”并设置当前时间戳。
在 JS 中,我的代码如下所示:
var database = firebase.database();
var ref = database.ref().child('worktimes')
查询(Javascript):
ref
.startAt('2017-02-16 00:00:00')
.endAt('2017-02-16 23:59:59')
.orderByChild('timestamp')
.limitToLast(1)
.once('value', function(snapshot) {
// Getting data once here
})
查询(Swift 3):
ref
.queryStarting(atValue: "2017-02-16 00:00:00")
.queryEnding(atValue: "2017-02-16 23:59:59")
.queryOrdered(byChild: "timestamp")
.queryLimited(toLast: 1) // return only the latest entry
.observe(FIRDataEventType.value, with: { (snapshot) in
if !snapshot.value is NSNull {
// work here with the data once
for child in snapshot.children {
// if I do an update here like this:
let snap = child as! FIRDataSnapshot
let dict = snap.value as! [String: AnyObject]
let id = dict["id"] as! String
let IN = dict["in"]
let OUT = dict["out"]
if(OUT == nil){
// UPDATE QUERY
// If I update here my Data, the query ends and starts again.
ref.child("-Kd4swkAQJTRjCbD0CCy").updateChildValues(["timestamp" : "2017-02-"])
} else {
// creating new worktime here..
}
} // end of for
} // end of if
})
正如我在评论中所写(见更新查询后),快照最终结束,但它再次循环通过快照。我已经想通了,因为数据发生了变化,它再次触发了循环。
我试过了
ref.removeAllObservers()
移除观察者。它工作正常,但如果我在更新查询后尝试它不起作用。它创建了一个永不停止的循环。如何停止观察,我不需要检查新的更新。
提前致谢!
【问题讨论】: