mongodb findone sort by date

findOne has no method sort . But you can use Model.find , sort by your date (ascending or descending) and then limit th...

mongodb findone sort by date

findOne has no method sort . But you can use Model.find , sort by your date (ascending or descending) and then limit the returned values to 1 ..., Just a slight modification to @JohnnyHK answer collection.find().sort(datefield: -1}, function(err, cursor)...}); In many use cases we wish to ...

相關軟體 MongoDB 資訊

MongoDB
MongoDB 是一個免費且開放源碼的跨平檯面向文檔的數據庫程序。分類為 NoSQL 數據庫程序,MongoDB 使用類似 JSON 的文檔與模式。它為使用 MongoDB 包括數據庫開發人員和 DBA 的任何人提供了豐富的 GUI 工具。主要功能包括:全功能嵌入 MongoDB Shell,用戶友好的 Map-Reduce 操作編輯器,創建 / 刪除數據庫,管理集合及其索引的能力,用戶友好的 G... MongoDB 軟體介紹

mongodb findone sort by date 相關參考資料
MongoDB difference between $orderby and Sort - Stack ...

Use cursor.sort() instead. Unfortunately, findOne() doesn't support the sort() method, so you'll need to switch ...

https://stackoverflow.com

Sorting mongodb client findOne() in node - Stack Overflow

findOne has no method sort . But you can use Model.find , sort by your date (ascending or descending) and then limit the returned values to 1 ...

https://stackoverflow.com

How to sort a collection by date in MongoDB? - Stack Overflow

Just a slight modification to @JohnnyHK answer collection.find().sort(datefield: -1}, function(err, cursor)...}); In many use cases we wish to ...

https://stackoverflow.com

Get latest MongoDB record by field of datetime - Stack Overflow

Up vote 3 Down vote. For node.js you can use the findOne() function: db.collection('yourCollectionName').findOne( }, sort: datetime: -1 } } ...

https://stackoverflow.com

In Mongoose, how do I sort by date? (node.js) - Stack Overflow

As of the 4.1.x release of Mongoose, a descending sort on the date field can be done in any of the following ... Also read this > http://www.mongodb.org/display/DOCS/Sorting+and+Natural+Order ... ...

https://stackoverflow.com

mongoose findOne with sorting - Stack Overflow

function findOne (conditions, fields, options, callback). What you intend as options (the sort), mongoose is handling as fields (which fields to ...

https://stackoverflow.com

Sort by date and time in mongoose? - Stack Overflow

The way to sort would be: image.find(reviewed:true}) .sort('submittedDate': 'desc'}) .exec(function(err, images) //do stuff with images });. Some documentation.

https://stackoverflow.com

db.collection.findOne() — MongoDB Manual

In capped collections, natural order is the same as insertion order. ... If you specify a projection parameter, findOne() returns a document that only contains the ... starts with the letter G or wher...

https://docs.mongodb.com

$orderby — MongoDB Manual

sort() instead. The $orderby operator sorts the results of a query in ascending or descending order. The mongo shell ...

https://docs.mongodb.com

cursor.sort() - MongoDB Documentation

Array; BinData; ObjectId; Boolean; Date; Timestamp; Regular Expression; MaxKey (internal type). For details on the comparison/sort order for ...

https://docs.mongodb.com