jsp使用jquety $.ajax()传参数。struts2 action 如何接收所传的值

2024-11-05 10:18:47
推荐回答(5个)
回答1:

xml 中配好 对应action的方法以及类 在类中加入传过去的参数id 这个属性(就是加上get set 方法)struts2自动就可以接到值 然后写好对应逻辑返回去就行了.

回答2:

定义一个User类 里面有id属性
在action中添加一个 User user属性
给user添加get和set方法
然后失去焦点是后台就可以取到值,如果没有其他问题的话

回答3:

在action里面定义你想传的参数名,要相同哦。这个就可以了
这是struts2自己能处理的。

回答4:

jsp中通过$.ajax()传参数到action的写法如下:
在jsp中的某个方法触发以下ajax方法:
$.ajax({
type: "get",
url: "getUserName.action",
data: "name=john&location=boston", //此处是传参数的key和value
datatype: "script"
});
在action中的写法:
String name=request.getParameter("name");

String location=request.getParameter("location");

回答5:

在action中定义 public User user = new User();成员变量
另外 user类中有id的setter方法