angular http async false

Solutions on MaxInterview for angular http async false by the best coders in the world

showing results for - "angular http async false"
Julieta
21 May 2020
1// add async:false to config like so to make http call blocking
2return $http({
3            url : 'https://mywebsite.com/api_whatever.php'
4            method : 'GET',
5            async : false
6        }).success(function(data) {;
7
8        };