velocity常用代码

Velocity是一个基于java的模板引擎(template engine)。它允许任何人仅仅使用简单的模板语言(template language)来引用由java代码定义的对象。

前端展示时常用语法

1、循环

2、选择

3、定义变量

<!-- 第一个分组 -->
<!--bankGroup1后台返回的list-->
#set($countArrayNum = 0)//记录遍历的个数
#foreach($bg1 in $bankGroup1)

	<li class="bankicon">
		<label>
		<input type="radio" value="$!{bg1.bankno}" name="bank-card" class="bank-card">
		</label>
	</li>
	<li class="bankverify">
		<input type="hidden" id="bankchannelsum" value="$!{bg1.quickbnk}">
		<div class="manner"><span>签约方式:</span><a href="#">遇到问题<i></i></a></div>
		<div class="verifybox clearfix" >
		<!--<ul>
		<li>我要快捷绑卡</li>
		<li>我要更大限额</li>
		</ul>-->
	#if(${bg1.quickbnk})
		<div class="verifyone">
			<h4><label><i class="radio-ico"></i>$!{bg1.quickbnk.banknm}
			<input type="hidden" name="quickbnkpaytip" id="quickbnkpaytip" value="$!{bg1.quickbnk.paytip}"/>
			<input type="hidden" name="quickbnkauthtip" id="quickbnkauthtip" value="$!{bg1.quickbnk.authtip}"/>
			</label>
			</h4>
			<div class="quota_message"><p>$!{bg1.quickbnk.paytip}</p></div>
			<div class="phone_verify"><p> $!{bg1.quickbnk.authtip}</p></div>
		</div>
	#else
		<div class="verifyone">
			<h4><label><i class="radio-ico"></i>网银</label></h4>
			<div class="quota_message">
				<p class="no-border">$!{bg1.paytip}</p>
			</div>
			<div class="phone_verify">
				<p>$!{bg1.authtip}</p>
			</div>
		</div>
		<div class="next width247"><a href="javascript:;"  class="btn btn-next-step">下一步</a></div>
	#end
		</div>
	</li>
		#set($countArrayNum = $countArrayNum + 1)//定义变量
#end
时间: 2024-10-26 00:08:47

velocity常用代码的相关文章

常用代码整理(重要)

常用代码整理: 1.判断邮箱格式是否正确的代码: //利用正则表达式验证 -(BOOL)isValidateEmail:(NSString *)email { NSString *emailRegex = @"[A-Z0-9a-z._%+-][email protected][A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATC

HTML入门常用代码

Html 常用代码1.文件类型<HTML></HTML> (放在档案的开头与结尾)2.文件主题<TITLE></TITLE> (必须放在「文头」区块内)3.文头<HEAD></HEAD> (描述性资料,像是「主题」)4.文体<BODY></BODY> (文件本体)5.层<DIV></DIV> 6.层的对齐<DIV ALIGN=LEFT|RIGHT|CENTER|JUSTIFY>

SqlServerDBA 常用代码

--查看partition的四个视图 select * from sys.partition_functions--查看分区函数 select * from sys.partition_parameters select * from sys.partition_range_values--查看分区函数对应的分区范围 select * from sys.partition_schemes--查看分区架构 SqlServerDBA 常用代码,布布扣,bubuko.com

ASP.NET MVC+EF5 开发常用代码

Asp.Net Mvc,EF 技术常用点总结 1.Asp.Net MVC a)获得当前控制器名和当前操作的名称(action) 1.Action 中 RouteData.Values["controller"].ToString(); RouteData.Values["action"].ToString(); 2.页面中(view) ViewContext.RouteData.Values["controller"].ToString().To

js常用代码大全

Javascript常用代码大全 //打开模式对话框 <body><script language=javascript> function doSelectUser(txtId){ strFeatures="dialogWidth=500px;dialogHeight=360px;center=yes;middle=yes ;help=no;status=no;scroll=no"; var url,strReturn; url="selUser.a

Php mysql 常用代码、CURD操作以及简单查询

C/S:Client ServerB/S:Brower Server php主要实现B/S LAMP :Linux系统    A阿帕奇服务器    Mysql数据库   Php语言 mysql常用代码 创建表 1 create table CeShi1 2 ( 3 Uid varchar(50) primary key, 4 Pwd varchar(50), 5 Name varchar(50), 6 Nation varchar(50), 7 foreign key(Nation) refer

一些常用代码

1.地图大于屏幕大小,对camera进行控制,并不是简单地让player一直限制在屏幕中心,而是将player限制在屏幕中间的一个矩形区域内. 1 float rectangleWidth=GameVariables.WIDTH/3; 2 float rectangleHeight=GameVariables.HEIGHT/3; 3 float cameraX=stage.getCamera().position.x; 4 float cameraY=stage.getCamera().posi

GCD 常用代码

体验代码 异步执行任务 - (void)gcdDemo1 { // 1. 全局队列 dispatch_queue_t q = dispatch_get_global_queue(0, 0); // 2. 任务 void (^task)() = ^ { NSLog(@"%@", [NSThread currentThread]); }; // 3. 指定执行任务的函数 // 异步执行任务 - 新建线程,在新线程执行 task dispatch_async(q, task); NSLog(

网页常用代码(转)

网页制作常用代码(文字颜色/字体/插入图片/flash等) 一:颜色代码如果你想使用某种颜色,取得它的颜色值即可.比如,您想改变某些文字的颜色,您可以使用下面的代码:<font color=#ffc060 size=2>改变#符号后的代码即可改变颜色</font> 000000 000020 000040 000060 000080 0000a0 0000c0 0000ff 008000 008020 008040 008060 008080 0080a0 0080c0 0080f