my method that is in my service is like this 

 tutorial.createtutorial = function(tutorial){
    var defer = $q.defer();

    $http.post($rootScope.endPoint + '/api/v1/follower', tutorial)
    .success(function(res){
        defer.resolve(res);
    })
    .error(function(err, status){
        defer.reject(err);
    })

    return defer.promise;
  }


and how can i get the passed object into php script so that i can insert it 
into database

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to