3

这实际上是两个问题。

使用 MongooseJS

  1. 您可以为 Schema 设置默认排序顺序吗?
  2. 你能控制子文档的排序方式吗?
4

1 回答 1

0

查看可用于创建模式的选项,看起来这不是一个可用的选项:

autoIndex: bool - defaults to true
bufferCommands: bool - defaults to
true capped: bool - defaults to false
collection: string - no default
id: bool - defaults to true
_id: bool - defaults to true
minimize: bool - controls document#toObject behavior when called manually - defaults to true
read: string
safe: bool - defaults to true.
shardKey: bool - defaults
to null strict: bool - defaults to true toJSON - object - no default
toObject - object - no default
versionKey: bool - defaults to "__v"

您也许可以制作一个插件来完成您正在尝试做的事情。

于 2014-04-15T16:15:21.433 回答