在我的Node.js服务器中,我使用猫鼬 我已经在单个文件中为帖子和评论创建了架构。 有什么方法可以导出子文档(注释)的架构以分离文件并导入到主架构文件?
const mongoose = require('mongoose');
const commentSchema = mongoose.Schema({
body: { type: String }
});
const postSchema = mongoose.Schema({
title: {
type: String,
required: true
},
comments: {
type: [commentSchema]
}
});
module.exports = mongoose.model('questions', postSchema);