restangular
restangular copied to clipboard
AngularJS service to handle Rest API Restful Resources properly and easily
It be cool if Restangular gives support for Matrix URIs. Maybe could be created a new Restangular methods "matrixParams" where we can define the matrix URIs. ### Today: ``` javascript...
I expected `plain()` to return the _real_ response, but it returns an object without metadata. (I extract my metadata as described in the [README](https://github.com/mgonto/restangular#my-response-is-actually-wrapped-with-some-metadata-how-do-i-get-the-data-in-that-case).) It also has methods added within...
When I build a service with a configuration that has a response interceptor, my interceptor works for all operations except getList. But when I build my object with restangular, without...
In my app config I've the following default interceptor ``` js RestangularProvider.setBaseUrl("/api/model"); RestangularProvider.addResponseInterceptor(function (data, operation, what, url, response, deferred) { var newResponse = response; if (newResponse.data.data) return newResponse.data.data; return newResponse;...
stripRestangular(element) strips out the selfLink property of my element prior to executing a PUT. Unfortunately, my server guys require that all PUTs contain the href property. How do you recommend...
I want to override the .post() method of a Restangularized object so that I can write a debug mode for the app I'm working on. My reading led me to...
It would be nice to see how to rewrite a url via an intercept. Digging through the source code isn't a very fun way to go about it.
Hello guys, I'd set up a fake backend with https://jsonstub.com. Then i try to get a response using restangular but it wont work. Maybe you guys can help me! (I...
Resolves #858 and #413
With details how issue should look like, what kind of snippets should be included and in which cases plunkr is needed. There are lots of abandoned issues with no details...