Angular js App缩小

时间:2014-08-16 15:26:44

标签: angularjs bundling-and-minification

非常受欢迎的问题:

  

未知提供者:nProvider< - n< - $ http< - $ templateFactory< - $ view   < - $ state

我使用MVC Bundling。

如何阅读此邮件?

这是否意味着$state需要$view需要$templateFactory等?

1 个答案:

答案 0 :(得分:0)

这是一些外部指令中的问题。所以我仔细阅读了所有这些并修复了服务注入的语法:

app.service('myService', function($scope, $animate) {});

app.service('myService', ['$scope', '$animate', function($scope, $animate) {}]);

了解问题所在 我已将所有脚本添加到index.html。然后开始用MVC捆绑逐个部分修改脚本。在此之后,我发现了缩小脚本的错误。