|
版本: |
其它(帖子中说明) |
小版本号: |
3.6 |
|
|
数据库: |
Oracle |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
Windows 7 |
浏览器: |
Chrome |
|
|
在后台自定义一个Java方法查询一段时间内的数据,查询出结果后加载到页面列表中,但数据查出来了,bizdata加载不了,json有数据
biz.Request.sendBizRequest({
dataType : "json",
context : this.getContext(),
action : "queryDate",
async : true,
parameters : paramsZW, // 传入在前面定义的 Action 的参数
callback : function(result) {
debugger
if (result.state) {
BURNER_GAS_DATA.loadData(result.response);
alert(JSON.stringify(result.response));
// alert("调用成功!");
} else {
throw new Error("调用失败!" + result.response.message);
}
}
});
这是我的js代码
|
|