restangular
restangular copied to clipboard
AngularJS service to handle Rest API Restful Resources properly and easily
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...
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...
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...
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...