包括属性,类型等?我本来希望得到的,实质上是:
{
label: {
type: "String",
required: true
},
published: {
type: "Boolean",
default: true
}
}
调用mongoose.model('someModel').schema.paths
仅返回String
,Number
和ObjectId
的属性类型,其他所有属性都为undefined
。当我在GitHub问题队列中读到这个信息时,似乎这个信息(schema.paths[path].instance
属性)是内部的,甚至不应该首先使用。
如果是这样的话,怎样才能以编程方式获得架构定义?
相关问题不能回答这个问题:
相关GitHub问题: