What's the difference between using $resource to make a put request and using $http.put to make a put request? Does it make any difference in the speed or performance?
Asked
Active
Viewed 83 times
0
-
1Not really speed wise, but make the things more testable...FYI its not about the speed its about the code separation – swapnesh Sep 20 '14 at 19:40
1 Answers
0
Check Answers in this stackoverflow thread
$resource is further high-level abstraction of $http. I don't think $resource added significant performance burden on top of $http to get the high-level API .