0
I need to create a loadbar and leaves it active until the function is finished. I can do this at the angle?
$scope.getPosts = function () {
$http({
method: 'POST',
url: '/getPosts',
}).then(function(response) {
return response.data;
}, function(error) {
console.log(error);
});
};
As well as an Oader?
– Felipe Duarte
@Felipeduarte, a Loadbar.
– Antonio Braz Finizola
I have already answered something similar, instead of bridging on each route, just interlink on the call https://answall.com/questions/225936/qual-a-forma-de-implementar-um-loading-bar
– Felipe Duarte