我想在给定文本文件()的特定点嵌入可变数量的文本文件(AngularJs 模板),./WEB-INF/app.html
但除了修改文件将其保存为另一个文件(./index.html
?*.ng.html
并且都在./assets/templates/
.
我还想在嵌入文件之前和之后写文本(让 AngularJS 识别它们是模板)。此文本应包含静态文本和相对于工作目录的文件名。
这是工作目录的可能结构:
(index.html) (generated after building)
--assets
--templates
--general
about.ng.html
contact.ng.html
home.ng.html
--users
userlist.ng.html
--WEB-INF
app.html
这可以使用 Ant 完成吗?如果没有,我怎么能在 Eclipse 的构建时做到这一点?
为了进一步说明我的意图,这里有一些例子:
./WEB-INF/app.html
<!doctype html>
<html><head>
@INSERTION_POINT@
</head><body></body></html>
./assets/templates/general/about.ng.html
This is a test.
./assets/templates/general/contact.ng.html
You can contact me at: <a href=mailto:mail@example.com>mail@example.com</a>
./assets/templates/general/home.ng.html
Welcome.<br>
Click a link to explore.
./assets/templates/users/userlist.ng.html
<ol>
<%= "{{#userlist}}" %>
<li>
{{username}}
</li> <%= "{{/userlist}}" %>
</ol>
构建后,我想./index.html
看起来像:
<!doctype html>
<html><head>
<script type="text/ng-template" id="/assets/templates/general/about.ng.html">
This is a test.
</script>
<script type="text/ng-template" id="/assets/templates/general/contact.ng.html">
You can contact me at: <a href=mailto:mail@example.com>mail@example.com</a>
</script>
<script type="text/ng-template" id="/assets/templates/general/home.ng.html">
Welcome.<br>
Click a link to explore.
</script>
<script type="text/ng-template" id="/assets/templates/users/userlist.ng.html">
<ol>
<%= "{{#userlist}}" %>
<li>
{{username}}
</li> <%= "{{/userlist}}" %>
</ol>
</script>
</head><body></body></html>
我发现我可以使用以下方法获取要嵌入的文件列表:
<fileset dir="war/assets/templates">
<include name="**/*.ng.html"/>
</fileset>
当我得到最终的字符串时,我可以替换占位符并将输出保存到一个新文件中,可能如下所示:
<copy file="WEB-INF/app.html" tofile="index.html">
<filterset>
<filter token="INSERTION_POINT" value="??foo??"/>
</filterset>
</copy>
但是如何获得我想要作为值传递的字符串?