在我的图像共享应用程序中,您可以创建相册并向其中添加图像。当从站点中删除图像时,它也应该从存储对图像的引用(名称,id)的相册中删除。
我需要帮助的是找到哪些相册存储了即将被删除的图像(参考)。
在下面的路线中是我迄今为止尝试过的,但我在查询中遇到错误。我检查了 Mongodb 文档,语法如下所示:
db.collection.find( { field : { $in : array } } );
在我的路线中,字段和数组已经交换了位置,这似乎不起作用。
我真的很感激一些帮助。提前致谢!
我的模型如下所示:
var AlbumSchema = new Schema({
title : String,
imageName : [String], <-- array the contains of images names
imageId : [String] <-- array the contains of images id's
});
modelObject.AlbumSchema = AlbumSchema;
modelObject.Album = mongoose.model('Album', AlbumSchema);
var ImageSchema = new Schema({
name : String,
size : Number,
type : String
});
modelObject.ImgSchema = ImgSchema;
modelObject.Image = mongoose.model('Image', ImgSchema);
删除图片的路径:
app.get('/blog/delete/:id', function(req, res){
model.ImagePost.findById(req.params.id, function (err, blog){
var theImage = blog.name;
if (err) {
console.log(err);
// do something
}
var query = albumModel.Album.find( { imageName: { $in : theImage } } );
query.exec(function (err, albums) {
if (!albums) {
console.log(err);
// do something
blog.remove(function(err) {
console.log(err);
// do something
});
res.redirect('/blogs');
}
else {
// code for removing the image(s) in the albums
res.redirect('/blogs');
}
});
});
});