Skip to content
Advertisement

How to return a Promise in a Javascript async function? Why does Async method not wrap the returned Promise?

I have the following code. My intention is to start a task (which involves a few await calls before it can actually start). When it finishes starting it, I need to update the UI to tell user that the task has started and is waiting for result. Result will come in later so I want to return another Promise so the app knows when to update the UI with returned result:

JavaScript

However the above code does not work. Somehow resultPromise is number (100 after resolved) instead of Promise<number>. TypeScript also recognize startSomethingAsync returning Promise<number> instead of Promise<Promise<number>>.

Why is this happening? Shouldn’t the async method wrap another Promise outside of the returned Promise? How do I achieve what I am trying to do and is it a “good” pattern?


I even tried wrapping it by myself:

JavaScript

The function still returns Promise<number> instead of Promise<Promise<number>>.

Advertisement

Answer

As we discussed in the comments – you have to wrap the resulting promise in a function or an object.

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