c语言sscanf函数的用法是什么
210
2022-11-27
Bootstarp-table入门
介绍
介绍什么的,大家自己去下面的网站看
Bootstrap中文网: Bootstrap Table Demo:http://issues.wenzhixin.net.cn/bootstrap-table/index.html Bootstrap Table API:http://bootstrap-table.wenzhixin.net.cn/zh-cn/documentation/ Bootstrap Table源码:https://github.com/wenzhixin/bootstrap-table Bootstrap DataPicker:http://bootcss.com/p/bootstrap-datetimepicker/ Boostrap Table 扩展API:
同时得引入下面的js与css
OK现在我们看看这个handler.js
//存放主要交互逻辑的js代码$(function () { //初始化业务逻辑script loadGoods();})function loadGoods(){ $('#goods_table') .bootstrapTable( { url : '/beauty_ssm_cluster/goods/list.do', // 请求后台的URL(*) method : 'get', // 请求方式(*) pagination : true, search : true, // 显示搜索框 showToggle : true, // 是否显示详细视图和列表视图的切换按钮 sidePagination : "server", // 服务端处理分页 showColumns : true, // 是否显示所有的列 showRefresh : true,// 是否显示刷新按钮 columns : [ { field : 'goodsId', title : '商品ID' }, { field : 'title', title : '标题' }, { field : 'price', title : '价格' }, { field : 'state', title : '状态', formatter : function(value, row, index) { var ret = ""; if (value == 0) { ret = "下架"; } if (value == 1) { ret = "正常"; } return ret; } }, { field : 'number', title : '数量' }, { field : 'goodsId', title : '操作', formatter : function(value, row, index) { var ret = ' '; return ret; } }, ] });}
这里我要说一下那个搜索框,在搜索框里写入数据后,js会直接把值传给后台,从后台取到结果后就直接刷新table我们再看看后台的处理逻辑
@RequestMapping(value = "/list", method = RequestMethod.GET, produces = { "application/json;charset=UTF-8" }) @ResponseBody public BootStrapTableResult
这个BootStrapTableResult里面有两个字段
private List
private int total;
total存放的数据的总量
最后后台向前台返回一个json
加搜索版
在html里加上
例如
源码下载
total: ${totalPage}, page: ${currentPage}, maxVisible: 5, leaps: true, firstLastUse: true, first: '←', last: '→', wrapClass: 'pagination', activeClass: 'active', disabledClass: 'disabled', nextClass: 'next', prevClass: 'prev', lastClass: 'last', firstClass: 'first'}).on("page",function(event,num) { var url="getAllOpponent.action?byPage=ture¤tPage=" + num + "";// var type='${customer.type}';// var customerName='${customer.type}';// var clientName='${clientName}';/// if(type!="")// url+="customer.type="+type;// if(customerName!="")// url+="customer.name="+customerName;// if(clientName!="")// url+="clientName="+clientName;// alert(url); location.href = url;});
参考资料
http://jb51.net/article/60965.htm
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~