尝试将照片插入数据库时,我遇到了上述错误。奇怪的是,文档的文件端插入正常,但没有任何东西插入到块边。我环顾网络,但没有得到任何关于问题可能是什么的提示。有没有人看到这个错误并且可以提供帮助?
这是我的代码。
collections.js
PhotosFS = new CollectionFS('photos');
PhotosFS.allow({
insert: function (userId, file) {
return userId && file.owner === userId;
}
});
events.js
Template.createPhotos.events({
"change input[type='file']": function (e, tmpl) {
var file = e.target.files;
Session.set('currentFile', file[0]);
},
"click .save-button": function (e, tmpl) {
var file = Session.get('currentFile');
PhotosFS.storeFile(file, {
name: name,
photographer: photographer,
caption: caption,
});
}
});
答案 0 :(得分:0)
我猜测它与在上传到数据库之前将文件存储在会话中有关,因为如果你在输入文件上更改后直接上传文件就会上传很好。当从输入文件更改事件直接上载时,它将作为文件上载。但是当它存储在会话中然后上传时,它会作为对象上传。我想CollectionFS块不能识别对象。我不知道。但我确实知道,对于我的特定应用程序,在输入文件更改事件之后直接上传文件是没有意义的。
但我想我必须这样做
Template.createPhotos.events({
"change input[type='file']": function (e, template) {
var file = e.target.files;
var fileId = PhotosFS.storeFile(file[0]);
Session.set('currentFile', fileId)
},
"click .save-button": function (e, tmpl) {
var file = Session.get('currentFile');
PhotosFS.storeFile(file, {$set: {
name: name,
photographer: photographer,
caption: caption,
}});
}
});
我不会接受我自己的答案,因为我仍然希望有人找到一种方法来处理在上传前将文件存储在会话中。