How to pass body payload to angular $resource DELETE call
问题 I have standard angular $resource configured as such angular.module('client.resources') .factory('ProjectSubjectResource',['$resource', function ($resource) { release: { method: 'DELETE', isArray: false } }); }]); and I am calling this method as ProjectSubjectResource.release({projectId: projectId, subjectId: 0},{ subjectIds: subjectIdArray}) where subjectIdArray is array of objects: [{subject1: 213123}, {subject2: 3131}] However, body of request does not contain that array. I suspect that