gpt4 book ai didi

node.js - Mongoose 填充没有 ObjectId 的字段?

转载 作者:太空宇宙 更新时间:2023-11-03 22:27:45 27 4
gpt4 key购买 nike

我有一个架构:

var Schema = mongoose.Schema;

var TicketSchema = new Schema({
externalId: String,
name: String,
items: [{
externalId: String,
price: Number,
quantity: {
type: Number,
default: 1
},
comment: {
type: String,
default: '',
trim: true
},
entity: {
type: String,
ref: 'Entity'
}
}],
tableId: String
});

mongoose.model('Ticket', TicketSchema);

我想使用除 ObjectId 之外的唯一字段填充实体字段。我怎样才能实现这一目标?

最佳答案

尽管回答晚了。请检查填充 Mongoose 4.5.0 的虚拟

点击下面的链接

http://mongoosejs.com/docs/populate.html

向下滚动或搜索填充虚拟,您将看到它完全符合您的要求。

关于node.js - Mongoose 填充没有 ObjectId 的字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43139306/

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