Skip to content
Advertisement

promise not work as expected misunderstanding?

JavaScript

why the data is not logged and promise is logged in the first code?

Advertisement

Answer

This is only to demonstrate how you would get the data out of the promise (don’t do it this way):

JavaScript

The second code is actually a shortened version of:

JavaScript

This is the correct way of chaining Promises.

As you can see, we return the Promise returned by response.json() and then call .then() on it.

The good thing about chaining Promises is that synchronous values (like numbers, strings etc.) get wrapped in a Promise so you can still call .then() on it:

JavaScript

A little background information:

You cannot expect the result of a Promise to be available immediately.

This is why you use .then() – it’s a way of saying “call this function when the value IS available”.

When you console.log(response.json()) you get the Promise object, but not it’s resolved value.

Note: Even if the Promise itself was resolved, response.json() will continue to give you the Promise object itself.

You can still call .then() on it and your function will be called with the resolved value.

I hope this small example shows what I mean:

JavaScript

Output:

enter image description here

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