Use Readablestream With Response To Return Html From Fetch Event Of Service Worker
I'm trying to return a stream for the HTML response in a service worker but the browser does not seem to be able to parse it (I'm using chrome for this test). So, this one works (i
Solution 1:
For some reason it doesn't work when you don't lock stream with ReadableStream.getReader
Also when you pass ReadableStream
to Response
ctor, the Response.text method doesn't process the stream and it returns toString()
of an object instead.
constcreateStream = () => newReadableStream({
start(controller) {
controller.enqueue("<h1 style=\"background: yellow;\">Yellow!</h1>")
controller.close()
}
})
const firstStream = createStream().getReader();
const secondStream = createStream().getReader();
newResponse(firstStream, {
headers: {
"Content-Type": "text/html"
}
})
.text()
.then(text => {
console.log(text);
});
secondStream.read()
.then(({
value
}) => {
returnnewResponse(value, {
headers: {
"Content-Type": "text/html"
}
});
})
.then(response => response.text())
.then(text => {
console.log(text);
});
Post a Comment for "Use Readablestream With Response To Return Html From Fetch Event Of Service Worker"