Angular2中$templateCache的替代方法

前端之家收集整理的这篇文章主要介绍了Angular2中$templateCache的替代方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我们考虑在Angular2或Angular1.X中使用模板时,我们知道以下是写作的基本方法之一:

模板:’./template-ninja.html’

并且使用Angular1.X,我们可以使用$templateCache.put()先前缓存所有模板,如下所示:

var myApp = angular.module('Ninja',[]);
myApp.run(function($templateCache) {
  $templateCache.put('templateNinja.html','This is the content of the template-ninja');
});

这将减少http请求的数量.
我想知道如何使用Angular2实现相同的操作.有人可以帮忙吗?
谢谢.

吞掉-直列NG2模板

目前最好的解决方案是gulp-inline-ng2-template.

这需要一个具有templateUrl属性的组件,加上一个html文件,并将其转换为带有内联模板的组件.

https://github.com/ludohenin/gulp-inline-ng2-template

原文链接:https://www.f2er.com/angularjs/142536.html

猜你在找的Angularjs相关文章