我正在使用restangular,到目前为止,一切都运行良好,但是,我有这个问题无法解决。
我使用如下基本操作定义一个抽象存储库:
app.factory('AbstractRepository', [
function(){
function AbstractRepository(restangular, route) {
this.restangular = restangular;
this.route = route;
};
AbstractRepository.prototype = {
getList: function (params) {
return this.restangular.all(this.route).getList(params).$object;
},
get: function (id) {
return this.restangular.one(this.route, id).get();
},
getView: function (id) {
return this.restangular.one(this.route, id).one(this.route + 'view').get();
},
update: function (updatedResource) {
return updatedResource.put().$object;
},
create: function (newResource) {
return this.restangular.all(this.route).post(newResource);
},
remove: function (object) {
return this.restangular.one(this.route, object.id).remove();
},
};
AbstractRepository.extend = function (repository) {
repository.prototype = Object.create(AbstractRepository.prototype);
repository.prototype.constructor = repository;
}
return AbstractRepository;
}
]);
具体的存储库:
app.factory('ServiceRepository', ['Restangular', 'AbstractRepository',
function (restangular, AbstractRepository) {
function ServiceRepository() {
//restangular.setBaseUrl("http://192.168.0.144:8080/api/rest/services/");
AbstractRepository.call(this, restangular,'http://192.168.0.144:8080/api/rest/services/');
}
AbstractRepository.extend(ServiceRepository);
return new ServiceRepository();
}
我称之为方法:
ServiceRepository.getList();
现在我想实现和运行(getServicesByOperatorId),它只能在特定的存储库中工作,而不是在抽象中。所以我可以这样称呼它:
ServiceRepository.getServicesByOperatorId({"operatorId":7});
如果我在抽象的原型中定义函数它可以工作,但我希望我在具体的方式中定义。
非常感谢你的时间。
答案 0 :(得分:0)
最后,我找到了一种方法来做我想要的事情:
在特定工厂中定义原型并从这样的抽象原型扩展:
ServiceRepository.prototype = {
getServicesByOperatorId: function (id) {
return this.restangular.all(this.route + 'getServicesByOperatorId').getList(id).$object;
}
}
angular.extend(ServiceRepository.prototype, AbstractRepository.prototype);
在抽象存储库中,删除此定义:
AbstractRepository.extend = function (repository) {
repository.prototype = Object.create(AbstractRepository.prototype);
repository.prototype.constructor = repository;
}
不,我可以访问de getList()方法和getServicesByOperatorId()。