gpt4 book ai didi

javascript - 我如何在 mongoose 中引用模式的 ID

转载 作者:行者123 更新时间:2023-11-30 21:05:46 24 4
gpt4 key购买 nike

const mongoose = require('mongoose');
const Schema = mongoose.Schema;

const CollageSchema = new Schema({
collage_name: {
type: String,
required: [true, 'Name field is required']
},
university_id: {
type: [{
type: Schema.Types.ObjectId,
ref: 'university'
}]
},
type: {
type: String,
enum: ['autonomous', 'private'],
required: [true, 'type field is required']
}
});

const Collage = mongoose.model('collage', CollageSchema);
module.exports = Collage;

我在 CollageSchema 中引用了 UniversitySchema 的 _id,但它将采用任何不会出现在 university 表中的 university_id。请帮我。谢谢

最佳答案

对于任何引用对象 ID,架构中默认没有任何验证您可以做的是设置一个同步验证并在其中调用 findOne 进行验证。

关于javascript - 我如何在 mongoose 中引用模式的 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46628760/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com