mongoose的virtual属性时间:2023-03-09 13:29:00 设置vitual属性 personSchema.virtual('name.full').get(function () { return this.name.first + ' ' + this.name.last; });获取vitual属性,两种方式获取: 1.doc._doc.full获取 2.doc.toObject({virtuals: true}) 格式化后获取