我们希望有一个这样的项目结构:
assets/javascripts/
- featureA/
- templateA.html
- controllerA.js
- featureB/
- templateB.html
- controllerB.js
但是角度模板资产管道插件只接受其模板配置中的一个目录/文件夹。
grails {
assets {
angular {
templateFolder = 'templates'
moduleNameBase = 'app'
compressHtml = true
preserveHtmlComments = false
includePathInName = false
}
}
}
无论如何,插件是否能够扫描给定模板文件夹下的嵌套文件夹?