关于datagrid 参数传递问题

时间:2021-09-26 09:37:03

jquery 表格插件datagrid使用时牵扯到几处参数的传递


1::设置了表格分页,其中注意 要想显示分页控件,pagination属性必须为true

       datagrid会自动向后台传递 rows(每页显示记录数)page(当前是第几页)

因此我们可以在后台使用request,或者struts的get,set方法获取

2:后台向前台datagrid传入所需数据

datagrid 后台需要向前台传递三组数据

1:total 存放返回的总记录数,这个可以大于真实的记录数

2:rows 存放返回的记录,为list

对于后台向前台传送的数据,需要返回的是 json类型,因此需要将返回的数据格式转化为json格式

<1> 第一种方式

 
Map<String, Object> jsonMap = new HashMap<String, Object>();//定义map 
    
jsonMap.put("total", appService.getCountApp());//total键 存放总记录数,必须的 
  
 
jsonMap.put("rows", list);//rows键 存放每页记录 list 
    
result = JSONObject.fromObject(jsonMap);//格式化result   一定要是JSONObject 
<2> 第二种方式 struts自动将返回的string类型转化为json类型 将list
换为 string 然后通过 struts 将string 转化为json发送到页面
Map<String, Object> jsonMap = new HashMap<String, Object>();//定义map     
jsonMap.put("total", appService.getCountApp());//total键 存放总记录数,必须的 
  
 
jsonMap.put("rows", list);//rows键 存放每页记录 list 
随后使用 http://blog.csdn.net/luofuit/article/details/42143989 所写的方法将数据转化为json格式的数据最后
使用下列方法将此数据发送到前台
 
try
    {
      this.response.setContentType("text/plain;charset=gbk");
      Writer writer = this.response.getWriter();
      writer.write(text);
      writer.flush();
      writer.close();
    } catch (IOException e) {
      e.printStackTrace();
    }