다른 모델에 정의된 몽구스 데이터베이스의 스키마를 가져오는 방법 다음은 내 폴더 구조입니다. +-- express_example |---- app.js |---- models |-------- songs.js |-------- albums.js |---- and another files of expressjs 파일 노래에 있는 내 코드.js var mongoose = require('mongoose') , Schema = mongoose.Schema , ObjectId = Schema.ObjectId; var SongSchema = new Schema({ name: {type: String, default: 'songname'} , link: {type: String, default: './data/tr..