MongoDB关联查询
/* 定义教师表结构 */ var TeacherSchema=new Schema({ name:{ type: String, required: true }, position:{ type: String, required: true, default:"教授" } })
Last updated
/*
定义教师表结构
*/
var TeacherSchema=new Schema({
name:{
type: String,
required: true
},
position:{
type: String,
required: true,
default:"教授"
}
})Last updated