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.
如何将诸如required: true或之类default的选项传递给Array 字段?
required: true
default
请参阅此处的文档,它仅显示如下示例:
ArrayOfString: [String]
但我希望能够做这样的事情:
ArrayOfString: { type: [String], required: true, default: ['one', 'two', 'three'] }
也许那是有效的,但文档中没有类似的例子。
我将它与 Mongoose 2.4.9 版一起使用,它使用以下语法
ArrayOfString: {type: Array, default: ['a','b','c','d']}
据我所知,猫鼬不会自省数组来确定它们是否稀疏或其他。这可能是您必须使用预保存挂钩的事情。
编辑:我可能误解了你的问题。您是否只是单纯地寻找该领域中是否存在任何阵列?