everything lives in the title.
when producing a resource in angular :
myModule.factory('MyResource', ['$resource', function ($resource) {
return $resource('api/MyResource/:id');
}]);
and using in a controller :
MyResource.save({att: att, att2: att2});
the Service sends the data in a json
artifact ahead to the server.
I need to send the data in a x-www-form-urlencoded
shape.
Where ought I modify my code to resolve that ?