0
var cursor = db.processes.find({"status" : "READY"});
ps = cursor.sort({"priority" : -1}).limit(1).next();
在上面的代碼中,如果我最後不使用next()
,那麼我也可以在ps中得到相同的結果。那麼最後使用next()
有什麼意義呢?在排序和限制mongo db的遊標後使用next()有什麼意義?