加载Angular应用程序后,我需要一些离线可用的模板。
这样的东西是理想的:
$routeProvider .when('/p1',{ controller: controller1,templateUrl: 'Template1.html',preload: true })
有一个模板缓存服务:
$templateCache,可以用来在javascript模块中预加载模板。
原文链接:https://www.f2er.com/angularjs/146230.html例如,从文档:
var myApp = angular.module('myApp',[]); myApp.run(function($templateCache) { $templateCache.put('templateId.html','This is the content of the template'); });
甚至有一个grunt任务从html文件预生成一个javascript模块:grunt-angular-templates
另一种方式,也许不太灵活,是使用内联模板,例如,在index.html中有一个类似这样的脚本标签:
<script type="text/ng-template" id="templates/Template1.html">template content</script>
意味着模板可以在后面以与路由配置中的真实url相同的方式进行编址(templateUrl:’templates / Template1.html’)