Answers for "what post method does"

0

post method

fetch('',{
	method:'POST',
  	headers:{
    	'content-type': 'application/json'
    },
  	body:JSON.stringify(users)
})
.then(res=> res.json())
.then(data => console.log(data))
Posted by: Guest on October-26-2021

Code answers related to "what post method does"

Code answers related to "Javascript"

Browse Popular Code Answers by Language