0

我想在给定文本文件()的特定点嵌入可变数量的文本文件(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>

但是如何获得我想要作为值传递的字符串?

4

1 回答 1

0

绝对不是你要找的东西......对不起......但可能会研究一个面向 Javascript 的构建工具(Grunt)并将其与 eclipse 集成(或者如果你试图保持你的构建相同,甚至可以从 ant 运行它在java和javascript中。)

虽然这可能不是您正在寻找的东西,但如果您坚持标准,您将得到大量社区支持。

于 2013-05-13T01:05:46.437 回答