我正在尝试使用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");
}
没运气