鉴于此Category
架构
{
title: String,
parent: {
type: Schema.Types.ObjectId,
ref: 'Category',
required: true
}
}
现在,如果Category
我parent
有_id
一个parent
.
有没有更好的方法来做到这一点:?
var parentID = (category.parent._id || category.parent).toString();