Session.setDefault('arrayFotos', []);
Template.NovoLoteamento.helpers({
defChangeValues: function() {
return {
fotos: Session.get('arrayFotos')
};
}
});
Template.NovoLoteamento.rendered = function(){
if (Meteor.isClient){
var arrayOfImageIds = [];
Dropzone.autoDiscover = false;
// Adds file uploading and adds the imageID of the file uploaded
// to the arrayOfImageIds object.
var dropzone = new Dropzone("form#dropzone", {
accept: function(file, done){
Images.insert(file, function(err, fileObj){
if(err){
alert("Error");
} else {
alert(fileObj._id + " inserido !");
// gets the ID of the image that was uploaded
var imageId = fileObj._id;
// do something with this image ID, like save it somewhere
arrayOfImageIds.push(imageId);
};
});
}
});
Session.set("arrayFotos", arrayOfImageIds);
};
};
Why am i doing this ? Because i want to get the arrayOfImageIds and insert into fotos: [String] in Schema. It's better solution ? Because i didn't find a way to put dropzone on autoform.
I just want to make images multi upload inside the Loteamentos collection !
I'm using collectionFS, meteor-autoform and Dropzone, i have a collection with the name:
Loteamentos
, look some part of the Loteamentos(Schema):On a template with >quickForm, look like this:
And in my js i've made this:
Why am i doing this ? Because i want to get the
arrayOfImageIds
and insert intofotos: [String]
in Schema. It's better solution ? Because i didn't find a way to put dropzone on autoform. I just want to make images multi upload inside theLoteamentos
collection !