Re: [whatwg/fetch] Uploading a Request made from a ReadableStream body (#425)

    var    requestOptions = {
          mode: 'no-cors',
          method: 'POST',
          headers: { 'Content-Type': 'application/json' },
          body: JSON.stringify(jsonObj)
        };

fetch(requestUrl, requestOptions).then(....

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/pull/425#issuecomment-771263393

Received on Tuesday, 2 February 2021 00:43:49 UTC