I am trying to use angular $http.patch() function to call a API URl As recommended by these answers - 1 and 2 i have set Content-Type headers to application/json in the config.
But still i get the error:
undefined is not a function
I am missing here something? Below is my code where the error is throwing up (Note: I have injected $http in my service and other methods GET,POST,PUT,DELETE are working fine):
deleteAll: function (data) { // custom service function
url = $rootScope.config.api.stack.add_stack;
return $http.patch(url,angular.toJson(data)); // error thrown here in firebug
}
AngularJs version: v1.2.16
Even i tried using the latest angularjs version but still its not woking
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
There is no patch method in $http. Use $http with config
$http({ method: 'PATCH', url: url, data: angular.toJson(data));
UPDATE: Lukas's answer below is more relevant for now.
There is a Method now: AngularJs Docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With