我正在尝试使用struts2在jsp(避免表单提交)中实现ajax。我使用ajax代码通过url将请求传递给struts2操作。但是来自struts2的响应在jap中不会被填充。它显示"null“值。我使用AJAX在jsp中调用操作的代码如下。
function ajaxEditFunctionCall(){
var xmlHttp;
var url = "ajaxcall.action?stateName="+frm.stateName.value;
try{
xmlHttp=new XMLHttpRequest();
我的操作中有一个名为test的属性,class.This属性可以有一些字符串值的单引号或双引号。
我的Struts2操作类代码
public class MyAction extends ActionSupport {
private String test; //With Getter Method.
@Override
public String execute() throws Exception {
test = //getting value from database (for example - hello' stackoverflow)