博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angular中处理多个异步请求的方法汇总
阅读量:5151 次
发布时间:2019-06-13

本文共 1444 字,大约阅读时间需要 4 分钟。

在实际业务中经常需要等待几个请求完成后再进行下一步操作。但angularjs中$http不支持同步的请求。

解决方法一:

$http多层嵌套 $http.get('url1').success(function (d1) {            $http.get('url2').success(function (d2) {                //处理逻辑            });        });

解决方法二:

then中的方法会按顺序执行。

var app = angular.module('app',[]);    app.controller('promiseControl',function($scope,$q,$http) {        function getJson(url){            var deferred = $q.defer();            $http.get(url)                .success(function(d){                    d = parseInt(d);                    console.log(d);                    deferred.resolve(d);                });            return deferred.promise;        }      getJson('json1.txt').then(function(){            return getJson('json2.txt');        }).then(function(){            return getJson('json1.txt');        }).then(function(){            return getJson('json2.txt');        }).then(function(d){            console.log('end');        });    });

解决方法三:

$q.all方法第一个参数可以是数组(对象)。在第一参数中内容都执行完后就会执行then中方法。第一个参数的方法的所有返回值会以数组(对象)的形式传入。

var app = angular.module('app',[]);    app.controller('promiseControl',function($scope,$q,$http) {        $q.all({first: $http.get('json1.txt'),second: $http.get('json2.txt')}).then(function(arr){            console.log(arr);            angular.forEach(arr,function(d){                console.log(d);                console.log(d.data);            })        });    });

 

转载于:https://www.cnblogs.com/songdongdong/p/6565617.html

你可能感兴趣的文章
noi.ac 第五场第六场
查看>>
01背包
查看>>
Openscada远程配置
查看>>
博客盈利请先考虑这七点
查看>>
使用 XMLBeans 进行编程
查看>>
XML 解析---dom解析和sax解析
查看>>
Gamescom2014:中国游戏公司37.com进军西方海外市场
查看>>
编程异常——假设你报createSQLQuery is not valid without active transaction,...
查看>>
ios新开发语言swift 新手教程
查看>>
有引用外部jar包时(J2SE)生成jar文件
查看>>
写接口请求类型为get或post的时,参数定义的几种方式,如何用注解(原创)--雷锋...
查看>>
什么是 开发环境、测试环境、生产环境、UAT环境、仿真环境
查看>>
科研需要兴趣和自信
查看>>
iOS Development
查看>>
mysql
查看>>
1分钟搞定Android开发智能提示问题xml文件一并搞定
查看>>
4分钟学会网页样式
查看>>
Java核心技术点之注解
查看>>
【OpenJ_Bailian - 2287】Tian Ji -- The Horse Racing (贪心)
查看>>
循环引用 。 @class
查看>>