我正在使用 Meteor Local 文件系统在特定文件夹中使用FS.Store.FileSystem API 上传我的资产。但是,我想根据类型元数据将这些资产类别明智地上传到单独的文件夹中。我不知道如何在 Meteor 中做到这一点。原始文档建议使用 fileKeyMaker 方法。有人可以解释一下,如何使用它将资产存储在单独的文件夹中?
AssetFiles = new FS.Collection("assets",{
stores : [
new FS.Store.FileSystem("AssetBundle",{path : '~/uploads'})
],
filter : {
maxSize: 5048576,
allow : {
extensions: ['pdf','FBX','cad','jpeg','gif','png','jpg']
}
}
});