fetch-examples icon indicating copy to clipboard operation
fetch-examples copied to clipboard

A repository of Fetch examples. See https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API for the corresponding documentation.

Results 4 fetch-examples issues
Sort by recently updated
recently updated
newest added

I clone this projects and try run _basic-fetch_ example, as my first test, Firefox returns "NetworkError when attempting to fetch resource." Similar error with Chromium : "Error: Failed to fetch"...

https://github.com/mdn/fetch-examples/blob/febae5dee9144c38cdc680c9c6baa8aec09a4793/fetch-json/index.html#L30

https://github.com/mdn/fetch-examples/blob/7a20c41cb1d65c5e8ae9eae3270caa2dadadf12e/fetch-with-init-then-request/index.html#L25-L36 That example is setting a `Content-Type` request header for a `GET` request, which serves no real purpose since the request has no request body/payload. I guess a simple fix...