我有2个文件:关键特征:mongoose=require('mongoose');Schema=mongoose.Schema;DescriptionSchema=require('./description');KeyFeatureSchema=newSchema({descriptions:[DescriptionSchema],title:String,key:String,display:String,feature:{type:Schema.Types.ObjectId,ref:'Module'}});module.exports=KeyFeatureSchema;描述:mo