restangular
restangular copied to clipboard
AngularJS service to handle Rest API Restful Resources properly and easily
I'm serving my Angular app from localhost:8000, with django running a tastypie backend on localhost:8888. I'm simulating a mobile app, so I have no need or desire to have django...
Hi, Is it possible to use restangular with ngLodash. I tried using it but its giving me an error? Uncaught Error: [$injector:modulerr] Thanks!!
Hi, I'm using Restangular in a project where I have a Tag resource, and each Tag resource has an array of TagInstances. I think I need to manually Restangularize the...
Hi, As title, my api still return data or save data into database when it already timeout. I try 2 method also fail with 1 ms. ``` js 1st method...
I didn't find any way to use a custom HTTP method with Restangular. This would be very useful for many use cases. Example of HTTP methods not implemented: - COPY...
Hi. Basically, I have situation where I have to know if object passed to the function is restangularized or not, it might be a collection or a single element. I...
I am using restangular as: Restangular.all('config/approveDynamic/'+serviceCode).getList({cluster:cluster}).then(function(result) { //success code },function(errorResult){ //error code }); I want to show a header value in error code area. The value is visible in network...
Is there a simple way to tell restangular that a certain field is a collection of resources? For instance in my app I can do: ``` javascript GET to: /api/courses/123...
I read all README but found nothing about how to test restangular promisses. I also search across the web to find some good examples of testing, but there are so...
What is the right way to add more data in to an existing collection with Restanglar? Currently on page load I am performing: ``` javascript app.factory('Post', ['Restangular', function(Restangular) { return...