Open
Description
Progress indicators for file uploads (specifically indicators for Request
objects) would be a great example. At the time of writing, this doesn't seem possible yet, and the Request docs do indicate ReadableStream
may be used as a request body
String body: sent
// Post "hello" body. Browser sends and server responds with what it receives.
fetch(
new Request('https://dev.anthum.com/post-test/', {
body: 'hello',
headers: {
'content-type': 'text/plain'
},
method: 'POST'
})
)
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error(error));
ReadableStream body: not sent
This may just be bad experimental code on my part or the browsers do not yet support it.
const stream = new ReadableStream({
start(controller) {
controller.enqueue(new TextEncoder().encode('hello'));
controller.close();
}
});
// Post ReadableStream body. Browser doesn't seem to send, and server responds with nothing received
fetch(
new Request('https://dev.anthum.com/post-test/', {
body: stream,
headers: {
'content-type': 'text/plain'
},
method: 'POST'
})
)
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error(error));