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");
}
運がない