File tree 1 file changed +9
-0
lines changed
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 18
18
* The returned resource object has action methods which provide high-level behaviors without
19
19
* the need to interact with the low level {@link ng.$http $http} service.
20
20
*
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
+ *
21
30
* @param {string } url A parameterized URL template with parameters prefixed by `:` as in
22
31
* `/user/:username`. If you are using a URL with a port number (e.g.
23
32
* `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