我在struts2动作类中有JSONArray值,需要传递给Jquery Ajax url才能显示到jquery数据表中。
动作类:
public String JSONOarr(){
JSONArray ja = new JSONArray();
try {
Iterator it = findList.iterator();
while(it.hasNext()){
SearchResult part = (SearchResult) it.next();
ja.add(part.getlist1());
ja.add(part.getlist2());
}
} catch (Exception e) {
log.error(e);
}
return SUCCESS;
}
类级别中的Struts2代码隐藏注释:
@Result(name="success",type=JSONResult.class,value=""
获取JSONArray的Jquery:
jQuery.ajax({
url : '<s:url action="part" method="list" />',
dataType : 'json',
success : function(data){
如何获取此JSONArray值?