这是我的动作类:
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映射。
答案 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}