I am trying to upload a photo with Lepozepo/cloudinary
This is my server and client config
server:
Cloudinary.config({
cloud_name: '*****',
api_key: '******',
api_secret: '********'
});
client:
$.cloudinary.config({
cloud_name: "*******"
});
I tried to upload the image with a form
html form code:
<form>
<input type="file" id="userimage" name="userimage"/>
<button type="submit">Upload</button>
</form>
And this is my this is the event for the template
Template.signup.events({
// Submit signup form event
'submit form': function(e, t){
// Prevent default actions
e.preventDefault();
var file = $('#userimage')[0].files[0];
console.log(file)
Cloudinary.upload(file, function(err, res) {
console.log("Upload Error: " + err);
console.log("Upload Result: " + res);
});
}
});
When i click on upload button nothing happen, I just got an error
error: uncaught TypeError: Failed to execute 'readAsDataURL' on `'FileReader': parameter 1 is not of type 'Blob'.`
What can I do to make this work ?