Q: Restangular 是什么?
A: Restangular 是专门用来从外部读取数据的AngularJS服务。
Q: Witch was depended by Restangular?
A: Restangular depends on Angular and Lodash (or Underscore).
Q: Restangular 使用需要做的准备工作有哪些?
A:
angular.module('your-app', ['restangular']);
angular.module('your-app').controller('MainCtrl', function($scope, Restangular) {
// ...
});
Q: Restangular 与后台进行数据交互的方式?
A:
方法 | 请求方式 |
---|---|
.getlist() | GET |
.get() | GET |
.customGET() | GET |
.put() | PUT |
.save() | POST/PUT |
.post() | POST |
customPOST() | POST |
.remove() | DELETE |
具体方法的使用请参考:
https://github.com/mgonto/restangular