请帮助我考虑在AngularJS中放置资源(服务)特定业务逻辑的位置。我觉得在我的资源上创建一些类似模型的抽象应该很棒,但我不确定如何。
API调用:
> GET /customers/1
< {"first_name": "John", "last_name": "Doe", "created_at": '1342915200'}
资源(在CoffeScript中):
services = angular.module('billing.services', ['ngResource'])
services.factory('CustomerService', ['$resource', ($resource) ->
$resource('http://virtualmaster.apiary.io/customers/:id', {}, {
all: {method: 'GET', params: {}},
find: {method: 'GET', params: {}, isArray: true}
})
])
我想做点什么:
c = CustomerService.get(1)
c.full_name()
=> "John Doe"
c.months_since_creation()
=> '1 month'
非常感谢任何想法。 亚当
答案 0 :(得分:18)
需要在域对象的实例上调用的逻辑的最佳位置是此域对象的原型。
你可以写下这些内容:
services.factory('CustomerService', ['$resource', function($resource) {
var CustomerService = $resource('http://virtualmaster.apiary.io/customers/:id', {}, {
all: {
method: 'GET',
params: {}
}
//more custom resources methods go here....
});
CustomerService.prototype.fullName = function(){
return this.first_name + ' ' + this.last_name;
};
//more prototype methods go here....
return CustomerService;
}]);
答案 1 :(得分:0)
您可能需要查看我对this SO question相关主题的回答。
通过这样的解决方案,域特定逻辑进入自定义域实体类(特别是其原型)。