AngularJS:在单个函数中等待多个异步调用

时间:2020-04-22 06:22:16

标签: javascript angularjs asynchronous promise angular-promise

我有一个AngularJS函数,在其中我进行了2次异步调用。这两个调用不相关,但是仅当两个调用都完成并且结果存储在return var中时,函数才应返回。

我尝试了不同的解决方案,并最终使用了以下所示的解决方案。但是等待第一个完成时速度很慢

        function myAngularfunction(a, b) {
        var defer = $q.defer();
        var test= {
            a: "",
            b: ""
        };

        msGraph.getClient()
            .then((client) => {
                // First Async call
                client 
                .api("https://graph.microsoft.com/v1.0/")
                .get()
                 .then((groupResponse) => {
                        var result = groupResponse;
                        test.a= result.displayName;

                        msGraph.getClient()
                            .then((client) => {
                                // Second Async call
                                client
                                    .api("https://graph.microsoft.com/v1.0/teams/")
                                    .get()
                                    .then((groupResponse) => {
                                        var result = groupResponse;
                                        test.b= result.displayName;
                                        defer.resolve(test);
                                    });

                            });

                    });
            });


        return defer.promise;
    }

调用函数

myAngularfunction(a, b).then(function(obj)

如何在不嵌套的情况下等待同一个函数中的两个调用?或不等待第一个完成就呼叫下一个。

2 个答案:

答案 0 :(得分:0)

也许您可以尝试$ ww,例如:$ .when(functiton1,function2).done(()=> {})。但是您需要在function1和function 2中添加deffered。

答案 1 :(得分:0)

  1. 我认为您的情况最适合使用$q.all([promise1, promise2, promise3]).then()语法。
  2. 您多次致电msGraph.getClient(),我认为可以避免。