-
-
Notifications
You must be signed in to change notification settings - Fork 105
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
attachFieldsToBody
makes request.file()
return undefined.
#472
Comments
Would you like to send a PR? |
If you want the name of the file, you should be using attachFieldsToBody: true We could make a PR where we pass file fields directly to the body |
I'm using Thank you for the PR, however, I'll be looking forward to it being merged. |
does any body knows how can i access to the file name with attachFieldsToBody: "keyValues" option? |
You can only send it as a different field currently |
do you know if there is an open pr for this? i don't know if i can call this an issue |
what about this ?
|
Prerequisites
Fastify version
4.21.0
Plugin version
7.7.3
Node.js version
20.3.1
Operating system
Windows
Operating system version (i.e. 20.04, 11.3, 10)
10.0.19044 Build 19044
Description
I'm not entirely sure if this is an intentional change, but it's certainly one that I don't personally agree with. As far as I'm aware and have explored, there is no possible way to get the name of the file as
request.body.(field where the file should be)
provides only the buffer and nothing else.Steps to Reproduce
Expected Behavior
Instead of returning
no file
, it should return the data of the sent file without requiring the usage ofrequest.body.(field where the file should be)
.The text was updated successfully, but these errors were encountered: