I want to make the front end of my application with AngularJS but my RESTFul API is not yet ready to be consumed, have some help returns in JSON?
I want to make the front end of my application with AngularJS but my RESTFul API is not yet ready to be consumed, have some help returns in JSON?
I do not know any API, however you can do it as follows.
$scope.jsonTeste = { "prop": true, "prop2": false }
// Add your json here.
then you change to your request.
$http(url).then(function(retorno) { $scope.jsonTeste = retorno.data } );
As soon as one thing does not depend on the other, it can be completely developed.