31

我正在尝试在 html 页面中显示配置的值authorversion角度值服务。版本代码显示正常但不是作者姓名这是 html 代码

    <!doctype html>
<html lang="en" ng-app="myApp">
<head>
  <meta charset="utf-8">
  <title>My AngularJS App</title>
  <link rel="stylesheet" href="css/app.css"/>
</head>
<body>
  <ul class="menu">
    <li><a href="#/view1">view1</a></li>
    <li><a href="#/view2">view2</a></li>
  </ul>

  <div ng-view></div>

  <div>Angular seed app: v<span app-version></span></div>
  <div>Author is : <span app-author></span></div>


  <script src="lib/angular/angular.js"></script>
  <script src="js/app.js"></script>
  <script src="js/services.js"></script>
  <script src="js/controllers.js"></script>
  <script src="js/filters.js"></script>
  <script src="js/directives.js"></script>
</body>
</html>

这是指令...

angular.module('myApp.directives', []).
  directive('appVersion', ['version', function(version) {
    return function(scope, elm, attrs) {
      elm.text(version);
    };
  }])
  .directive('appAuthor', ['author', function(author) {
    return function(scope, elm, attrs){
        elm.text(author);
    };
  }]);

这是配置authorversion值的服务部分

    angular.module('myApp.services', []).
  value('version', '0.1')
  .value('author','JIM');

我在开发者控制台中遇到的错误是

Error: Unknown provider: authorProvider <- author <- appAuthorDirective
4

2 回答 2

48

确保将这些模块(myApp.servicesmyApp.directives)加载为主应用程序模块的依赖项,如下所示:

angular.module('myApp', ['myApp.directives', 'myApp.services']);

plunker: http ://plnkr.co/edit/wxuFx6qOMfbuwPq1HqeM?p=preview

于 2013-03-06T11:43:05.910 回答
31

bmleite 有关于包含模块的正确答案。

如果这在您的情况下是正确的,您还应该确保您没有在多个文件中重新定义模块。

记住:

angular.module('ModuleName', [])   // creates a module.

angular.module('ModuleName')       // gets you a pre-existing module.

因此,如果您正在扩展现有模块,请记住在尝试获取它时不要覆盖它。

于 2014-02-23T20:28:16.280 回答