【发布时间】:2014-01-02 19:50:01
【问题描述】:
如标题所述,当我用两个承诺调用$q.all() 时,我只收到第一个结果。这就是我正在做的:
$q.all(resouce1.getAll(), resource2.getAll()).then(function (res1, res2) {
// only output one object which contains the result from the first promise
// if I swap the two promise, the result is still the first one.
// can't really get both results at the same time
console.log(arguments);
});
感谢任何帮助。
【问题讨论】: