例如
const ProjectSchema = new mongoose.Schema({
name : { type:String },time : { type:Date, default:Date.now },url : { type: String},user : { type: Object},proId : {type: String},spaceId : {type: String},description: {type: String},participant: {type: Array}
})
我需要 通过 传入的id 查找,participant里面含有该id的数据
Qyouu
相关分类