06 - Test Post
Overview
Scripts
/******************************
* 2 POST long hand: /one
*****************************/
function postToOne(){
var url = 'http://localhost:3000/test/one';
fetch(url, {
method: 'POST', //1
headers: new Headers({
'Content-Type': 'application/json'
})
}).then(
function(response){ //2
return response.text()
})
.catch(
function(error){ //3
console.error('Error:', error)
})
.then(
function(response){ //4
console.log('Success:', response);
})
}Quick Summary
Test
Last updated