Logo

Programming-Idioms

History of Idiom 174 > diff from v18 to v19

Edit summary for version 19 by programming-idioms.org:
[JS] +DocURL

Version 18

2020-04-16, 15:32:55

Version 19

2020-04-20, 13:31:19

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

Idiom #174 Make HTTP POST request

Make a HTTP request with method POST to URL u

Code
fetch(u, {
        method: "POST",
	body: JSON.stringify(data)
})
Code
fetch(u, {
        method: "POST",
	body: JSON.stringify(data)
})
Doc URL
https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch