我正在使用Meteor.js和Amazon S3 Bucket上传和存储照片。我正在使用陨石包collectionFS和aws-s3。我正确设置了我的aws-s3连接,图像集合工作正常。
客户端事件处理程序:
'click .submit': function(evt, templ) {
var user = Meteor.user();
var photoFile = $('#photoInput').get(0).files[0];
if(photoFile){
var readPhoto = new FileReader();
readPhoto.onload = function(event) {
photodata = event.target.result;
console.log("calling method");
Meteor.call('uploadPhoto', photodata, user);
};
}
我的服务器端方法:
'uploadPhoto': function uploadPhoto(photodata, user) {
var tag = Random.id([10] + "jpg");
var photoObj = new FS.File({name: tag});
photoObj.attachData(photodata);
console.log("s3 method called");
Images.insert(photoObj, function (err, fileObj) {
if(err){
console.log(err, err.stack)
}else{
console.log(fileObj._id);
}
});
选择的文件是.jpg图像文件,但在上传时我在服务器方法上出现此错误:
调用方法' uploadPhoto'错误:DataMan构造函数接收到它不支持
的数据无论我是直接传递图像文件,还是将其作为数据附加或使用fileReader读取为text / binary / string。我仍然得到那个错误。请指教。
答案 0 :(得分:2)
好吧,也许是一些想法。几个月前我已经使用collectionFS做过一些事情,所以请注意文档,因为我的例子可能不是100%正确。
凭证应通过环境变量设置。因此,您的密钥和秘密仅在服务器上可用。请查看此link以进一步阅读。
好的,首先,这是一些适合我的示例代码。检查你的差异。
模板助手:
'dropped #dropzone': function(event, template) {
addImage(event);
}
函数addImage:
function addImagePreview(event) {
//Go throw each file,
FS.Utility.eachFile(event, function(file) {
//Some Validationchecks
var reader = new FileReader();
reader.onload = (function(theFile) {
return function(e) {
var fsFile = new FS.File(image.src);
//setMetadata, that is validated in collection
//just own user can update/remove fsFile
fsFile.metadata = {owner: Meteor.userId()};
PostImages.insert(fsFile, function (err, fileObj) {
if(err) {
console.log(err);
}
});
};
})(file);
// Read in the image file as a data URL.
reader.readAsDataURL(file);
});
}
好的,下一点是验证。可以使用允许/拒绝规则以及FS.Collection上的过滤器来完成验证。这样您就可以通过客户端进行所有验证和插入。
示例:
PostImages = new FS.Collection('profileImages', {
stores: [profileImagesStore],
filter: {
maxSize: 3145728,
allow: {
contentTypes: ['image/*'],
extensions: ['png', 'PNG', 'jpg', 'JPG', 'jpeg', 'JPEG']
}
},
onInvalid: function(message) {
console.log(message);
}
});
PostImages.allow({
insert: function(userId, doc) {
return (userId && doc.metadata.owner === userId);
},
update: function(userId, doc, fieldNames, modifier) {
return (userId === doc.metadata.owner);
},
remove: function(userId, doc) {
return false;
},
download: function(userId) {
return true;
},
fetch: []
});
在这里,您将找到另一个示例click
另一个错误点可能是你的aws配置。你做过像here写的一切吗?
基于这篇文章click,似乎在FS.File()构造不正确时会发生此错误。所以也许这应该是你开始的第一步。
很多阅读,所以我希望这可以帮助你:)