0

这是我的 dwr.xml

....
<convert converter="bean" match="it.test.bean.Person"/>
<convert converter="bean" match="it.test.bean.Telephone"/>
....

这是我的班级人

public class Person implements Serializable{

private int id;
private String name;
private String surname;
....
//with getter and setter method

我的 dwr.java 文件返回一个 Person 类型的对象数组。当我使用 javascript 读取我的 jsp 页面中的数据时,response.length 为 6,就像我的 dwr.java 中的一样,但对象为空。

我无法弄清楚错误可能出在哪里。我感谢您的任何答复。

4

1 回答 1

0

A good way to find the problem is to go trough the check-list as indicated here: http://directwebremoting.org/dwr/support/common_problems.html.

You should activate the debug mode in DWR and check to see if you can get any good object back [from /dwr/ url].

Please consider also add more information to your post if you still face that problem.

于 2012-08-04T19:25:05.220 回答