Prevent ngResource from requiring a returned item on $save
问题 It seems that when I $save or use a custom $update (put or post) method on my resource that it expects the newly posted document to be returned. I don't want to return anything from my save/post ops but an ok/200/error type of statement but doing so causes the item to be blank as soon as saved. var item = Things.get({ id: $route.current.params.id }, function() { console.log(item); // Item is ok }); var item = Things.get({ id: $route.current.params.id }, function() { console.log(item); // Item