Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. fetch('http://localhost/PHP/api/cities.php?search_query=' + cityInput.value)
  2.                         .then(response => response.json())
  3.                         .then(json => { if(json.ok) { createSearchResult(json.data.cities, json.data.restResults) }; isRequestPending = false; })
  4.                         .catch(e => openModal(e.message));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement