down votefavorite 
<http://stackoverflow.com/questions/37080509/send-by-post-with-restangular#>

I'm trying to send a json by post with restangular but this don't return me 
anything.

Code:

$scope.userPost = {

        title: 'foo',
        body: 'bar',
        userId: 1
    }

    $scope.registerUser=function(){
        $scope.people = Restangular.all('post').post($scope.userPost);
        console.log($scope.people);
    }

Usually I use like this with ajax, it return me a json:

$.ajax('http://jsonplaceholder.typicode.com/posts', {
  method: 'POST',
  data: {
    title: 'foo',
    body: 'bar',
    userId: 1
  }}).then(function(data) {
  console.log(data);});

Any ideas ?

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to