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

如题所述

xml 中配好 对应action的方法以及类 在类中加入传过去的参数id 这个属性(就是加上get set 方法)struts2自动就可以接到值 然后写好对应逻辑返回去就行了.
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-08-01
定义一个User类 里面有id属性
在action中添加一个 User user属性
给user添加get和set方法
然后失去焦点是后台就可以取到值,如果没有其他问题的话
第2个回答  2012-07-26
在action里面定义你想传的参数名,要相同哦。这个就可以了
这是struts2自己能处理的。
第3个回答  2016-01-21
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");本回答被网友采纳
第4个回答  2012-07-20
在action中定义 public User user = new User();成员变量
另外 user类中有id的setter方法

Warning: Invalid argument supplied for foreach() in /www/wwwroot/aolonic.com/skin/templets/default/contents.html on line 45
相似回答