论坛首页 入门技术论坛

dwr异常处理

浏览 5513 次
锁定老帖子 主题:dwr异常处理
该帖已经被评为新手帖
作者 正文
   发表时间:2007-01-22  
DWR
1. 设置异常处理方法
DWREngine.setErrorHandler(handler);
2. 通过回调函数处理
Remote.method(params, {
  callback:function(data) { ... },
  errorHandler:function(errorString, exception) { ... }
});
3. 批量请求异常处理
DWREngine.beginBatch();
Remote.method(params, function(data) { ... });
// Other remote calls
DWREngine.endBatch({
  errorHandler:function(errorString, exception) { ... }
});
4. 自定义异常的处理
在客户端的处理方法同上,另外需要在dwr.xml中增加转换
<convert converter="bean" match="my.special.FunkyException"/>
   发表时间:2007-05-15  
太精简了,能不能结合例子演练一下
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics