-
Notifications
You must be signed in to change notification settings - Fork 212
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
File event has not been triggered with nuxt 3 #352
Comments
Perhaps the request is using different headers for files. Beyond that, there's not much I can suggest. You'd have to ask on the nuxt project issue tracker or wherever. |
Yea it was some different implementation on frontend thx, is there a way to check if the busboy found a error on receveing the file? Like a error listener event? Or I would have to send the size of file on body of the request and compare with size of file written after some time? Im saying after some time , because i tried to stop a request in the middle and didnt trigger the finish event listener. |
There would be no error unless you closed the busboy instance early for example. If you want to handle either case, whether the form parsing was successful or not, you should be listening for the |
But like if the latency or there is some package loss in the middle of uploading the close event would catch that moment? |
Measuring latency is outside of the scope of this module. Packet loss is only a thing if you're using an unreliable transport, which is unlikely, even with something like HTTP/3. A These events follow that of typical node.js streams. |
My code is like this and I already used bus boy on nuxt 2 and express, but as you can see it on the screenshot the file event doesnt trigg
The text was updated successfully, but these errors were encountered: