Ngtemplate与咕噜声或glup

时间:2017-08-11 01:56:28

标签: javascript angularjs

我正在构建一个没有grunt或者glup的构建过程,并且想要使用ngtemplate,因为团队使用它但是无法为它找到一个独立的包但是我愿意在新系统中创建一个只需要一个点正确的方向。

1 个答案:

答案 0 :(得分:1)

您可以编写一个简单的js脚本,遍历除 node_modules bower_components 之外的所有目录,并读取扩展名为.html的文件,并将内容附加到文件 templates.js 你的templates.js可能看起来像这样

angular.module('templates').run(['$templateCache', 
  function($templateCache) {
     $templateCache.put('filename1','filecontent1');
     $templateCache.put('filename2','filecontent2');
  }]);