admin管理员组

文章数量:1346076

I have an asynchronous function that returns a promise. The operation should only be performed once. I want all callers of that function to get back the same Promise, but I don't want .catch()es of one caller to affect another caller. Can I clone a promise, or implement this in another way?

I have an asynchronous function that returns a promise. The operation should only be performed once. I want all callers of that function to get back the same Promise, but I don't want .catch()es of one caller to affect another caller. Can I clone a promise, or implement this in another way?

Share Improve this question asked May 6, 2016 at 2:31 apscienceapscience 7,28311 gold badges57 silver badges89 bronze badges 1
  • Possible duplicate of Memoization of promise-based function? – Bergi Commented May 6, 2016 at 2:37
Add a ment  | 

1 Answer 1

Reset to default 9

but I don't want .catch()es of one caller to affect another caller.

They never1 do (unless you've chained the callbacks, which you don't).

I want all callers of that function to get back the same Promise

Just do it. Promises are immutable values2.

Can I clone a promise?

If you really need3 a distinct object that will follow the original promise (fulfill when it fulfills or reject when it rejects), you can use the then method without arguments:

var clone = promise.then();
console.assert(clone !== promise);

1: Assuming you use a proper promise library. I think I can remember a case of a library (old jQuery?) where then callback results changed the state of the promise.
2: In their resolving behaviour, at least. Every promise is still just an object of course.
3: You don't. You really should not. I'm just answering the title question, but you should stop doing weird stuff.

本文标签: javascriptCan I clone a PromiseStack Overflow