Skip to content
Advertisement

Calling Promise.all throws Promise.all called on non-object?

I’m trying to return promises from a promise and run Promise.all like this:

JavaScript

How can I use this kind of Promise.all. I know .then(promises => Promise.all(promises)) works. But, just trying to know why that failed.

This happens with Express res.json too. The error message is different, but I think the reason is same.

For example:

JavaScript

does not work but

JavaScript

does.

Advertisement

Answer

all needs to be called with this referring to Promise (or a subclass), so you’d need:

JavaScript

or

JavaScript

It’s important because all needs to work correctly when inherited in Promise subclasses. For instance, if I do:

JavaScript

…then the promise created by MyPromise.all should be created by MyPromise, not Promise. So all uses this. Example:

JavaScript
JavaScript

Details in the spec. (Which I’m going to have to re-read in order to understand why five calls to MyPromise are made when I call MyPromise.all in the above.)

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