Inviare dati in POST in Javascript con fetch
Ormai fetch sta diventando lo standard per le richieste HTTP in Javascript.
In effetti anche io la sto usando al posto di altre librerie.
Oggi vediamo come poter inviare dati in POST.
Useremo JSONPlaceholder per i test.
Ecco il codice:
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
body: JSON.stringify({
title: 'titolo 1',
body: 'contenuto 1',
userId: 1,
}),
headers: {
'Content-type': 'application/json; charset=UTF-8',
},
})
.then((response) => response.json())
.then((json) => console.log(json));
Enjoy!
javascript fetch post
Commentami!