0

angularjs 的文档展示了如何像这样创建自己的模块的服务

angular.module("mymodule", []).service("myService", service);

我的问题是如何创建像 $http 这样的核心服务的服务?我尝试以下,它不工作?

angular.module("ng").service("$http2", service);

谢谢

4

1 回答 1

2

Your module spelling is wrong, other than that it is working fine

angular.module("ng").service("$http2", service);

Demo: Fiddle

于 2013-03-06T03:11:57.333 回答