我将如何使用来自网络工作者的放置请求的主体
How would I consume the body of a put request from a web worker
我想在 Web Worker 中使用通过放置请求发送的数据。我该怎么做?
这是我尝试处理放置请求的代码部分
if (method === 'put') {
var request = event.request;
//how would I turn the request object into an array buffer?
}
您可以消费 request's body as an array buffer using the .arrayBuffer()
method.
我想在 Web Worker 中使用通过放置请求发送的数据。我该怎么做?
这是我尝试处理放置请求的代码部分
if (method === 'put') {
var request = event.request;
//how would I turn the request object into an array buffer?
}
您可以消费 request's body as an array buffer using the .arrayBuffer()
method.