Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

angular http async false

// add async:false to config like so to make http call blocking
return $http({
            url : 'https://mywebsite.com/api_whatever.php'
            method : 'GET',
            async : false
        }).success(function(data) {;

        };
 
PREVIOUS NEXT
Tagged: #angular #http #async #false
ADD COMMENT
Topic
Name
8+7 =