I\'m in the process of writing a simple library application to get ready for a larger project with AngularJS. After reading a lot online about using $resource t
$resource
I didn´t actually try this, but wouldn´t it be enough to tell the Ressource how to handle the $save request?
$resource('http://mywebserver\\:1337/books/:bookId', { bookId: '@bookId' }, {save: {method: 'POST'});