我正在开发流星的后端,现在我正在尝试以某种方式将文本文件与图像相关联。有没有一种方法可以将文本文件存储在fscollection中?如何将它们关联到两个不同的集合中?

这是我的两个收藏:

Images = new FS.Collection("Images", {
  stores: [new FS.Store.FileSystem("Images", {path: "~/padonde/uploads"})]
});

Reynosa = new Mongo.Collection("Reynosa");


在FsCollection中,我存储图像,在其他集合中存储数据,但是它们都将是同一记录的一部分。

最佳答案

您可以像这样在FSCOllection内部使用元数据

在同一个FSCollection中,您应该使用以下插入函数:

Template.templateName.events({
'click #clickEvent' : function(){

var file = $('#addImagenPromocion').get(0).files[0]; // Stores temporaly the FSFile
var fsFile = new FS.File(file); // take the FS.File object
fsFile.metadata = {nameValueMetadata:"Cool Stuff"};
Images.insert(fsFile);
}

});


因此,在此之后,如果运行Images.find().fetch();,则在FSCollection上插入一些元数据

您将在文档中设置nameValueMetada:"cool stuff"

10-08 12:24