我有一个 Mongoose 模式:
const UserSchema = new mongoose.Schema({
mail: {
type: String,
required: true
},
password: {
type: String,
required: true
},
folders: [
{
folderName: {
type: String,
default: 'Main',
required: true,
},
files: [
{
fileName: String,
fileType: String,
date: String,
filePath: String,
}
]
}
]
});
对于这个方案,我想从请求中获取用户的邮件和文件夹的名称,并将文件数据添加到该文件夹中,但我不知道如何将文件推送到正确的文件夹中。
我想做这个代码:
const mail = req.body.mail;
const folderName = req.body.folderName;
const file = {
fileName: 'file222',
fileType: '.png',
date: '13-02-2022 21:15',
filePath: '/uploads',
}
const user = await userModel.findOne({ mail: mail });
const folders = user.folders.filter(folder => folder.folderName === folderName);
folders[0].files.push(file);
但在MongoDB中,是这样的:
const userFile = await userModel.updateOne(
{ mail: mail, "folders.folderName": folderName },
{
$push: {
folders: {
files: file
}
}
}
);
但是我不知道如何指定那个查询......我应该怎么做呢?
2条答案
按热度按时间jgwigjjp1#
文件
位置$运算符标识数组中要更新的元素,而不显式指定该元素在数组中的位置。
mrwjdhj32#
试试看:
您可以在这里尝试更多:LINK