0

我正在尝试使用CollectionFS获得最简单的示例。所以我开始了一个新项目

meteor create test
cd test
meteor add cfs:standard-packages
meteor add cfs:filesystem

现在我添加README.md中的所有代码。

common.js(创建)

Images = new FS.Collection("images", {
  stores: [new FS.Store.FileSystem("images", {path: "~/uploads"})]
});

所以在server.js(创建)

Images.allow({
  'insert': function () {
    // add custom authentication code here
    return true;
  },
});

test.js(由流星创建的编辑)

  Template.hello.helpers({
    counter: function () {
      return Session.get('counter');
    },
    // -- added ---
    images: function() {
      return Images.find();
    },
  });

  // added
  Template.hello.events({
    'change .myFileInput': function(event, template) {
      var files = event.target.files;
      for (var i = 0, ln = files.length; i < ln; i++) {
        Images.insert(files[i], function (err, fileObj) {
          // Inserted new doc with ID fileObj._id, and kicked off the data upload using HTTP
        });
      }
    }
  });

test.html(由流星创建的编辑)

  <!-- added -->
  <input type="file" class="myFileInput"/>

  <hr/>
    {{#each images}}
      <div>
        {{this.name}}: <a href="{{this.url}}" target="_blank"><img width="50" src="{{this.url}}" alt="" class="thumbnail" /></a>
      </div>
    {{/each}}

所以一切正常。我设置了一张图片,它被上传了,它神奇地出现了

然后我删除autopublish

meteor remove autopublish

我需要发布和订阅什么才能让它再次工作?

我尝试过的事情

server.js

if (Meteor.isServer) {
  Meteor.publish("images");
}

test.js

if (Meteor.isClient) {
  Meteor.subscribe("images");
}

没运气

4

1 回答 1

1
if (Meteor.isServer) {
  Meteor.publish("images", function() {
    return Images.find();
  });
}

你得到的客户端代码是正确的。

于 2015-10-20T03:17:30.763 回答