标签:asc 请求 OLE htm 发送 span html 容器 标记
table.on(‘sort(userTable)‘, function (obj) { sortObject = obj; tableIns.reload({ initSort: obj, where: $.extend(getQueryParams(), { field: obj.field, order: obj.type }) }); });
https://www.cnblogs.com/Ofsoul/p/9633397.html
table.on(‘sort(test)‘, function(obj){ //注:tool是工具条事件名,test是table原始容器的属性 lay-filter="对应的值" console.log(obj.field); //当前排序的字段名 console.log(obj.type); //当前排序类型:desc(降序)、asc(升序)、null(空对象,默认排序) console.log(this); //当前排序的 th 对象 //尽管我们的 table 自带排序功能,但并没有请求服务端。 //有些时候,你可能需要根据当前排序的字段,重新向服务端发送请求,从而实现服务端排序,如: table.reload(‘test‘, { initSort: obj //记录初始排序,如果不设的话,将无法标记表头的排序状态。 layui 2.1.1 新增参数 ,where: { //请求参数(注意:这里面的参数可任意定义,并非下面固定的格式) field: obj.field //排序字段 在接口作为参数字段 field order ,order: obj.type //排序方式 在接口作为参数字段 field order } }); });
标签:asc 请求 OLE htm 发送 span html 容器 标记
原文地址:https://www.cnblogs.com/0710whh/p/12320639.html