sstur / nbit

A zero-dependency, strongly-typed web framework for Bun, Node and Cloudflare workers
65 stars 4 forks source link

Post multipart/form-data #20

Open svnty opened 5 months ago

svnty commented 5 months ago

Hello,

How can I send an image to the server? I have a form that sends multipart/form-data but I can't figure out how to accept form data in nbit. There is a request.arrayBuffer() method which works when the only data being sent is an image but since my form has multiple parts the buffer is corrupted. What do I do when the data type isn't json?

You can view the minimal version of what I have created here