系统的框架为dwr+easyui+spring,easyui通过dwr的方式向发送请求至spring的控制层,并且,可以正常访问,但是,easyui始终不能显示返回的数据,代码如下:
[easyui]层:
$(function () {
$("#dg").datagrid({
title : '订单列表',
iconCls : 'icon-ok',//图标
toolbar : "#tb",
view:'scrollview',
width:'auto',
height:'auto',
fit:true,//自动补全
loadMsg:'正在加载数据,请稍候...',
singleSelect: true,//只能选择单行
fitColumns : true,//允许表格自动缩放,以适应父容器
autoRowHeight: false,
rownumbers:true,//显示序号
collapsible : true,//显示可折叠按钮
columns: [[{
field: "orderId",
title: "订单号",
align: 'left',
width: 200
}, {
field: "orderTime",
title: "下单时间",
align: 'left',
width: 200
}]],
url: findOrder()//调用独立方法通过dwr的方式访问后台
})//datagrid
[dwr]层:
function findOrder(){
var param={};
refundAction.findOrder(JSON.stringify(param),{
callback:function(data){
var jsonStr = data.param.jsonStr;
console.log(jsonStr);
return jsonStr;
},
exceptionHandler: function(message,exc) {
orgmain.errorHander(message, exc);
}
});
};
[Controller]层
@RemoteMethod
public Result findOrder(String params,HttpSession session) throws SystemException
{
Result result = new Result();
JSONObject json=JSONObject.fromObject(params);
String jsonStr = refundService.findOrder(json);
Map map=new HashMap();
map.put("jsonStr", JSONObject.fromObject(jsonStr));
result.setCode(ResultCode.R_SUCCESS);
result.setMsg("查询成功");
result.setParam(map);
return result;
}
通过测试,dwr是获取到值的,但是不知道easyui有没有获取到值,总是加载不出数据,请高人指点。