0

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?

  • 1
    Not 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 Answers1

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 .

Community
  • 1
  • 1
erandac
  • 575
  • 5
  • 8