layui 对table中的数据进行转义的实例

作者:kerw1nKwan 时间:2024-11-19 21:07:57 

方法一 通过done回调进行遍历:


//方法级渲染
   table.render({
     id: 'demoList',
     elem: '#demoList'
     , url: 'showDemoList'
     , cols: [[
       {checkbox: true, fixed: true, width: '10%'}
       , {field: 'id', title: '编号', width: '15%', sort: true}
       , {field: 'pipe_id', title: '机构ID', width: '15%'}
       , {field: 'bank_id', title: '银行ID', width: '10%'}
       , {field: 'pipe_cost', title: '成本', width: '10%'}
       , {field: 'status', title: '状态', width: '20%'}
       , {field: 'remark', title: '操作', width: '20%', toolbar: '#toolBar'}
     ]],
     done: function (res, curr, count) {
       //如果是异步请求数据方式,res即为你接口返回的信息。
       //如果是直接赋值的方式,res即为:{data: [], count: 99} data为当前页数据、count为数据总长度
       $("[data-field='status']").children().each(function () {
         if ($(this).text() == '0') {
           $(this).text('有效');
         } else if ($(this).text() == '1') {
           $(this).text('无效');
         }
       });
     }
     , page: true
     , height: 'full-83'
   });

方法二 通过layui的templet模板实现:


, {field: 'status', title: '状态', width: '20%',templet:'#status'}

<script type="text/html" id="status">
 {{# if(d.status=='0'){ }}
 有效
 {{# }else{ }}
   无效
 {{# } }}
</script>

来源:https://blog.csdn.net/kerw1nKwan/article/details/88971548

标签:layui,table,数据,转义
0
投稿

猜你喜欢

  • 如何测试字符串的长度?

    2009-11-11 20:02:00
  • Python 人工智能老照片修复算法学习

    2022-10-31 03:37:18
  • Python pandas中apply函数简介以及用法详解

    2022-05-11 03:44:47
  • 基于python实现获取网页图片过程解析

    2023-10-08 21:57:59
  • python标记语句块使用方法总结

    2023-09-23 20:16:22
  • PyQt5固定窗口大小的方法

    2021-05-18 12:34:43
  • layer实现登录弹框,登录成功后关闭弹框并调用父窗口的例子

    2024-04-22 12:46:06
  • Python中os和shutil模块实用方法集锦

    2021-04-19 08:45:12
  • OpenCV中Canny边缘检测的实现

    2022-10-17 10:10:19
  • Python中Scrapy+adbapi提高数据库写入效率实现

    2024-01-13 14:44:36
  • python 实现关联规则算法Apriori的示例

    2021-05-21 08:45:30
  • sqlserver 2000 远程连接 服务器的解决方案

    2024-01-24 03:23:12
  • Golang操作sqlite3数据库的详细教程

    2024-01-14 05:32:52
  • pyEcharts安装及详细使用指南(最新)

    2022-01-30 04:14:21
  • Python中的int函数使用

    2023-05-13 06:11:59
  • Pycharm快捷键配置详细整理

    2021-06-25 05:46:17
  • python matplotlib绘制三维图的示例

    2023-03-04 16:35:48
  • JavaScript进阶之前端文件上传和下载示例详解

    2024-06-12 11:24:46
  • python编程开发时间序列calendar模块示例详解

    2023-04-25 14:59:19
  • 详解pandas获取Dataframe元素值的几种方法

    2022-12-28 07:30:01
  • asp之家 网络编程 m.aspxhome.com