restangular icon indicating copy to clipboard operation
restangular copied to clipboard

AngularJS service to handle Rest API Restful Resources properly and easily

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

I've seen multiple posts about this (#139, #413, #585, #1254, #1381), but none of those provide a concrete solution. I think it really stems from the fact that some ReST...

This PR is a rebase of #893 (from restangular 1.4.0 to ~1.5.2) and resolves issue #891

I have taken a quick look at how much effort it would be to remove lodash dependency, there are 139 uses of a lodash function in restangular, from those, all...

enhancement
question

To wrap object as a angular promise i can use $q.when ``` javascript var _data;//lazy or eager strategy function getData(){ if (!this._data){ _data = $http.get('data.json'); }else{ _data = $q.when(_data); }...

It would be handy to have the ability to call a refresh function on an object to perform the exact same operation on the rectangular variable, without the need to...

I was going through the ReadMe and I found **getList(subElement, [queryParams, headers]):** Gets a nested resource. subElement is mandatory. It's a string with the name of the nested resource (and...

Hello, so I have a modularized REST API, and so far Restangular has been amazing at helping with handling caching. What I am looking at now is a more generic...

Hey Everyone, Sorry for not answering most of the issues lately, I've been working in creating a new version of Restangular. It'll be Restangular 2.0 and the idea is that...

Think for Restangular 2.0

restanglar v1.3.1 ``` $scope.data = Restangular.one("collection", "1245").get().$object; // I got back { title: "some title" } $scope.data.title = "title 123"; $scope.data.put(); ``` It will not put the changes. But if...

bug

Hello everyone, I discovered Restangular a month ago and I really enjoy using it. Nevertheless, I feel like something is missing in the way I use it. For instance, each...