Created
April 27, 2013 01:33
-
-
Save mgonto/5471520 to your computer and use it in GitHub Desktop.
Restangular URL Building
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var restangualrSpaces = Restangular.one("accounts",123).one("buildings", 456).all("spaces"); | |
| // This will do ONE get to /accounts/123/buildings/456/spaces | |
| restangularSpaces.getList() | |
| // This will do ONE get to /accounts/123/buildings/456/spaces/789 | |
| Restangular.one("accounts", 123).one("buildings", 456).one("spaces", 789).get() | |
| // POST /accounts/123/buildings/456/spaces | |
| Restangular.one("accounts", 123).one("buildings", 456).all("spaces").post({name: "New Space"}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment