我正在使用 Meteor CollectionFS Package(cfs:filesystem) 上传图像。
我使用了这种语法:
Images = new FS.Collection("images", {
stores: [imageStore]
});
但它将图像存储在新集合中,'cfs.images.filerecord'
而不是我想存储在我自己的集合中的这个集合。
怎么可能?
我正在使用 Meteor CollectionFS Package(cfs:filesystem) 上传图像。
我使用了这种语法:
Images = new FS.Collection("images", {
stores: [imageStore]
});
但它将图像存储在新集合中,'cfs.images.filerecord'
而不是我想存储在我自己的集合中的这个集合。
怎么可能?