这是关于Angular架构以及如何使用它的问题。
我创建了一个非常简单的Angular App。它有一个名为App
的主模块,App
有两个依赖项,Dep1
,Dep2
。两个Dep
都有一个名为theConst
的常量。因此,当theConst
中使用App
时, Angular如何决定使用什么?
现在看来,当我测试应用程序时,Angular会选择Dep2
的值,然后注入第二个值。如果我想在某些地方引用Dep1
的值并在其他地方引用Dep2
,该怎么办?
代码:
<html>
<head>
<title>Testing</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
<script src="js/Dependency1.js"></script>
<script src="js/Dependency2.js"></script>
<script src="js/app.js"></script>
</head>
<body ng-app="App">
<div ng-controller="Ctrl">
<h1>{{greet}}</h1>
<h5>{{const}}</h5>
</div>
</body>
</html>
使用Javascript:
angular.module('Dep1', [])
.constant('theConst', "Number One!");
angular.module('Dep2', [])
.constant('theConst', "Number Two!");
angular.module('App', ['Dep1', 'Dep2'])
.controller('Ctrl', ['$scope', 'theConst', function($scope, theConst){
$scope.greet = "Howdie!";
$scope.const = theConst;
}]);
答案 0 :(得分:2)
角度模块是一件奇怪的事情(我不喜欢它们 - 但那是个人观点)。它们只提供抽象分组,没有命名空间,没有捆绑/脚本加载。
最后谈到这一点:你必须确保自己没有2个工件具有相同的名称。可能有Grunt / Gulp /你构建系统的插件可以帮助你,但我不知道。
Angular将选择具有遇到的给定名称的最后一个工件。 (当在多个文件中声明工件时,这会很有趣。)