JSON Server PUT
by Jacob King
JavaScript
fetch('http://localhost:3000/users/1', {
method: 'PUT',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ id: 1, name: 'Alice Smith', email: '[email protected]' })
})
.then(r => r.json())
.then(updated => console.log(updated));