ngx-restangular icon indicating copy to clipboard operation
ngx-restangular copied to clipboard

Restangular for Angular 2 and higher versions

Results 39 ngx-restangular issues
Sort by recently updated
recently updated
newest added

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...

dependencies

In this commit: https://github.com/2muchcoffeecom/ngx-restangular/commit/67871acc4317927757339c7059870df91f53e6d6 ngx-restangular was changed from using `HttpClient`'s `request` method to the `handle` method of `HttpBackend` which bypasses the ability to use Angular's HTTP interceptors. I looked around...

Hi, new to ngx-restangular would like to ask, can we set the default headers (etc: `{authorization: 'Bearer xxx'}`) after user login? for the example provide in `README.md`, it initial default...

The ability to perform GET-as-POST using the overrideMethods functionality of restangular is very useful; however it's only implemented partially. One of the common use cases with GET as POST is...

We had an issue where we were using lodash 3.x and were getting tricky to debug errors. >ERROR TypeError: “Object(...) is not a function” As a long shot, we upgraded...

If you have HTTP Interceptors from Angular, https://angular.io/api/common/http/HttpInterceptor, then this will be ignored from this ngx-restangular. So it would be nice if someone could integrate this. src/app/app.module.ts ``` export function...

Unable to pass a delete param in the body. I'm trying with cutomDelete and customOperation. Trying to set the header content-type with application/json, still don't working. yyyyyy.customDELETE(inter.id.toString(),{},{},inter).subscribe(.....

discussion

Hey, according to spec there must **not** be any body, when the server replies with HTTP 204. And in fact, chrome cancels a request, when there is data. This breaks...

discussion

I need to use in my application a custom header in response to a getList (header is totalElements). It is correctly set by the backend, but of course in restangular...

code: `this.restangular.one("source").withHttpConfig({timeout: 5000});` The request is more than 5 seconds and there is no callback in the error interceptor.