使用$ templateCache与template vs templateUrl

时间:2016-12-01 23:43:26

标签: angularjs angular-templatecache

我使用grunts ng-template将html模板存储在$ templateCache中。 角度文档表明我可以使用这样的模板:

myApp.component('myComponent', {
   templateUrl: 'templateId.html'
});

或者像这样:

 myApp.component('myComponent', {
   template: $templateCache.get('templateId.html')
});

有什么区别?我真的不想在每个指令/组件中注入$ templateCache只是为了使用这个函数。这是关于表现吗?

我读过这篇文章:How much of a performance difference is between template and templateUrl Angularjs 如果我是对的,那么使用模板(而不是templateUrl)会快一点。这是唯一的区别吗?

0 个答案:

没有答案