Skip to content
Advertisement

Uncaught in promise while waiting for json response

I’m implementing Promises for the first time in JS and am getting uncaught in promise exception in console log while running the below code.

JavaScript

I am handling the result of the promise return value in the main function as below and am yet getting the uncaught in promise message:

JavaScript

The logic behind the data_present() is to wait till we get a non-empty JSON response at the API endpoint and keep polling it if JSON response is empty.

The exception I’m getting is as follows:

JavaScript

Advertisement

Answer

You might think about having one function to get, parse, and return the JSON from the API (no need to wrap your fetch in a promise as it already returns one), and use your polling function to check the returned data. If it’s correct call one function, otherwise poll getData again. If there’s an API error log that instead.

I’ve used async/await here but the principles are the same.

JavaScript

And here’s the version based on Dai’s answer:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement