Guest User

Untitled

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. let data = {
  2. req: this.state.results
  3. }
  4.  
  5. const apiAddress = 'http://localhost:4567/results';
  6. fetch(apiAddress, {
  7. method: 'post',
  8. body: data
  9. }).then( (res) => {
  10. console.log(res);
  11. return res
  12. });
  13.  
  14. Request ------WebKitFormBoundaryBvud3Cn7ZmzAtAXt
  15. Content-Disposition: form-data; name="data"
  16.  
  17. [object Object]
  18. ------WebKitFormBoundaryBvud3Cn7ZmzAtAXt--
Add Comment
Please, Sign In to add comment