function Greeter(a) {
this.greet = function() {
//How should I declare the dependency for e.g. $http so that I do a GET request here?
return 'Hello ' + a;
}
}
provider.service('greeter', Greeter);
如果我使用上述格式,我创建一个类定义,然后使用.service
符号,声明服务,我如何使用例如$http
或其他依赖项?
这个 AngularJS - 服务、工厂、过滤器等中的依赖注入
在声明服务的地方定义服务时提供解决方案。