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 に答える