Hi! im trying to consume a restful api, im able to read, and delete. but im 
not being able to post any data. 

The thing is that im suppose to post a title and a url, but the server 
answer me "title cannot be null".
Can someone help me please?

Thanks.

$scope.post = {
title: '',
url: 'http://'
};


$scope.submitPost = function() {
Post.save($scope.post, function(data) {
$scope.posts.push(data)
});
};

-- 
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 http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to