bootstrap-table ,queryParams向后台传值,后台取不到

解决办法: 可能是忘记写
contentType:‘application/x-www-form-urlencoded; charset=UTF-8’,
这句话了

	$("#twotable").bootstrapTable({
			method:'post',
			dataType:'json',
			contentType:'application/x-www-form-urlencoded; charset=UTF-8',
			url:'ajaxlaw',
			pagination:true,//显示分页
			pageSize:3,//每页数据数
			pageList:[3,5],//设置页面可显示的数据条数
			pageNumber:1,//首页页码
			sidePagination:'server',//设置为服务器端分页
			 queryParams:function(params){//向后台传值
				return{
					offset:params.offset,
					limit:params.limit,
				 }
			}, 
			columns:[{
				title:'序号',
				formatter:function(value,row,index){
					return index+1
				}
			}]			

你可能感兴趣的:(前端)