freemarker相关标签

Posted 程是成功的乘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freemarker相关标签相关的知识,希望对你有一定的参考价值。

<#if animals.python.price != 0>

       Pythons are not free today!

</#if>

 

<#if animals.python.price < animals.elephant.price>

           Pythons are cheaper than elephants today.

<#elseif animals.elephant.price < animals.python.price>

          Elephants are cheaper than pythons today.

<#else>

          Elephants and pythons cost the same today.

</#if>

 

上面示例中的一个问题是如果我们有0个水果,它仍然会输出一个空的 <ul></ul>,而不是什么都没有。 要避免这样的情况,可以这么来使用 list

<#list misc.fruits>

  <ul>

      <#items as fruit>

          <li>${fruit}

     </#items>

</ul>

</#list>

 

被 sep 覆盖的部分(我们也可以这么来写: ...<#sep>, </#sep></#list>) 只有当还有下一项时才会被执行。 因此最后一个水果后面不会有逗号:

<p>Fruits:

 <#list misc.fruits as fruit>

        ${fruit}<#sep>,

</#list>

 

假设要在一些页面中显示版权声明的信息。那么可以创建一个文件来单独包含这些版权声明, 之后在需要它的地方插入即可,

当需要用到文件时,可以使用 include 指令来插入:

<#include "/copyright_footer.html">

以上是关于freemarker相关标签的主要内容,如果未能解决你的问题,请参考以下文章

Wagtail - 在页面上呈现带有相关片段和标签的数据时遇到问题

使用 Freemarker 从内容中减去 img 标签

在 freemarker 模板中处理 struts2 标签

如何配置 Maven Freemarker 以识别 `@include_page` 标签?

freeMarker

请问下freemarker怎么引入了jstl标签啊?