-1

这是我的动作课:

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映射。

4

1 回答 1

0

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

String postData; //with getters n setters

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

return ActionSupport.SUCCESS;


  }  

并在 ajax 中给出数据为

 data :{"postData":data}
于 2013-08-08T10:37:37.457 回答