当我们考虑在Angular2或Angular1.X中使用模板时,我们知道以下是写作的基本方法之一:
原文链接:https://www.f2er.com/angularjs/142536.html模板:’./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实现相同的操作.有人可以帮忙吗?
谢谢.