我正在尝试使用FS.Collection2库https://github.com/CollectionFS/Meteor-CollectionFS
在流星上上传作品图片我设法上传图片并显示它们,但在插入图片后,我收到以下服务器错误(我只插入,我不会更新任何内容)
Exception while invoking method '/cfs.images.filerecord/update' Error: Did not check() all arguments during call to '/cfs.images.filerecord/update'
这是我的代码:
插入:
FS.Utility.eachFile(event, function(file) {
Images.insert(file, function (err, fileObj) {
console.log(err);
});
});
系列:
Images = new FS.Collection("images", {
stores: [new FS.Store.FileSystem("images")]
});
if (Meteor.isServer) {
Images.allow({
insert: function (fileID, doc) {
return true;
},
update: function (fileID, doc) {
return true;
},
remove: function(userId, doc) {
return false;
},
download: function (fileID, doc) {
return true;
}
});
}
FS包版本:
cfs:filesystem 0.1.1
cfs:standard-packages 0.5.3
谢谢你希望你能指出我正确的方向
我添加了错误的屏幕截图。
答案 0 :(得分:3)
在你的流星应用上尝试这个,并告诉我是否有效,
首先,为了更好地声明/lib/collections.js folder
上的集合,请使用此。
Images = new FS.Collection("images", {
stores: [new FS.Store.FileSystem("images")]
});
if(Meteor.isClient) {
Meteor.subscribe('Images');
}
同样在meteor console meteor remove autopublish insecure
上,你可以安全地收集所有这些内容,并且meteor首先将它加载到/lib
文件夹中,这样该集合现在可以在客户端/服务器上使用
现在在/server/collections.js
Meteor.publish('Images', function(){
return Images.find();
});
Images.allow({
insert: function(userId, doc) { return true; },
update: function(userId,doc) { return true; },
remove: function(userId,doc) { return false; },
download: function(userId, doc) {return true;},
});
现在在/client/insertingImages.html
上,使用一些简单的示例
<template name="example">
<input id="addImage" type="file">
<button type="submit" id="loadImage"> Click to add Image</button>
</template>
现在/client/insertingImages.js
Template.example.events({
'click #loadImage' : function(template,event){
var file = $('#addImage').get(0).files[0],
metadataText = "this is some cool metadata text on the image";
fsFile = new FS.File(file);
fsFile.metadata = {textFile:metadataText}
//Some authentication,(if not file selected cannot upload anything)
if(file === undefined){
alert("SORRY YOU NEED TO UPLOAD AN IMAGE TO CONTINUE");
} else{
Images.insert(fsFile,function(err,succes){
if(err){
console.log(err.reason);
} else{
console.log(succes); //this should return the fsFile, or the Id of fsFile
}
}
}
}
})
告诉我这是否有效
答案 1 :(得分:0)
如果您还没弄清楚如何操作,请在项目目录的控制台中执行以下命令:
meteor remove audit-argument-checks
这将解决错误。