我不相信有什么区别。
Angular source code:
angular.module('ngResource',['ng']). factory('$resource',['$http','$parse',function($http,$parse) { var DEFAULT_ACTIONS = { 'get': {method:'GET'},'save': {method:'POST'},'query': {method:'GET',isArray:true},'remove': {method:'DELETE'},'delete': {method:'DELETE'}
从埃里克W.(他的编辑被拒绝,我可以批准它):AngularJS by Green& Seshadri警告,删除方法可能无法在IE中工作,除非使用括号符号(myResource [删除]()),因为删除是保留字。因此,您可能需要考虑使用remove方法。