如何编写动作类来从jqgrid获取json列表

时间:2013-08-04 10:31:24

标签: ajax json jqgrid struts2

这是我的动作类:

private List<Employee> postData; // corresponding getter and setter

public String getJson()
      { 

    System.out.print("Sahi hai");
    System.out.print("postData  =="+postData);

    return ActionSupport.SUCCESS;


      }

我也完成了struts映射。

1 个答案:

答案 0 :(得分:0)

在发送之前使用stringify时,必须在操作中将“postData”声明为字符串。

String postData; //with getters n setters

public String getJson()
  {    
System.out.print("postData  =="+getPostData());

return ActionSupport.SUCCESS;


  }  

并在ajax中提供数据

 data :{"postData":data}