File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 * The returned resource object has action methods which provide high-level behaviors without
1919 * the need to interact with the low level {@link ng.$http $http} service.
2020 *
21+ * # Installation
22+ * To use $resource make sure you have included the `angular-resource.js` that comes in Angular
23+ * package. You also can find this stuff in {@link http://code.angularjs.org/ code.angularjs.org}.
24+ * Finally load the module in your application:
25+ *
26+ * angular.module('app', ['ngResource']);
27+ *
28+ * and you ready to get started!
29+ *
2130 * @param {string } url A parameterized URL template with parameters prefixed by `:` as in
2231 * `/user/:username`. If you are using a URL with a port number (e.g.
2332 * `http://example.com:8080/api`), you'll need to escape the colon character before the port
You can’t perform that action at this time.
0 commit comments