Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GridFS API似乎.sort不像DBCursor对象有
.sort
有没有办法按uploadDate(或任何其他 GridFS 元数据字段)进行排序?
uploadDate
我建议直接将 fs.files 排序为普通集合,并根据结果使用 GridFS API 检索文件。
例如:
var cur = db.fs.files.find({}, {"_id" : true}).sort({"uploadDate" : true})
然后您可以使用 id 值来检索文件。