通常我们数据库中有int或者short或者其他类型的数据,而在前台展示的时候,我们有时不需要这种类型的数据而是另一种类型,这时我们就需要转换类型,比如我数据库中有一个付费(payflag)的字段,它的类型是short,0代表未付费,1代表已付费,2代表无需付费。如果我们在前台不转换类型的话,那么前台展示的是这样 |
前台操纵代码:{
text : '付费',
dataIndex : 'payflag',
width : 200,
align : "center",
renderer: function(value, metaData, record, rowIndex, colIndex, store, view) {
if(value == 0) {
return "<span style='color:red;font-weight:bold;'>未付费</span>"
}
if(value == 1) {
return "<span style='color:green;font-weight:bold;'>已付费</span>"
}
if(value == 2) {
return "<span style='color:#000000;font-weight:bold;'>无需付费</span>"
}
}
}