Skip to content
Advertisement

ajax: weird “boundary” and “content-disposition” names on post sent (no jquery!)

i know how to send post forms and process it server side with php… something like

JavaScript

i am just developing it on my php server… the actual form has many more inputs and later i have to flash into an embedded system, so to make it more efficient (memory usage, responsiveness, etc) i decided to do it with AJAX…

to simplify things, i read that you can create a FormData directly from <form> and pass it directly to send() method, something like

JavaScript

however the form data i recieve with php is something with weird format like

JavaScript

it seems like php uses parse_str() function internally to convert received request from querystring format to store in $_POST array, but as the request seem chunked instead it fails, i tried by changing Content-Type in XHR and <form> but nothing changes

the question: using just ajax and plain javascript, how can i get rid all of those ‘boundaries’ and ‘disposition’ chunked things and send a normal querystring format POST, parsed by php like a normal array like [“fName”=>”John”, “lName”=>”Doe”] ???

… i had searched some help or documentation on internet but i hadn’t found anything about this 🙁 … thanks in advance

Advertisement

Answer

@atesin: i am yourself from the future, bringing you the answer you searched for

you can use URLSearchParams() before to transform FormData into urlencoded format, this way

JavaScript

this answer was taken from here: FormData change from multipart/form-data to form-urlencoded?

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement