Guest User

Untitled

a guest
May 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. http://localhost:3000/getHistory
  2.  
  3. // Call getHistory in server.js
  4. fetch(`http://localhost:3000/getHistory?file=${file}`)
  5. .then((data) => data.json())
  6. .then(function(data) {
  7. this.resizeImage(data.file);
  8. })
  9. .catch(function(error) {
  10. console.log(error);
  11. });
Add Comment
Please, Sign In to add comment