2

/lib/collections/images.js

var imageStore = new FS.Store.FileSystem("images", {
  // what should the path be if I want to save to /public/assets?
  // this does not work
  path: "/assets/images/", 
  maxTries: 1
});

Images = new FS.Collection("images", {
  stores: [imageStore]
});

Images.deny({
  insert: function() {
    return false;
  },
  update: function() {
    return false;
  },
  remove: function() {
    return false;
  },
  download: function() {
    return false;
  }
});

Images.allow({
  insert: function() {
    return true;
  },
  update: function() {
    return true;
  },
  remove: function() {
    return true;
  },
  download: function() {
    return true;
  }
});

/client/test.html

<template name="test">

    <input type="file" name="myFileInput" class="myFileInput">

</template>

/client/test.js

Template.test.events({

  'change .myFileInput': function(event, template) {
    FS.Utility.eachFile(event, function(file) {
      Images.insert(file, function (err, fileObj) {
        if (err){
           // handle error
        } else {
           // handle success
        }
      });
    });
  },

});

对于路径,如果我使用:

path: "/public/assets/images",

错误:EACCES,权限被拒绝'/public'

path: "/assets/images",

错误:EACCES,权限被拒绝'/assets'

path: "~/assets/images",

这可行,但它会将图像保存到/home/assets/images我的 Linux 机器上。该路径根本与 Meteor 项目无关。

4

3 回答 3

7

我已经使用meteor-root包解决了这个问题: https ://atmospherejs.com/ostrio/meteor-root

Files = new FS.Collection("files", {
    stores: [new FS.Store.FileSystem("images", {path: Meteor.absolutePath + '/public/uploads'})]
});

所以现在它将文件存储在 app/public/uploads/

希望这可以帮助!

于 2016-01-05T16:18:39.887 回答
5

/不代表您网站的根目录。/代表系统的根。流星应用程序以您的用户身份运行。

您想要做的是使用相对路径。collectionFSfs.write操作可能不是从应用程序根目录完成的。所以或者你可以使用path: process.env.PWD + '/public/assets/images'

于 2015-07-17T15:34:45.697 回答
0

您可以使用

 var homeDir = process.env.HOMEPATH;
 tmpDir: homeDir + '/uploads/tmp'
于 2015-11-19T12:43:16.187 回答