当前位置: 首页 > 工具软件 > Restangular > 使用案例 >

Reading Notes for AngularJS - Restangular

单于钊
2023-12-01

Restangular

Q: Restangular 是什么?

A: Restangular 是专门用来从外部读取数据的AngularJS服务。

Q: Witch was depended by Restangular?

A: Restangular depends on Angular and Lodash (or Underscore).

Q: Restangular 使用需要做的准备工作有哪些?

A:

  • Add Restangular as a dependency to module
angular.module('your-app', ['restangular']);
  • Inject Restangular into your controller
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

 类似资料:

相关阅读

相关文章

相关问答