Return Data From Http Inside Function
I'm using this and this reference, to return data from an http-request inside a function: function getdetails(id) { var datafordetails = { data1: {
Solution 1:
The output you are getting is nothing but a promise object which has been returned by the $http.get
method. Basically you need to put .then
function over getdetails2
function for getting data from the promise object when it resolve
/reject
.
Code
getdetails2('12345').then(function(data){ //success callback//you will get data here in data parameter of function,var testing = data;
}, function(error){ //error callbackconsole.log(error)
})
Post a Comment for "Return Data From Http Inside Function"