1

GridFS API似乎.sort不像DBCursor对象有

有没有办法按uploadDate(或任何其他 GridFS 元数据字段)进行排序?

4

1 回答 1

2

我建议直接将 fs.files 排序为普通集合,并根据结果使用 GridFS API 检索文件。

例如:

var cur = db.fs.files.find({}, {"_id" : true}).sort({"uploadDate" : true})

然后您可以使用 id 值来检索文件。

于 2012-06-18T07:27:09.370 回答