Avoid using the call of web service with AngularJS $http inside a loop | CAST Appmarq

Avoid using the call of web service with AngularJS $http inside a loop


Rule Definition
When designing web service to get/put/post data, you want to make sure that you minimize the number of calls between the client application and web service server. By minimizing the number of calls, you improve application speed, reduce communications overhead (why send three request when you can do it by one), and reduce network traffic.

Remediation
N/A

Violation Code Sample
factory('UserPicture',function($http, $q){
		    return {
		        updatePicture : function(url, requestData) {
				for (i = 0; i < options.length; i += 1) {
		          $http.post(
		        	url,
		        	requestData,
		        	{ headers: { 'Content-Type': undefined},
		        	  transformRequest: angular.identity
		        	}
		          ).success(
		        		function(responseData) {
		        			//Passing data to deferred's resolve function on successful completion
		        			deferred.resolve(responseData);
		        		}
		          ).error(
		        		function() {		   
		        			deferred.reject("An error occured while fetching items");
		        		}
		          );
				}				  
		          return deferred.promise;
		        }
				}});

Related Technologies

Health Factor

  Efficiency


Technical Criterion
CWE-1050 - Excessive Platform Resource Consumption within a Loop

About CAST Appmarq

CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.

Benchmark Statistics

Global Compliance

99.30%

Total Violations
4
Total Opportunities
574
Average Violations / App.
0.15
The compliance score represents 1 minus the ratio between the number of times a rule has been violated compared to the number of opportunities in a set of applications that the rule could have been violated.

Industry Insights

Financial Services

99.23%

Manufacturing

98.75%

Don't Know

96.97%