-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multer middleware not working #25
Comments
Has this been fixed? I'm gonna need Multer as well for a task. |
Hey @karlpokus, I decided to add my own implementation using the binary EJSON datatype and transfer over the DDP connection instead. Ended up with a faster transfer as the initial connection was already established since the beginning. |
@Svenskunganka Sounds cool. I'm gonna need to parse an e-mail with .csv attached so DDP is not an option for me. |
Hi @Svenskunganka I actually solved this I think. This works.
|
@karlpokus thanks for coming back and writing down your solution, you save the day! |
@Taakn Happy to help. |
I'm unable to get multer working with Picker either. I've tried multiple variations. This was working at one point. Prior to Meteor 1.3 maybe? Is this still a know and open issue? |
@ccuilla It's open alright. Can't remember what meteor version I was running. Sorry. |
I had the same problem and there is no solution on the internet, so I tried to figure it out and finally I realised that the problem is from |
I have an issue trying to implement a binary upload route using
multer
as a middleware.Here's my current code:
And the output of that
console.log(req.file)
isundefined
. I've also logged the wholereq
object and cannot file anyfile
property in it.The text was updated successfully, but these errors were encountered: