Search code examples
javascripthttprequestservice-workerput

How would I consume the body of a put request from a web worker


I want to consume data sent through a put request in a web worker. How would I do so?

this the part in my code where I am trying to handle the put request

if (method === 'put') {
    var request = event.request;
    //how would I turn the request object into an array buffer?
}

Solution

  • You can consume the request's body as an array buffer using the .arrayBuffer() method.