如何在 .vm 文件中插入页眉和页脚

发布于 2024-07-10 12:41:50 字数 152 浏览 7 评论 0原文

我有一个 .vm(Velocity)文件,运行该文件可生成 DOC 文件。 我希望在生成的 DOC 文件中有一个非常简单的页眉和页脚。 如何为此在 .vm 文件中编写代码。 我不想将页眉和页脚文件作为外部文件包含在内。 我想要在同一个 .vm 文件中包含简单的代码。 请帮忙!!!

I have a .vm (Velocity) file which is run to generate a DOC file. I want to have a very simple header and footer in this resultant DOC file. How can I write code in .vm file for this.
I do not want to include header and footer files as external files. I want simple code in the same .vm file.
Please help!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-07-17 12:41:50

不包含单独的文件? 只需编写 HTML 即可。 以下代码摘自 vm 文件:

<div class="footer">
    <div class="footerlinks">
    <ul>
        <li class="first">Something</li>
    </ul>
 </div>
</div>

Without including a separate file? Just write the HTML. The following code is an extract from a vm file:

<div class="footer">
    <div class="footerlinks">
    <ul>
        <li class="first">Something</li>
    </ul>
 </div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文