Created
June 18, 2018 05:48
-
-
Save drucoder/a1d8576e1d15be38aae5bac3f914b874 to your computer and use it in GitHub Desktop.
Spring Boot REST: тестироем rest методы
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// GET all | |
fetch('/message/').then(response => response.json().then(console.log)) | |
// GET one | |
fetch('/message/2').then(response => response.json().then(console.log)) | |
// POST add new one | |
fetch( | |
'/message', | |
{ | |
method: 'POST', | |
headers: { 'Content-Type': 'application/json' }, | |
body: JSON.stringify({ text: 'Fourth message (4)', id: 10 }) | |
} | |
).then(result => result.json().then(console.log)) | |
// PUT save existing | |
fetch( | |
'/message/4', | |
{ | |
method: 'PUT', | |
headers: { 'Content-Type': 'application/json' }, | |
body: JSON.stringify({ text: 'Fourth message', id: 10 }) | |
} | |
).then(result => result.json().then(console.log)); | |
// DELETE existing | |
fetch('/message/4', { method: 'DELETE' }).then(result => console.log(result)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment