freemarker3
结束标签
可以在结束标签中忽略user_def_dir_exp 也就是说可以写</@>来代替</@anything>
循环变量
<@myRepeatMacro count=4> SomeThing... </@> <@myRepeatMacro count=4 ;x> ${x}.SomeThing... </@> <@myRepeatMacro count=4 ;x,last> //自定义指令创建的循环变量和分号之后指定的循环变量数量需要不匹配 last可以不写 x也可以不写 ${x}.Something...<#if last>This was the last!</#if> </@>
位置参数传递: 目前仅仅支持宏定义
macro,nested,return指令
没有参数的宏 <#macro test> Test text </#macro> <@test/> --> Test text 有参数的宏: <#macro test foo bar baaz> Test test,and the params:${foo},${bar},${baaz} </#macro> <@test foo="a" bar="b" baaz=5*5-2/> --> Test text,and the params:a,b,23 一个复杂的宏 <#macro list title items> <p>${title?cap_first}: <ul> <#list> <li>${x?cap_first} </#list> </ul> </#macro> <@list item=["mouse","elephant","python"] title="Animals"/> --> <p>Animals: <ul> <li>Mouse <li>Elephant <li>Python </ul>
function return 指令
<#function name param1 param2 ... paramN> ... <#return returnVlalue> ... </#function> 例子:
<#function avg x y >
<#return (x+y)/2>
</#function>
${avg(10,20)}
-->15
freemarker3的更多相关文章
随机推荐
- NSArray利用Cocoa框架进行汉字排序
NSArray利用Cocoa框架进行汉字排序 在NSString有一个函数localizedCompare:,它的功能是通过自身与给定字符串的比較,返回一个本地化的比較结果.也就是说这个函数是支持汉字 ...
- POJ 2112 Optimal Milking(最大流)
题目链接:http://poj.org/problem?id=2112 Description FJ has moved his K (1 <= K <= 30) milking mach ...
- ubuntu——Kconfig、.config、Makefile的关系
原文地址:http://blog.csdn.net/estate66/article/details/5886816 ,本人对此文有改进. 当我们编写完一个驱动后,我们要把它以模块形式编译或者直接编译 ...
- 基于微信小程序的用户列表点赞功能
代码地址如下:http://www.demodashi.com/demo/13997.html 一.前言 (1).适合人群 1.微信小程序开发者 2.前端工程师 3.想入门学习小程序开发的人员 4.想 ...
- Android Studio 怎样打开两个项目?
欢迎转载: 请注明 原创Url
- 【APP接口开发】php输出json格式数据
请一定配合使用null转空字符的方法一起使用:(_unsetNull() 和 _json() 配合使用) 在一些接口的调用中,直接查询数据库出来的字段可能为null字段,但是为了简便前端的判断,需要把 ...
- 【LeetCode】162. Find Peak Element (3 solutions)
Find Peak Element A peak element is an element that is greater than its neighbors. Given an input ar ...
- Spatial Transformer Network
https://blog.csdn.net/yaoqi_isee/article/details/72784881 Abstract: 作者说明了CNN对于输入的数据缺乏空间变换不变形(lack of ...
- python 中写hive 脚本
1.直接执行.sql脚本 import numpy as np import pandas as pd import lightgbm as lgb from pandas import DataFr ...
- 关闭windows打印服务
1.关闭打印服务:开始-运行-services.msc或打开控制面板-管理工具-服务,打开服务列表,找到Print Spooler(打印服务),关闭(右击,点“关闭”).2.删除打印缓存:进入c:\\ ...