在HTML代码中使用freemarker
在html代码中使用freemarker
1、freemarker中显示某对象的属性使用${user.name}.
但如果name为null,freemarker就会报错。如果需要判断对象是否为空:
<#if name??>.....</#if>
当然也可以通过设置默认值${name!''}来避免对象为空的错误。如果name为空,就以默认值(“!”后的字符)显示。
对象user,name为user的属性的情况,user,name都有可能为空,那么可以写成${(user.name)!''},表示user或者name为null,都显示为空。
判断为空:<#if (user.name)??>……</#if>
2、freemarker中截取字符串-------------------------------------
类型一:
<#if item.contents??>
<#if item.contents?length gt 7>
${item.contents?substring(0,3)}****${item.contents?substring(7,item.contents?length)}
<#else>${item.contents!}
</#if>
</#if>
类型二:
<#if item.contents??>
<#if item.contents?length gt 7>
${item.contents?substring(0,7)}****
<#else>${item.contents!}
</#if>
</#if>
<#if item.createtime??>
<#if item.createtime?length gt 0>
${item.createtime?substring(0,10)}
<#else>${item.createtime!''}
</#if>
</#if>
<div title="${item.title!''}">${item.title?substring(0,9)}...</div>
3、根据条件显示-------------------------------------
<td class="th18">
<#if item.type?? && item.type =="0">天
<#elseif item.type?? && item.type =="1">**
<#elseif item.type?? && item.type =="2">**
<#elseif item.type?? && item.type =="3">**
<#elseif item.type?? && item.type =="4">**
</#if>
</td>
4、freemark控制class样式-------------------------------------
<li class="biao-new <#if userconf??&&userconf.mothshortmark==1>active</#if>">
5、遍历 list 或者 page
<#if list ?? && list ?size gt 0>
<#list channels as item>
<option value="${item.id!}">${item.channelname!}</option>
</#list>
</#if>
推荐阅读
-
web在html中引用JavaScript代码的实现(小程序在xwml中实现)
-
Word2000和Word2002中的宏在Office Word 2003中的使用
-
在Word2010中使用“撤销键入”或“恢复键入”功能
-
Jquery在指定DIV加载HTML示例代码
-
Win10系统电脑在使用浏览器播放视频时蓝屏错误代码0x000008e的多种解决方法
-
使用HTML5中postMessage知识点解决Ajax中POST跨域问题
-
在MySQL中自定义参数的使用详解
-
Spring在代码中获取bean的几种方式详解
-
clipboard在vue中的使用的方法示例
-
Winform中在使用Dock属性设计页面布局控件的顺序导致页面效果不同的问题