我想在我的猫鼬模型中有一个对象("成分"示例),其中键是ObjectID,它们的值是数字。有可能这样做吗?我该如何定义我的mongoose架构?你可以在下面找到一个例子。
示例JSON:
{
"_id": ""5a2539b41c574006c46f1a07",
"name": "xyz",
"ingredients": {
"5a23f5e6159f5c3438c75971": 50,
"5a23f60b159f5c3438c75972": 50,
"5a255b04c9d9c40ac8927dd5": 50
}
}
提前感谢您的帮助。
答案 0 :(得分:1)
在模型文件中:
(...)
ingredients: {
id: { type: mongoose.Schema.ObjectId, ref: 'xxx' } ,
value: Number,
},
(...)
在xxx中,您应该根据模型ID字段属于。
答案 1 :(得分:1)
您可以使用混合架构
{
"_id": ""5a2539b41c574006c46f1a07",
"name": "xyz",
"ingredients": mongoose.Schema.Types.mix
}
参考how to create dynamic document keys in mongodb
插入动态密钥非常简单
insertData_dynamic_colone: function(collection, colone1, colone2) {
var obj = {};
obj[colone1] = "14";
obj[colone2] = "15";
dbObject.collection(collection).insertOne(obj, function(err, result) {
assert.equal(err, null);
});
}
我知道您将来还需要更新动态密钥 参考Update Mongo array: remove dynamic key
collection.update(
{"_id": ObjectId("5a2539b41c574006c46f1a07")},
{"$unset": {"ingredients.5a23f5e6159f5c3438c75971": ""}}
)