Java Velocity
velocity的语法高亮和代码片段
详细信息
安装次数
- 总数 24K
- Win 14K
- Mac 6K
- Linux 4K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 2 | 1 | 1 | 1 | 2 | 0 | 0 | 2 | 1 | 0 | 2 | 1 | 1 | 2 | 2 | 2 | 0 |
Mac | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 3 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
说明文件
安装方式
通过Package Control,搜索“velocity”
或复制仓库文件夹到 <SublimeText2Folder>/Packages
代码片段
-
for
- foreach#foreach( $var in $!{colection} ) ... #end
-
param
- 获取url参数$!{request.getParameter( 'someparameter' )}
-
host
- 获取主机名$!{link.getHost()}
-
if
- if结构,无else#if(condition) ... #end
-
ifel
- if else结构#if(condition) ... #else ... #end
-
ifparam
- if某些url参数#if($!{request.getParameter( 'someparameter' )}) ... #end
-
el
- 只有else#else
-
set
- 设置#set( $var = _value_ )
-
read
- 获取文件的正文内容$_reader.read("path/to/file.ext")
-
$
- 使用变量$!{var}
-
!
- html注释 -
vm
- velocity头部#!vm;utf-8
-
+
- 加法$math.add($number, $number)
-
-
- 减法$math.sub($number, $number)
-
*
- 乘法$math.mul($number, $number)
-
/
- 除法$math.div($number, $number)
-
debug
- 带参数的html输出调试 -
par
- 解析#parse("url")
-
exist
- 如果文件存在返回布尔值$include.exists("filepath")
-
isweb
- 如果平台是web返回布尔值$_userAgent.isWeb()
-
issmart
- 如果平台是智能平台返回布尔值$_userAgent.isSmart()
-
isfeature
- 如果平台是功能平台返回布尔值$_userAgent.isFeature()
-
jsontos
- velocity对象转换为字符串$_json.toString(obj)
-
request
- 返回请求的url$_json.request(url)
-
ept
- 是否为空?.isEmpty()
-
dtformat
- 日期格式$date.format("pattern", $date.getSystemTime())
-
sysdate
- 系统日期$date.getSystemTime()
-
count
- Velocity计数器,foreach索引$velocityCount
-
.up
- 转换成大写.toUpperCase()
-
.str
- 转换成字符串.toString()
-
.ks
- 将对象键转换为数组.keySet()
-
st
- 停止!!!钉锤时机!#stop
-
ctype
- 设置请求头的内容类型$response.setContentType("type")