1

我正在使用 Meteor Local 文件系统在特定文件夹中使用FS.Store.FileSystem API 上传我的资产。但是,我想根据类型元数据将这些资产类别明智地上传到单独的文件夹中。我不知道如何在 Meteor 中做到这一点。原始文档建议使用 fileKeyMaker 方法。有人可以解释一下,如何使用它将资产存储在单独的文件夹中?

https://github.com/CollectionFS/Meteor-CollectionFS/wiki/How-to:-Customize-the-folders-on-the-filesystem

    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']
        }
    }
 });
4

1 回答 1

0

如果您将文件夹创建为 hack,这并不难。只需执行以下操作:

AssetFiles = new FS.Collection("assets",{
stores : [
        new FS.Store.FileSystem("AssetBundle",{path : '~/uploads',
           fileKeyMaker: function (fileObj) {
               // Lookup the copy
               var store = fileObj && fileObj._getInfo("assets");
               // If the store and key is found return the key
               if (store && store.key) return store.key;

               var filename = fileObj.name();
               if(filename.indexOf("pdf")>-1){
                   // If no store key found we resolve / generate a key
                   // this should be: "~/uploads/pdf/<filename>"
                   return "pdf/"+filename;
               }

           }
        })
],
filter : {
    maxSize: 5048576,
    allow : {
            extensions: ['pdf','FBX','cad','jpeg','gif','png','jpg']
    }
}
});

我正在尝试做类似的事情,但没有运气,但是您的文件夹数量有限。希望上述工作。

于 2016-04-17T06:11:19.127 回答