我正在尝试添加带有类别的图像集(例如,特色图片,食物,平面图)。我正在使用以下代码创建图像集:
//create fs collection with gridfs to hold images
Images = new FS.Collection('Images', {
stores: [new FS.Store.GridFS('Images')],
filter:{
allow: {
contentTypes: ['image/*']
},
onInvalid: function(message){
FlashMessage.sendError(message);
}
}
});
//set image permissions
Images.allow({
insert: function(){
return: true;
},
update: function(){
return: true;
},
download: function(){
return: true;
}
});
//create imageinfo collection to hold info about images
ImageInfo = new Mongo.Collection('imageinfo')
我想添加类别,这些类别允许我将前端的图像分开,并拥有一个特色图像(可以专门为此目的上传,不需要从其他图像重新分配)。
根据我的理解,我有几种添加图像类别的选项:
在这种情况下你会做什么?