gc-http-factory
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://gocardless.com/blog/gc-http-factory/
- 软件文档: https://github.com/gocardless/gc-http-factory
软件介绍
gc-http-factory 是一个 AngularJS 的扩展,提供更便利的 API 写法,例如常规我们定义一个 Service 的方法如下:
angular.app('app', []).factory('UsersService', function($http) {
function findOne(id) {
return $http.get('/api/users/' + id);
};
function findAll() {
return $http.get('/api/users');
};
function create() {
return $http.post('/api/users');
};
return {
findOne: findOne,
findAll: findAll,
create: create
};
});
而使用 gc-http-factory 后可以这样写:
angular.app('app', ['gc.httpFactory']).factory('UsersService', function(HttpFactory) {
return HttpFactory.create({
url: '/api/users/:id'
}, {
findOne: { method: 'GET' },
findAll: { method: 'GET' },
create: { method: 'POST' }
});
});
调用方法:
UsersService.findAll(); //=> GET /api/users
UsersService.findOne({
params: { id: 2 }
}); //=> GET /api/users/2
UsersService.create({
data: { name: 'Jack' }
}); //=> POST /api/users with { name: 'Jack' } as data
Principles of Object-Oriented JavaScript
Nicholas C. Zakas / No Starch Press / 2014-2 / USD 24.95
If you've used a more traditional object-oriented language, such as C++ or Java, JavaScript probably doesn't seem object-oriented at all. It has no concept of classes, and you don't even need to defin......一起来看看 《Principles of Object-Oriented JavaScript》 这本书的介绍吧!
