I try to get data from database using factory. I have a problem, because I don\'t know how to get data from object which was returned from factory. This is what I received
It's returning a promise, and you need to handle it this way
In your controller add this:
getSomething.getBla().then(function(response) { console.log(response.data) });
for more information: 'http://andyshora.com/promises-angularjs-explained-as-cartoon.html'