我注意到AngularJS UI Bootstrap对模板使用以下方法:
angular.module("uib/template/progressbar/bar.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("uib/template/progressbar/bar.html" }
所以我认为这是一个非常好的解决方案,但是为angular.module("uib/template/progressbar/bar.html"
或angular.module("uib/template/progressbar/progress.html"
等每个模板网址创建模块的原因是什么
它会给我们带来什么好处?
答案 0 :(得分:1)
分别为每个模板设置一个模块将导致代码的正确分离。每个模块都将为每个模板添加代码,并防止用户混合代码。这是一个非常普遍的规则,一个功能或实体应该只履行自己的职责而不是那个职责。