ajax中xmlHttpRequest.responseText返回值问题
var result=xmlHttpRequest.responseText;result只能接受到字符串的值吗?
action方法中通过查询得到一个list结果集
我现在想在jsp页面中用list中的数据该怎么写javascript
把list集合中的数据全部显示出来
急求解决!!!
追问:1.web.xml文件配置完成
2.业务方法完成(还是要用list集合中的数据)
3.dwr.xml配置
<dwr>
<allow>
<create creator="spring" javascript="UserList">
<param name="beanName" value="userBiz"/>
<param name="location" value="applicationContext.xml"/>
<include method="getUserList">
</create>
</allow>
</dwr>
那么jsp页面中
<script>
UserList.getUserList(haolejiaowo);
function haolejiaowo
{
//怎么写
}
</script>
还有就是业务方法直接返回return list;行不,不行的话怎么办?
急求,谢谢~~~