Restangular - Get object w/id, edit object, update object Restangular - Get object w/id, edit object, update object angularjs angularjs

Restangular - Get object w/id, edit object, update object


Alright, found it, thanks to this question:

#In the beginning:Restangular.one("content", 2).get().then(function(c){  $scope.content = c})#Elsewhere:$scope.content.name = "Chunky Bacon"#Finally:$scope.content.put()