如何订购MongoDB中查找查询返回的文档的字段?

时间:2018-06-05 12:00:08

标签: mongodb mongodb-query

如何以特定格式排列find查询输出返回的文档字段?

我们假设默认情况下,find查询以下列格式返回字段:

{ "_id" : 2, "name" : "bob", "status" : "A" }
{ "_id" : 3, "name" : "ahn", "status" : "A" }
{ "_id" : 6, "name" : "abc", "status" : "A" }

但是,我希望它按照以下顺序/字段排列方式返回

{ "_id" : 2, "status" : "A", "name" : "bob" }
{ "_id" : 3, "status" : "A", "name" : "ahn" }
{ "_id" : 6, "status" : "A", "name" : "abc" }

0 个答案:

没有答案