概述
freemarker自定义标签
1、自定义标签说明
宏变量存储模板片段可以被用作自定义指令macro
2、示例说明
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>freemarker自定义标签</title>
</head>
<body>
<#--freemarker自定义标签-->
<#macro write>
repeat("张三丰",3)
</#macro>
<@write/>
</body>
</html>
3、示例结果
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>freemarker自定义标签</title>
</head>
<body>
repeat("张三丰",3)
</body>
</html>
最后
以上就是干净铃铛为你收集整理的freemarker自定义标签(一)的全部内容,希望文章能够帮你解决freemarker自定义标签(一)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复