index页面数据展示为设定的命名

数据库表里面字段的值想用另一种命名形式展示,如1是 是,2是 否

 
index页面数据展示为设定的命名
index页面数据展示为设定的命名
 
解决方法: 用到formatter
  1. ,{field:'params', title:'参数', width:100, sortable:true, align:'left', hidden:true}
  2. ,{field:'type', title:'是否通过SQL获取', width:110, sortable:true, align:'left', hidden:false,
  3. formatter: function(value){
  4. if(value=='1'){
  5. return'是';
  6. }elseif(value=='2'){
  7. return'否';
  8. }else{
  9. return value;
  10. }
  11. }
  12. }
 
上一篇:SWIT2019无线通信和信息技术国际研讨会(上海)


下一篇:erlang 二进制中 拼接 变量或者函数 报错