用Easy-UI框架循环列表的时候,数据库用有时候我们习惯用0或1代表男或女,或者代表其他东西。在循环到页面的时候,我们肯定不能显示0或1,肯定是要显示我们要表达的内容。这个时候Easy-ui中的formatter就将这种问题很简单的解决了。
直接上代码吧。
jsp页面
<tr>
<th data-options="field:'ck',checkbox:true"></th>
<th data-options="field:'USER_ID',align:'center',hidden:true" >用户ID</th>
<th data-options="field:'USER_JH',align:'center'" width="6%">用户账号</th>
<th data-options="field:'USER_XM',align:'center'" width="6%">用户姓名</th>
<th data-options="field:'USER_SSDW',align:'left'" width="35%">所属单位</th>
<th data-options="field:'USER_SFZX',align:'center',formatter:userformatter" width="10%">是否有效</th>
<th data-options="field:'USER_ZCRQ',align:'center'" width="15%">注册时间</th>
<th data-options="field:'ROLE_ID',align:'center',formatter:qxfpformatter" width="10%">分配权限</th>
</tr>
js片段:
function userformatter(value,row,index){
return value=="0"?"无效":"有效";
}
function qxfpformatter (value,row,index){
return "<a href='javascript:void(0)' οnclick=\"openQxfp('"+row.USER_ID+"','"+value+"')\">分配</a>";
}
显示效果: