Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const object = {
- id: 3,
- content: "the content!!!",
- nef: 23//useless data
- }
- const options = {
- method: 'POST',
- headers: {
- 'Content-type':'application/json'
- },
- body: JSON.stringify(object)
- };
- fetch('http://localhost:8080/postGreet', options);
Add Comment
Please, Sign In to add comment