gpt4 book ai didi

angularjs - 如何使用 $q.all 的 AngularJS 哈希选项?

转载 作者:行者123 更新时间:2023-12-03 18:24:19 25 4
gpt4 key购买 nike

我环顾四周,没有发现任何东西可以解释如何使用它。该文件指出:

Returns a single promise that will be resolved with an array/hash of values, each value corresponding to the promise at the same index/key in the promises array/hash. If any of the promises is resolved with a rejection, this resulting promise will be rejected with the same rejection value.



但是没有例子。

有没有人有使用 key/hash 方法的例子?

最佳答案

似乎没有很多这样的例子,但它应该像这样工作:

// as an object
$q.all({
one: $http.get('/url1'),
two: $http.get('/url2')
}).then(function (results) {
var data1 = results.one;
var data2 = results.two;
});

// as an array
$q.all([
$http.get('/url1'),
$http.get('/url2')
]).then(function (results) {
var data1 = results[0];
var data2 = results[1];
});

关于angularjs - 如何使用 $q.all 的 AngularJS 哈希选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26776497/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com