restangular icon indicating copy to clipboard operation
restangular copied to clipboard

AngularJS service to handle Rest API Restful Resources properly and easily

Results 101 restangular issues
Sort by recently updated
recently updated
newest added

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...

question

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...

documentation upgrade

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...

enhancement
help needed

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...

waiting for infos

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...

waiting for example

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...

help needed
documentation upgrade

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...