我正在使用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']
}
}
});
答案 0 :(得分:0)
如果您将文件夹创建为黑客,则并不困难。只需执行以下操作:
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']
}
}
});
我正在尝试做类似的事情,没有运气,但你的文件夹数量有限。希望以上工作。