Answers for "js recursive fetch"

0

js recursive fetch

var doRecursiveRequest = (url, limit = Number.MAX_VALUE) => 
  fetch(url).then(res => {
    if (res.status !== 200 && --limit) {
      return doRecursiveRequest(url, limit);
    } 
    return res.json();
  });

doRecursiveRequest('someURLWithAJSONfile/file.json', 10)
  .then(data => console.log(data))
  .catch(error => console.log(error));
Posted by: Guest on April-21-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language