首页 > 代码库 > index页面数据展示为设定的命名

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

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


技术分享
技术分享

解决方法: 用到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. } else if(value==‘2‘){
  7. return ‘否‘;
  8. } else{
  9. return value;
  10. }
  11. }
  12. }



来自为知笔记(Wiz)


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