MarcoB89

Results 4 comments of MarcoB89

We are in the same situation, any updates? Is there a workaround to avoid this problem?

> Here is a temporary solution: > > ```ts > const formData= new FormData(); > formData.append("val1", "val1"); > formData.append("blob", blob); > const req = new Request(uploadUrl, { > method: "POST",...

Any updates? This bug caused a complete reengineering of our solution. It's not possible do a multi-part POST request for uploading file!

Any updates? We are in a similar situation, we want to stream HTTP responses to the client, tipically for download large files. It seems the response becomes available all-at-once to...