当前位置: 代码迷 >> JavaScript >> json-lib的运用
  详细解决方案

json-lib的运用

热度:170   发布时间:2012-11-09 10:18:48.0
json-lib的使用
1.action处理js的request数据
Object postData = ServletActionContext.getRequest().getParameter("postData");
JSONArray jsonArray = JSONArray.fromObject(postData);
此处的postData是ajax请求的一个js数组

2.action发送response数据到js
SchoolCourse sc = new SchoolCourse();
JSONObject jsonObj = JSONObject.fromObjct(sc);

@JSON
public JSONObject getJsonObj() {
  return jsonObj;
}

struts.xml
<action..>
  <result type="json" >
    <param name="includeProperties">
       jsonObj
    </param>
  </result>
</action>
  相关解决方案