8

有没有办法将 $q 注入提供者,在我的情况下,角度抛出异常告诉没有这样的提供者。

4

1 回答 1

18

对于提供者,这些值被注入到 $get 函数中。

myApp.provider('testProvider', function() {
   this.$get = function($q) {

   };
});

更多细节在这里:

  1. AngularJS:服务vs提供者vs工厂

  2. https://gist.github.com/Mithrandir0x/3639232

于 2013-05-26T14:48:13.233 回答