You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
The Promises/A+ promise specification discusses how promises assimilate another promise:
$http.get(...).then(function(result){returnexpernalApi(myObj,result.data);// a Parse/jQuery/Q/Native promise API});
If the externalAPI call mutates myObj and a watcher exists for it a digest will not run, however it could be beneficial to schedule a digest when the promise itself resolves rather than when the then is run.